directory
0.0.0-20210831081626-d823fe11ceba
Repository: https://github.com/huaweicloud/golangsdk.git
Documentation: pkg.go.dev
# Packages
Package endpointgroups allows management of endpoint groups in the Openstack Network Service
Example to create an Endpoint Group
createOpts := endpointgroups.CreateOpts{
Name: groupName,
Type: endpointgroups.TypeCIDR,
Endpoints: []string{
"10.2.0.0/24",
"10.3.0.0/24",
},
}
group, err := endpointgroups.Create(client, createOpts).Extract()
if err != nil {
return group, err
}
Example to retrieve an Endpoint Group
group, err := endpointgroups.Get(client, "6ecd9cf3-ca64-46c7-863f-f2eb1b9e838a").Extract()
if err != nil {
panic(err)
}
Example to Delete an Endpoint Group
err := endpointgroups.Delete(client, "5291b189-fd84-46e5-84bd-78f40c05d69c").ExtractErr()
if err != nil {
panic(err)
}
Example to List Endpoint groups
allPages, err := endpointgroups.List(client, nil).AllPages()
if err != nil {
panic(err)
}
allGroups, err := endpointgroups.ExtractEndpointGroups(allPages)
if err != nil {
panic(err)
}
Example to Update an endpoint group
name := "updatedname"
description := "updated description"
updateOpts := endpointgroups.UpdateOpts{
Name: &name,
Description: &description,
}
updatedPolicy, err := endpointgroups.Update(client, "5c561d9d-eaea-45f6-ae3e-08d1a7080828", updateOpts).Extract()
if err != nil {
panic(err)
}
*/.
Package ikepolicies allows management and retrieval of IKE policies in the
OpenStack Networking Service.
Package ipsecpolicies allows management and retrieval of IPSec Policies in the
OpenStack Networking Service.
Package services allows management and retrieval of VPN services in the
OpenStack Networking Service.
Package siteconnections allows management and retrieval of IPSec site connections in the
OpenStack Networking Service.