1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
package portsbinding
import (
"github.com/rackspace/gophercloud"
"github.com/rackspace/gophercloud/openstack/networking/v2/ports"
)
// Get retrieves a specific port based on its unique ID.
func Get(c *gophercloud.ServiceClient, id string) GetResult {
var res GetResult
_, res.Err = c.Get(getURL(c, id), &res.Body, nil)
return res
}
// CreateOpts represents the attributes used when creating a new
// port with extended attributes.
type CreateOpts struct {
// CreateOptsBuilder is the interface options structs have to satisfy in order
// to be used in the main Create operation in this package.
ports.CreateOptsBuilder
// The ID of the host where the port is allocated
HostID string
// The virtual network interface card (vNIC) type that is bound to the
// neutron port
VNICType string
// A dictionary that enables the application running on the specified
// host to pass and receive virtual network interface (VIF) port-specific
// information to the plug-in
Profile map[string]string
}
// ToPortCreateMap casts a CreateOpts struct to a map.
func (opts CreateOpts) ToPortCreateMap() (map[string]interface{}, error) {
p, err := opts.CreateOptsBuilder.ToPortCreateMap()
if err != nil {
return nil, err
}
port := p["port"].(map[string]interface{})
if opts.HostID != "" {
port["binding:host_id"] = opts.HostID
}
if opts.VNICType != "" {
port["binding:vnic_type"] = opts.VNICType
}
if opts.Profile != nil {
port["binding:profile"] = opts.Profile
}
return map[string]interface{}{"port": port}, nil
}
// Create accepts a CreateOpts struct and creates a new port with extended attributes.
// You must remember to provide a NetworkID value.
func Create(c *gophercloud.ServiceClient, opts ports.CreateOptsBuilder) CreateResult {
var res CreateResult
reqBody, err := opts.ToPortCreateMap()
if err != nil {
res.Err = err
return res
}
_, res.Err = c.Post(createURL(c), reqBody, &res.Body, nil)
return res
}
// UpdateOpts represents the attributes used when updating an existing port.
type UpdateOpts struct {
// UpdateOptsBuilder is the interface options structs have to satisfy in order
// to be used in the main Update operation in this package.
ports.UpdateOptsBuilder
// The ID of the host where the port is allocated
HostID string
// The virtual network interface card (vNIC) type that is bound to the
// neutron port
VNICType string
// A dictionary that enables the application running on the specified
// host to pass and receive virtual network interface (VIF) port-specific
// information to the plug-in
Profile map[string]string
}
// ToPortUpdateMap casts an UpdateOpts struct to a map.
func (opts UpdateOpts) ToPortUpdateMap() (map[string]interface{}, error) {
var port map[string]interface{}
if opts.UpdateOptsBuilder != nil {
p, err := opts.UpdateOptsBuilder.ToPortUpdateMap()
if err != nil {
return nil, err
}
port = p["port"].(map[string]interface{})
}
if port == nil {
port = make(map[string]interface{})
}
if opts.HostID != "" {
port["binding:host_id"] = opts.HostID
}
if opts.VNICType != "" {
port["binding:vnic_type"] = opts.VNICType
}
if opts.Profile != nil {
port["binding:profile"] = opts.Profile
}
return map[string]interface{}{"port": port}, nil
}
// Update accepts a UpdateOpts struct and updates an existing port using the
// values provided.
func Update(c *gophercloud.ServiceClient, id string, opts ports.UpdateOptsBuilder) UpdateResult {
var res UpdateResult
reqBody, err := opts.ToPortUpdateMap()
if err != nil {
res.Err = err
return res
}
_, res.Err = c.Put(updateURL(c, id), reqBody, &res.Body, &gophercloud.RequestOpts{
OkCodes: []int{200, 201},
})
return res
}
|