id
int32
0
167k
repo
stringlengths
5
54
path
stringlengths
4
155
func_name
stringlengths
1
118
original_string
stringlengths
52
85.5k
language
stringclasses
1 value
code
stringlengths
52
85.5k
code_tokens
sequence
docstring
stringlengths
6
2.61k
docstring_tokens
sequence
sha
stringlengths
40
40
url
stringlengths
85
252
6,300
softlayer/softlayer-go
services/network.go
GetName
func (r Network) GetName() (resp string, err error) { err = r.Session.DoRequest("SoftLayer_Network", "getName", nil, &r.Options, &resp) return }
go
func (r Network) GetName() (resp string, err error) { err = r.Session.DoRequest("SoftLayer_Network", "getName", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network", ")", "GetName", "(", ")", "(", "resp", "string", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve A name for the Network. This is required during creation of a Network and is entirely user defined.
[ "Retrieve", "A", "name", "for", "the", "Network", ".", "This", "is", "required", "during", "creation", "of", "a", "Network", "and", "is", "entirely", "user", "defined", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L222-L225
6,301
softlayer/softlayer-go
services/network.go
DeleteLiveLoadBalancerService
func (r Network_Application_Delivery_Controller) DeleteLiveLoadBalancerService(service *datatypes.Network_LoadBalancer_Service) (err error) { var resp datatypes.Void params := []interface{}{ service, } err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "deleteLiveLoadBalancerService", params, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller) DeleteLiveLoadBalancerService(service *datatypes.Network_LoadBalancer_Service) (err error) { var resp datatypes.Void params := []interface{}{ service, } err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "deleteLiveLoadBalancerService", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller", ")", "DeleteLiveLoadBalancerService", "(", "service", "*", "datatypes", ".", "Network_LoadBalancer_Service", ")", "(", "err", "error", ")", "{", "var", "resp", "datatypes", ".", "Void", "\n", "params", ":=", "[", "]", "interface", "{", "}", "{", "service", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Remove an entire load balancer service, including all virtual IP addresses, from and application delivery controller based load balancer. The ''name'' property the and ''name'' property within the ''vip'' property of the service parameter must be provided. Changes are reflected immediately in the application delivery controller.
[ "Remove", "an", "entire", "load", "balancer", "service", "including", "all", "virtual", "IP", "addresses", "from", "and", "application", "delivery", "controller", "based", "load", "balancer", ".", "The", "name", "property", "the", "and", "name", "property", "within", "the", "vip", "property", "of", "the", "service", "parameter", "must", "be", "provided", ".", "Changes", "are", "reflected", "immediately", "in", "the", "application", "delivery", "controller", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L334-L341
6,302
softlayer/softlayer-go
services/network.go
GetBandwidthImageByDate
func (r Network_Application_Delivery_Controller) GetBandwidthImageByDate(startDateTime *datatypes.Time, endDateTime *datatypes.Time, networkType *string) (resp datatypes.Container_Bandwidth_GraphOutputs, err error) { params := []interface{}{ startDateTime, endDateTime, networkType, } err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "getBandwidthImageByDate", params, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller) GetBandwidthImageByDate(startDateTime *datatypes.Time, endDateTime *datatypes.Time, networkType *string) (resp datatypes.Container_Bandwidth_GraphOutputs, err error) { params := []interface{}{ startDateTime, endDateTime, networkType, } err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "getBandwidthImageByDate", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller", ")", "GetBandwidthImageByDate", "(", "startDateTime", "*", "datatypes", ".", "Time", ",", "endDateTime", "*", "datatypes", ".", "Time", ",", "networkType", "*", "string", ")", "(", "resp", "datatypes", ".", "Container_Bandwidth_GraphOutputs", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "startDateTime", ",", "endDateTime", ",", "networkType", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Use this method when needing a bandwidth image for a single application delivery controller. It will gather the correct input parameters for the generic graphing utility based on the date ranges
[ "Use", "this", "method", "when", "needing", "a", "bandwidth", "image", "for", "a", "single", "application", "delivery", "controller", ".", "It", "will", "gather", "the", "correct", "input", "parameters", "for", "the", "generic", "graphing", "utility", "based", "on", "the", "date", "ranges" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L376-L384
6,303
softlayer/softlayer-go
services/network.go
GetBillingItem
func (r Network_Application_Delivery_Controller) GetBillingItem() (resp datatypes.Billing_Item_Network_Application_Delivery_Controller, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "getBillingItem", nil, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller) GetBillingItem() (resp datatypes.Billing_Item_Network_Application_Delivery_Controller, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "getBillingItem", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller", ")", "GetBillingItem", "(", ")", "(", "resp", "datatypes", ".", "Billing_Item_Network_Application_Delivery_Controller", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The billing item for a Application Delivery Controller.
[ "Retrieve", "The", "billing", "item", "for", "a", "Application", "Delivery", "Controller", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L387-L390
6,304
softlayer/softlayer-go
services/network.go
GetLicenseExpirationDate
func (r Network_Application_Delivery_Controller) GetLicenseExpirationDate() (resp datatypes.Time, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "getLicenseExpirationDate", nil, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller) GetLicenseExpirationDate() (resp datatypes.Time, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "getLicenseExpirationDate", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller", ")", "GetLicenseExpirationDate", "(", ")", "(", "resp", "datatypes", ".", "Time", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The date in which the license for this application delivery controller will expire.
[ "Retrieve", "The", "date", "in", "which", "the", "license", "for", "this", "application", "delivery", "controller", "will", "expire", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L420-L423
6,305
softlayer/softlayer-go
services/network.go
GetPassword
func (r Network_Application_Delivery_Controller) GetPassword() (resp datatypes.Software_Component_Password, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "getPassword", nil, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller) GetPassword() (resp datatypes.Software_Component_Password, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "getPassword", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller", ")", "GetPassword", "(", ")", "(", "resp", "datatypes", ".", "Software_Component_Password", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The password used to connect to an application delivery controller's management interface when it is operating in advanced view mode.
[ "Retrieve", "The", "password", "used", "to", "connect", "to", "an", "application", "delivery", "controller", "s", "management", "interface", "when", "it", "is", "operating", "in", "advanced", "view", "mode", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L481-L484
6,306
softlayer/softlayer-go
services/network.go
RestoreConfiguration
func (r Network_Application_Delivery_Controller) RestoreConfiguration(configurationHistoryId *int) (resp bool, err error) { params := []interface{}{ configurationHistoryId, } err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "restoreConfiguration", params, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller) RestoreConfiguration(configurationHistoryId *int) (resp bool, err error) { params := []interface{}{ configurationHistoryId, } err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "restoreConfiguration", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller", ")", "RestoreConfiguration", "(", "configurationHistoryId", "*", "int", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "configurationHistoryId", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Restore an application delivery controller's configuration state.
[ "Restore", "an", "application", "delivery", "controller", "s", "configuration", "state", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L529-L535
6,307
softlayer/softlayer-go
services/network.go
SaveCurrentConfiguration
func (r Network_Application_Delivery_Controller) SaveCurrentConfiguration(notes *string) (resp datatypes.Network_Application_Delivery_Controller_Configuration_History, err error) { params := []interface{}{ notes, } err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "saveCurrentConfiguration", params, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller) SaveCurrentConfiguration(notes *string) (resp datatypes.Network_Application_Delivery_Controller_Configuration_History, err error) { params := []interface{}{ notes, } err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "saveCurrentConfiguration", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller", ")", "SaveCurrentConfiguration", "(", "notes", "*", "string", ")", "(", "resp", "datatypes", ".", "Network_Application_Delivery_Controller_Configuration_History", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "notes", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Save an application delivery controller's configuration state. The notes property for this method is optional.
[ "Save", "an", "application", "delivery", "controller", "s", "configuration", "state", ".", "The", "notes", "property", "for", "this", "method", "is", "optional", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L538-L544
6,308
softlayer/softlayer-go
services/network.go
UpdateLiveLoadBalancer
func (r Network_Application_Delivery_Controller) UpdateLiveLoadBalancer(loadBalancer *datatypes.Network_LoadBalancer_VirtualIpAddress) (resp bool, err error) { params := []interface{}{ loadBalancer, } err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "updateLiveLoadBalancer", params, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller) UpdateLiveLoadBalancer(loadBalancer *datatypes.Network_LoadBalancer_VirtualIpAddress) (resp bool, err error) { params := []interface{}{ loadBalancer, } err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "updateLiveLoadBalancer", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller", ")", "UpdateLiveLoadBalancer", "(", "loadBalancer", "*", "datatypes", ".", "Network_LoadBalancer_VirtualIpAddress", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "loadBalancer", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Update the the virtual IP address interface within an application delivery controller based load balancer identified by the ''name'' property in the loadBalancer parameter. You only need to set the properties in the loadBalancer parameter that you wish to change. Any virtual IP properties omitted or left empty are ignored. Changes are reflected immediately in the application delivery controller.
[ "Update", "the", "the", "virtual", "IP", "address", "interface", "within", "an", "application", "delivery", "controller", "based", "load", "balancer", "identified", "by", "the", "name", "property", "in", "the", "loadBalancer", "parameter", ".", "You", "only", "need", "to", "set", "the", "properties", "in", "the", "loadBalancer", "parameter", "that", "you", "wish", "to", "change", ".", "Any", "virtual", "IP", "properties", "omitted", "or", "left", "empty", "are", "ignored", ".", "Changes", "are", "reflected", "immediately", "in", "the", "application", "delivery", "controller", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L547-L553
6,309
softlayer/softlayer-go
services/network.go
UpdateNetScalerLicense
func (r Network_Application_Delivery_Controller) UpdateNetScalerLicense() (resp datatypes.Provisioning_Version1_Transaction, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "updateNetScalerLicense", nil, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller) UpdateNetScalerLicense() (resp datatypes.Provisioning_Version1_Transaction, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller", "updateNetScalerLicense", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller", ")", "UpdateNetScalerLicense", "(", ")", "(", "resp", "datatypes", ".", "Provisioning_Version1_Transaction", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Update the NetScaler VPX License. // // This service will create a transaction to update a NetScaler VPX License. After the license is updated the load balancer will reboot in order to apply the newly issued license // // The load balancer will be unavailable during the reboot.
[ "Update", "the", "NetScaler", "VPX", "License", ".", "This", "service", "will", "create", "a", "transaction", "to", "update", "a", "NetScaler", "VPX", "License", ".", "After", "the", "license", "is", "updated", "the", "load", "balancer", "will", "reboot", "in", "order", "to", "apply", "the", "newly", "issued", "license", "The", "load", "balancer", "will", "be", "unavailable", "during", "the", "reboot", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L560-L563
6,310
softlayer/softlayer-go
services/network.go
GetController
func (r Network_Application_Delivery_Controller_Configuration_History) GetController() (resp datatypes.Network_Application_Delivery_Controller, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_Configuration_History", "getController", nil, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller_Configuration_History) GetController() (resp datatypes.Network_Application_Delivery_Controller, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_Configuration_History", "getController", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller_Configuration_History", ")", "GetController", "(", ")", "(", "resp", "datatypes", ".", "Network_Application_Delivery_Controller", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The application delivery controller that a configuration history record belongs to.
[ "Retrieve", "The", "application", "delivery", "controller", "that", "a", "configuration", "history", "record", "belongs", "to", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L612-L615
6,311
softlayer/softlayer-go
services/network.go
GetAvailableSecureTransportProtocols
func (r Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress) GetAvailableSecureTransportProtocols() (resp []datatypes.Security_SecureTransportProtocol, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", "getAvailableSecureTransportProtocols", nil, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress) GetAvailableSecureTransportProtocols() (resp []datatypes.Security_SecureTransportProtocol, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", "getAvailableSecureTransportProtocols", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", ")", "GetAvailableSecureTransportProtocols", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Security_SecureTransportProtocol", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Yields a list of the secure communication protocols that are currently supported on this virtual IP address instance. The list of supported ciphers for each protocol is culled to match availability.
[ "Yields", "a", "list", "of", "the", "secure", "communication", "protocols", "that", "are", "currently", "supported", "on", "this", "virtual", "IP", "address", "instance", ".", "The", "list", "of", "supported", "ciphers", "for", "each", "protocol", "is", "culled", "to", "match", "availability", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1240-L1243
6,312
softlayer/softlayer-go
services/network.go
GetDedicatedBillingItem
func (r Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress) GetDedicatedBillingItem() (resp datatypes.Billing_Item_Network_LoadBalancer, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", "getDedicatedBillingItem", nil, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress) GetDedicatedBillingItem() (resp datatypes.Billing_Item_Network_LoadBalancer, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", "getDedicatedBillingItem", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", ")", "GetDedicatedBillingItem", "(", ")", "(", "resp", "datatypes", ".", "Billing_Item_Network_LoadBalancer", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The current billing item for the load balancing device housing the virtual IP. This billing item represents a device which could contain other virtual IPs. Caution should be taken when canceling. This is only valid when dedicatedFlag is true.
[ "Retrieve", "The", "current", "billing", "item", "for", "the", "load", "balancing", "device", "housing", "the", "virtual", "IP", ".", "This", "billing", "item", "represents", "a", "device", "which", "could", "contain", "other", "virtual", "IPs", ".", "Caution", "should", "be", "taken", "when", "canceling", ".", "This", "is", "only", "valid", "when", "dedicatedFlag", "is", "true", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1252-L1255
6,313
softlayer/softlayer-go
services/network.go
GetSecureTransportCiphers
func (r Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress) GetSecureTransportCiphers() (resp []datatypes.Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress_SecureTransportCipher, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", "getSecureTransportCiphers", nil, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress) GetSecureTransportCiphers() (resp []datatypes.Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress_SecureTransportCipher, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", "getSecureTransportCiphers", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", ")", "GetSecureTransportCiphers", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress_SecureTransportCipher", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The list of security ciphers enabled for this virtual IP address
[ "Retrieve", "The", "list", "of", "security", "ciphers", "enabled", "for", "this", "virtual", "IP", "address" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1288-L1291
6,314
softlayer/softlayer-go
services/network.go
GetSecureTransportProtocols
func (r Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress) GetSecureTransportProtocols() (resp []datatypes.Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress_SecureTransportProtocol, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", "getSecureTransportProtocols", nil, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress) GetSecureTransportProtocols() (resp []datatypes.Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress_SecureTransportProtocol, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", "getSecureTransportProtocols", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", ")", "GetSecureTransportProtocols", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress_SecureTransportProtocol", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The list of secure transport protocols enabled for this virtual IP address
[ "Retrieve", "The", "list", "of", "secure", "transport", "protocols", "enabled", "for", "this", "virtual", "IP", "address" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1294-L1297
6,315
softlayer/softlayer-go
services/network.go
GetSecurityCertificateEntry
func (r Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress) GetSecurityCertificateEntry() (resp datatypes.Security_Certificate_Entry, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", "getSecurityCertificateEntry", nil, &r.Options, &resp) return }
go
func (r Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress) GetSecurityCertificateEntry() (resp datatypes.Security_Certificate_Entry, err error) { err = r.Session.DoRequest("SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", "getSecurityCertificateEntry", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress", ")", "GetSecurityCertificateEntry", "(", ")", "(", "resp", "datatypes", ".", "Security_Certificate_Entry", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The SSL certificate currently associated with the VIP. Provides chosen certificate visibility to unprivileged users.
[ "Retrieve", "The", "SSL", "certificate", "currently", "associated", "with", "the", "VIP", ".", "Provides", "chosen", "certificate", "visibility", "to", "unprivileged", "users", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1306-L1309
6,316
softlayer/softlayer-go
services/network.go
GetBackbonesForLocationName
func (r Network_Backbone) GetBackbonesForLocationName(locationName *string) (resp []datatypes.Network_Backbone, err error) { params := []interface{}{ locationName, } err = r.Session.DoRequest("SoftLayer_Network_Backbone", "getBackbonesForLocationName", params, &r.Options, &resp) return }
go
func (r Network_Backbone) GetBackbonesForLocationName(locationName *string) (resp []datatypes.Network_Backbone, err error) { params := []interface{}{ locationName, } err = r.Session.DoRequest("SoftLayer_Network_Backbone", "getBackbonesForLocationName", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Backbone", ")", "GetBackbonesForLocationName", "(", "locationName", "*", "string", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Backbone", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "locationName", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve a list of all SoftLayer backbone connections for a location name.
[ "Retrieve", "a", "list", "of", "all", "SoftLayer", "backbone", "connections", "for", "a", "location", "name", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1471-L1477
6,317
softlayer/softlayer-go
services/network.go
GetGraphImage
func (r Network_Backbone) GetGraphImage() (resp []byte, err error) { err = r.Session.DoRequest("SoftLayer_Network_Backbone", "getGraphImage", nil, &r.Options, &resp) return }
go
func (r Network_Backbone) GetGraphImage() (resp []byte, err error) { err = r.Session.DoRequest("SoftLayer_Network_Backbone", "getGraphImage", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Backbone", ")", "GetGraphImage", "(", ")", "(", "resp", "[", "]", "byte", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve a graph of a SoftLayer backbone's last 24 hours of activity. getGraphImage returns a PNG image measuring 827 pixels by 293 pixels.
[ "Retrieve", "a", "graph", "of", "a", "SoftLayer", "backbone", "s", "last", "24", "hours", "of", "activity", ".", "getGraphImage", "returns", "a", "PNG", "image", "measuring", "827", "pixels", "by", "293", "pixels", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1480-L1483
6,318
softlayer/softlayer-go
services/network.go
GetHealth
func (r Network_Backbone) GetHealth() (resp string, err error) { err = r.Session.DoRequest("SoftLayer_Network_Backbone", "getHealth", nil, &r.Options, &resp) return }
go
func (r Network_Backbone) GetHealth() (resp string, err error) { err = r.Session.DoRequest("SoftLayer_Network_Backbone", "getHealth", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Backbone", ")", "GetHealth", "(", ")", "(", "resp", "string", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve A backbone's status.
[ "Retrieve", "A", "backbone", "s", "status", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1486-L1489
6,319
softlayer/softlayer-go
services/network.go
GetBackendBandwidthUse
func (r Network_Bandwidth_Version1_Allotment) GetBackendBandwidthUse(startDate *datatypes.Time, endDate *datatypes.Time) (resp []datatypes.Network_Bandwidth_Version1_Usage_Detail, err error) { params := []interface{}{ startDate, endDate, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getBackendBandwidthUse", params, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) GetBackendBandwidthUse(startDate *datatypes.Time, endDate *datatypes.Time) (resp []datatypes.Network_Bandwidth_Version1_Usage_Detail, err error) { params := []interface{}{ startDate, endDate, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getBackendBandwidthUse", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "GetBackendBandwidthUse", "(", "startDate", "*", "datatypes", ".", "Time", ",", "endDate", "*", "datatypes", ".", "Time", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Bandwidth_Version1_Usage_Detail", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "startDate", ",", "endDate", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method recurses through all servers on a Bandwidth Pool between the given start and end dates to retrieve public bandwidth data.
[ "This", "method", "recurses", "through", "all", "servers", "on", "a", "Bandwidth", "Pool", "between", "the", "given", "start", "and", "end", "dates", "to", "retrieve", "public", "bandwidth", "data", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1674-L1681
6,320
softlayer/softlayer-go
services/network.go
GetBandwidthAllotmentType
func (r Network_Bandwidth_Version1_Allotment) GetBandwidthAllotmentType() (resp datatypes.Network_Bandwidth_Version1_Allotment_Type, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getBandwidthAllotmentType", nil, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) GetBandwidthAllotmentType() (resp datatypes.Network_Bandwidth_Version1_Allotment_Type, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getBandwidthAllotmentType", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "GetBandwidthAllotmentType", "(", ")", "(", "resp", "datatypes", ".", "Network_Bandwidth_Version1_Allotment_Type", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The bandwidth allotment type of this virtual rack.
[ "Retrieve", "The", "bandwidth", "allotment", "type", "of", "this", "virtual", "rack", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1684-L1687
6,321
softlayer/softlayer-go
services/network.go
GetBillingCyclePublicUsageTotal
func (r Network_Bandwidth_Version1_Allotment) GetBillingCyclePublicUsageTotal() (resp uint, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getBillingCyclePublicUsageTotal", nil, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) GetBillingCyclePublicUsageTotal() (resp uint, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getBillingCyclePublicUsageTotal", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "GetBillingCyclePublicUsageTotal", "(", ")", "(", "resp", "uint", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The total public bandwidth used in this virtual rack for an account's current billing cycle.
[ "Retrieve", "The", "total", "public", "bandwidth", "used", "in", "this", "virtual", "rack", "for", "an", "account", "s", "current", "billing", "cycle", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1737-L1740
6,322
softlayer/softlayer-go
services/network.go
GetCustomBandwidthDataByDate
func (r Network_Bandwidth_Version1_Allotment) GetCustomBandwidthDataByDate(graphData *datatypes.Container_Graph) (resp datatypes.Container_Graph, err error) { params := []interface{}{ graphData, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getCustomBandwidthDataByDate", params, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) GetCustomBandwidthDataByDate(graphData *datatypes.Container_Graph) (resp datatypes.Container_Graph, err error) { params := []interface{}{ graphData, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getCustomBandwidthDataByDate", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "GetCustomBandwidthDataByDate", "(", "graphData", "*", "datatypes", ".", "Container_Graph", ")", "(", "resp", "datatypes", ".", "Container_Graph", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "graphData", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve bandwidth graph by date.
[ "Retrieve", "bandwidth", "graph", "by", "date", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1755-L1761
6,323
softlayer/softlayer-go
services/network.go
GetDetails
func (r Network_Bandwidth_Version1_Allotment) GetDetails() (resp []datatypes.Network_Bandwidth_Version1_Allotment_Detail, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getDetails", nil, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) GetDetails() (resp []datatypes.Network_Bandwidth_Version1_Allotment_Detail, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getDetails", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "GetDetails", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Bandwidth_Version1_Allotment_Detail", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The bandwidth allotment detail records associated with this virtual rack.
[ "Retrieve", "The", "bandwidth", "allotment", "detail", "records", "associated", "with", "this", "virtual", "rack", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1764-L1767
6,324
softlayer/softlayer-go
services/network.go
GetLocationGroup
func (r Network_Bandwidth_Version1_Allotment) GetLocationGroup() (resp datatypes.Location_Group, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getLocationGroup", nil, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) GetLocationGroup() (resp datatypes.Location_Group, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getLocationGroup", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "GetLocationGroup", "(", ")", "(", "resp", "datatypes", ".", "Location_Group", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The location group associated with this virtual rack.
[ "Retrieve", "The", "location", "group", "associated", "with", "this", "virtual", "rack", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1801-L1804
6,325
softlayer/softlayer-go
services/network.go
GetMetricTrackingObject
func (r Network_Bandwidth_Version1_Allotment) GetMetricTrackingObject() (resp datatypes.Metric_Tracking_Object_VirtualDedicatedRack, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getMetricTrackingObject", nil, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) GetMetricTrackingObject() (resp datatypes.Metric_Tracking_Object_VirtualDedicatedRack, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "getMetricTrackingObject", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "GetMetricTrackingObject", "(", ")", "(", "resp", "datatypes", ".", "Metric_Tracking_Object_VirtualDedicatedRack", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve A virtual rack's metric tracking object. This object records all periodic polled data available to this rack.
[ "Retrieve", "A", "virtual", "rack", "s", "metric", "tracking", "object", ".", "This", "object", "records", "all", "periodic", "polled", "data", "available", "to", "this", "rack", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1825-L1828
6,326
softlayer/softlayer-go
services/network.go
ReassignServers
func (r Network_Bandwidth_Version1_Allotment) ReassignServers(templateObjects []datatypes.Hardware, newAllotmentId *int) (resp bool, err error) { params := []interface{}{ templateObjects, newAllotmentId, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "reassignServers", params, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) ReassignServers(templateObjects []datatypes.Hardware, newAllotmentId *int) (resp bool, err error) { params := []interface{}{ templateObjects, newAllotmentId, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "reassignServers", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "ReassignServers", "(", "templateObjects", "[", "]", "datatypes", ".", "Hardware", ",", "newAllotmentId", "*", "int", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "templateObjects", ",", "newAllotmentId", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method will reassign a collection of SoftLayer hardware to a bandwidth allotment Bandwidth Pool.
[ "This", "method", "will", "reassign", "a", "collection", "of", "SoftLayer", "hardware", "to", "a", "bandwidth", "allotment", "Bandwidth", "Pool", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1897-L1904
6,327
softlayer/softlayer-go
services/network.go
RequestVdrCancellation
func (r Network_Bandwidth_Version1_Allotment) RequestVdrCancellation() (resp bool, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "requestVdrCancellation", nil, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) RequestVdrCancellation() (resp bool, err error) { err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "requestVdrCancellation", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "RequestVdrCancellation", "(", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This will remove a bandwidth pooling from a customer's allotments by cancelling the billing item. All servers in that allotment will get moved to the account's vpr.
[ "This", "will", "remove", "a", "bandwidth", "pooling", "from", "a", "customer", "s", "allotments", "by", "cancelling", "the", "billing", "item", ".", "All", "servers", "in", "that", "allotment", "will", "get", "moved", "to", "the", "account", "s", "vpr", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1907-L1910
6,328
softlayer/softlayer-go
services/network.go
RequestVdrContentUpdates
func (r Network_Bandwidth_Version1_Allotment) RequestVdrContentUpdates(hardwareToAdd []datatypes.Hardware, hardwareToRemove []datatypes.Hardware, cloudsToAdd []datatypes.Virtual_Guest, cloudsToRemove []datatypes.Virtual_Guest, optionalAllotmentId *int, adcToAdd []datatypes.Network_Application_Delivery_Controller, adcToRemove []datatypes.Network_Application_Delivery_Controller) (resp bool, err error) { params := []interface{}{ hardwareToAdd, hardwareToRemove, cloudsToAdd, cloudsToRemove, optionalAllotmentId, adcToAdd, adcToRemove, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "requestVdrContentUpdates", params, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) RequestVdrContentUpdates(hardwareToAdd []datatypes.Hardware, hardwareToRemove []datatypes.Hardware, cloudsToAdd []datatypes.Virtual_Guest, cloudsToRemove []datatypes.Virtual_Guest, optionalAllotmentId *int, adcToAdd []datatypes.Network_Application_Delivery_Controller, adcToRemove []datatypes.Network_Application_Delivery_Controller) (resp bool, err error) { params := []interface{}{ hardwareToAdd, hardwareToRemove, cloudsToAdd, cloudsToRemove, optionalAllotmentId, adcToAdd, adcToRemove, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "requestVdrContentUpdates", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "RequestVdrContentUpdates", "(", "hardwareToAdd", "[", "]", "datatypes", ".", "Hardware", ",", "hardwareToRemove", "[", "]", "datatypes", ".", "Hardware", ",", "cloudsToAdd", "[", "]", "datatypes", ".", "Virtual_Guest", ",", "cloudsToRemove", "[", "]", "datatypes", ".", "Virtual_Guest", ",", "optionalAllotmentId", "*", "int", ",", "adcToAdd", "[", "]", "datatypes", ".", "Network_Application_Delivery_Controller", ",", "adcToRemove", "[", "]", "datatypes", ".", "Network_Application_Delivery_Controller", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "hardwareToAdd", ",", "hardwareToRemove", ",", "cloudsToAdd", ",", "cloudsToRemove", ",", "optionalAllotmentId", ",", "adcToAdd", ",", "adcToRemove", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This will move servers into a bandwidth pool, removing them from their previous bandwidth pool and optionally remove the bandwidth pool on completion.
[ "This", "will", "move", "servers", "into", "a", "bandwidth", "pool", "removing", "them", "from", "their", "previous", "bandwidth", "pool", "and", "optionally", "remove", "the", "bandwidth", "pool", "on", "completion", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1913-L1925
6,329
softlayer/softlayer-go
services/network.go
SetVdrContent
func (r Network_Bandwidth_Version1_Allotment) SetVdrContent(hardware []datatypes.Hardware, bareMetalServers []datatypes.Hardware, virtualServerInstance []datatypes.Virtual_Guest, adc []datatypes.Network_Application_Delivery_Controller, optionalAllotmentId *int) (resp bool, err error) { params := []interface{}{ hardware, bareMetalServers, virtualServerInstance, adc, optionalAllotmentId, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "setVdrContent", params, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) SetVdrContent(hardware []datatypes.Hardware, bareMetalServers []datatypes.Hardware, virtualServerInstance []datatypes.Virtual_Guest, adc []datatypes.Network_Application_Delivery_Controller, optionalAllotmentId *int) (resp bool, err error) { params := []interface{}{ hardware, bareMetalServers, virtualServerInstance, adc, optionalAllotmentId, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "setVdrContent", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "SetVdrContent", "(", "hardware", "[", "]", "datatypes", ".", "Hardware", ",", "bareMetalServers", "[", "]", "datatypes", ".", "Hardware", ",", "virtualServerInstance", "[", "]", "datatypes", ".", "Virtual_Guest", ",", "adc", "[", "]", "datatypes", ".", "Network_Application_Delivery_Controller", ",", "optionalAllotmentId", "*", "int", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "hardware", ",", "bareMetalServers", ",", "virtualServerInstance", ",", "adc", ",", "optionalAllotmentId", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This will update the bandwidth pool to the servers provided. Servers currently in the bandwidth pool not provided on update will be removed. Servers provided on update not currently in the bandwidth pool will be added. If all servers are removed, this removes the bandwidth pool on completion.
[ "This", "will", "update", "the", "bandwidth", "pool", "to", "the", "servers", "provided", ".", "Servers", "currently", "in", "the", "bandwidth", "pool", "not", "provided", "on", "update", "will", "be", "removed", ".", "Servers", "provided", "on", "update", "not", "currently", "in", "the", "bandwidth", "pool", "will", "be", "added", ".", "If", "all", "servers", "are", "removed", "this", "removes", "the", "bandwidth", "pool", "on", "completion", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1928-L1938
6,330
softlayer/softlayer-go
services/network.go
UnassignServers
func (r Network_Bandwidth_Version1_Allotment) UnassignServers(templateObjects []datatypes.Hardware) (resp bool, err error) { params := []interface{}{ templateObjects, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "unassignServers", params, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) UnassignServers(templateObjects []datatypes.Hardware) (resp bool, err error) { params := []interface{}{ templateObjects, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "unassignServers", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "UnassignServers", "(", "templateObjects", "[", "]", "datatypes", ".", "Hardware", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "templateObjects", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method will reassign a collection of SoftLayer hardware to the virtual private rack
[ "This", "method", "will", "reassign", "a", "collection", "of", "SoftLayer", "hardware", "to", "the", "virtual", "private", "rack" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1941-L1947
6,331
softlayer/softlayer-go
services/network.go
VoidPendingServerMove
func (r Network_Bandwidth_Version1_Allotment) VoidPendingServerMove(id *int, typ *string) (resp bool, err error) { params := []interface{}{ id, typ, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "voidPendingServerMove", params, &r.Options, &resp) return }
go
func (r Network_Bandwidth_Version1_Allotment) VoidPendingServerMove(id *int, typ *string) (resp bool, err error) { params := []interface{}{ id, typ, } err = r.Session.DoRequest("SoftLayer_Network_Bandwidth_Version1_Allotment", "voidPendingServerMove", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Bandwidth_Version1_Allotment", ")", "VoidPendingServerMove", "(", "id", "*", "int", ",", "typ", "*", "string", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "id", ",", "typ", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method will void a pending server removal from this bandwidth pooling. Pass in the id of the hardware object or virtual guest you wish to update. Assuming that object is currently pending removal from the bandwidth pool at the start of the next billing cycle, the bandwidth pool member status will be restored and the pending cancellation removed.
[ "This", "method", "will", "void", "a", "pending", "server", "removal", "from", "this", "bandwidth", "pooling", ".", "Pass", "in", "the", "id", "of", "the", "hardware", "object", "or", "virtual", "guest", "you", "wish", "to", "update", ".", "Assuming", "that", "object", "is", "currently", "pending", "removal", "from", "the", "bandwidth", "pool", "at", "the", "start", "of", "the", "next", "billing", "cycle", "the", "bandwidth", "pool", "member", "status", "will", "be", "restored", "and", "the", "pending", "cancellation", "removed", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L1950-L1957
6,332
softlayer/softlayer-go
services/network.go
VerifyCname
func (r Network_CdnMarketplace_Configuration_Mapping) VerifyCname(cname *string) (resp bool, err error) { params := []interface{}{ cname, } err = r.Session.DoRequest("SoftLayer_Network_CdnMarketplace_Configuration_Mapping", "verifyCname", params, &r.Options, &resp) return }
go
func (r Network_CdnMarketplace_Configuration_Mapping) VerifyCname(cname *string) (resp bool, err error) { params := []interface{}{ cname, } err = r.Session.DoRequest("SoftLayer_Network_CdnMarketplace_Configuration_Mapping", "verifyCname", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_CdnMarketplace_Configuration_Mapping", ")", "VerifyCname", "(", "cname", "*", "string", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "cname", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Verifies the CNAME is Unique in the domain. The method will return true if CNAME is unique else returns false
[ "Verifies", "the", "CNAME", "is", "Unique", "in", "the", "domain", ".", "The", "method", "will", "return", "true", "if", "CNAME", "is", "unique", "else", "returns", "false" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L2497-L2503
6,333
softlayer/softlayer-go
services/network.go
VerifyDomainMapping
func (r Network_CdnMarketplace_Configuration_Mapping) VerifyDomainMapping(uniqueId *int) (resp []datatypes.Container_Network_CdnMarketplace_Configuration_Mapping, err error) { params := []interface{}{ uniqueId, } err = r.Session.DoRequest("SoftLayer_Network_CdnMarketplace_Configuration_Mapping", "verifyDomainMapping", params, &r.Options, &resp) return }
go
func (r Network_CdnMarketplace_Configuration_Mapping) VerifyDomainMapping(uniqueId *int) (resp []datatypes.Container_Network_CdnMarketplace_Configuration_Mapping, err error) { params := []interface{}{ uniqueId, } err = r.Session.DoRequest("SoftLayer_Network_CdnMarketplace_Configuration_Mapping", "verifyDomainMapping", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_CdnMarketplace_Configuration_Mapping", ")", "VerifyDomainMapping", "(", "uniqueId", "*", "int", ")", "(", "resp", "[", "]", "datatypes", ".", "Container_Network_CdnMarketplace_Configuration_Mapping", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "uniqueId", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Verifies the status of the domain mapping by calling the rest api; will update the status, cname, and vendorCName if necessary and will return the updated values.
[ "Verifies", "the", "status", "of", "the", "domain", "mapping", "by", "calling", "the", "rest", "api", ";", "will", "update", "the", "status", "cname", "and", "vendorCName", "if", "necessary", "and", "will", "return", "the", "updated", "values", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L2506-L2512
6,334
softlayer/softlayer-go
services/network.go
GetDuplexMode
func (r Network_Component) GetDuplexMode() (resp datatypes.Network_Component_Duplex_Mode, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getDuplexMode", nil, &r.Options, &resp) return }
go
func (r Network_Component) GetDuplexMode() (resp datatypes.Network_Component_Duplex_Mode, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getDuplexMode", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Component", ")", "GetDuplexMode", "(", ")", "(", "resp", "datatypes", ".", "Network_Component_Duplex_Mode", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The duplex mode of a network component.
[ "Retrieve", "The", "duplex", "mode", "of", "a", "network", "component", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L2842-L2845
6,335
softlayer/softlayer-go
services/network.go
GetInterface
func (r Network_Component) GetInterface() (resp datatypes.Network_Bandwidth_Version1_Interface, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getInterface", nil, &r.Options, &resp) return }
go
func (r Network_Component) GetInterface() (resp datatypes.Network_Bandwidth_Version1_Interface, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getInterface", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Component", ")", "GetInterface", "(", ")", "(", "resp", "datatypes", ".", "Network_Bandwidth_Version1_Interface", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve A hardware switch's interface to the bandwidth pod.
[ "Retrieve", "A", "hardware", "switch", "s", "interface", "to", "the", "bandwidth", "pod", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L2860-L2863
6,336
softlayer/softlayer-go
services/network.go
GetIpAddressBindings
func (r Network_Component) GetIpAddressBindings() (resp []datatypes.Network_Component_IpAddress, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getIpAddressBindings", nil, &r.Options, &resp) return }
go
func (r Network_Component) GetIpAddressBindings() (resp []datatypes.Network_Component_IpAddress, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getIpAddressBindings", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Component", ")", "GetIpAddressBindings", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Component_IpAddress", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The records of all IP addresses bound to a network component.
[ "Retrieve", "The", "records", "of", "all", "IP", "addresses", "bound", "to", "a", "network", "component", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L2866-L2869
6,337
softlayer/softlayer-go
services/network.go
GetMetricTrackingObject
func (r Network_Component) GetMetricTrackingObject() (resp datatypes.Metric_Tracking_Object, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getMetricTrackingObject", nil, &r.Options, &resp) return }
go
func (r Network_Component) GetMetricTrackingObject() (resp datatypes.Metric_Tracking_Object, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getMetricTrackingObject", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Component", ")", "GetMetricTrackingObject", "(", ")", "(", "resp", "datatypes", ".", "Metric_Tracking_Object", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The metric tracking object for this network component.
[ "Retrieve", "The", "metric", "tracking", "object", "for", "this", "network", "component", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L2884-L2887
6,338
softlayer/softlayer-go
services/network.go
GetNetworkComponentGroup
func (r Network_Component) GetNetworkComponentGroup() (resp datatypes.Network_Component_Group, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getNetworkComponentGroup", nil, &r.Options, &resp) return }
go
func (r Network_Component) GetNetworkComponentGroup() (resp datatypes.Network_Component_Group, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getNetworkComponentGroup", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Component", ")", "GetNetworkComponentGroup", "(", ")", "(", "resp", "datatypes", ".", "Network_Component_Group", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve A network component's associated group.
[ "Retrieve", "A", "network", "component", "s", "associated", "group", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L2896-L2899
6,339
softlayer/softlayer-go
services/network.go
GetNetworkVlanTrunks
func (r Network_Component) GetNetworkVlanTrunks() (resp []datatypes.Network_Component_Network_Vlan_Trunk, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getNetworkVlanTrunks", nil, &r.Options, &resp) return }
go
func (r Network_Component) GetNetworkVlanTrunks() (resp []datatypes.Network_Component_Network_Vlan_Trunk, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component", "getNetworkVlanTrunks", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Component", ")", "GetNetworkVlanTrunks", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Component_Network_Vlan_Trunk", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The VLANs that are trunked to this network component.
[ "Retrieve", "The", "VLANs", "that", "are", "trunked", "to", "this", "network", "component", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L2914-L2917
6,340
softlayer/softlayer-go
services/network.go
RemoveNetworkVlanTrunks
func (r Network_Component) RemoveNetworkVlanTrunks(networkVlans []datatypes.Network_Vlan) (resp []datatypes.Network_Vlan, err error) { params := []interface{}{ networkVlans, } err = r.Session.DoRequest("SoftLayer_Network_Component", "removeNetworkVlanTrunks", params, &r.Options, &resp) return }
go
func (r Network_Component) RemoveNetworkVlanTrunks(networkVlans []datatypes.Network_Vlan) (resp []datatypes.Network_Vlan, err error) { params := []interface{}{ networkVlans, } err = r.Session.DoRequest("SoftLayer_Network_Component", "removeNetworkVlanTrunks", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Component", ")", "RemoveNetworkVlanTrunks", "(", "networkVlans", "[", "]", "datatypes", ".", "Network_Vlan", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Vlan", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "networkVlans", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Remove one or more VLANs currently attached to the uplinkComponent of this networkComponent. The VLANs given must be assigned to your account, and on the router the network component is connected to. If any VLANs not currently trunked are given, they will be silently ignored. // // This method should be called on a network component attached directly to customer assigned hardware, though all trunking operations will occur on the uplinkComponent. A current list of VLAN trunks for a network component on a customer server can be found at 'uplinkComponent->networkVlanTrunks'. // // Configuration of network hardware is done asynchronously, do not depend on the return of this call as an indication that the removed VLANs will be inaccessible.
[ "Remove", "one", "or", "more", "VLANs", "currently", "attached", "to", "the", "uplinkComponent", "of", "this", "networkComponent", ".", "The", "VLANs", "given", "must", "be", "assigned", "to", "your", "account", "and", "on", "the", "router", "the", "network", "component", "is", "connected", "to", ".", "If", "any", "VLANs", "not", "currently", "trunked", "are", "given", "they", "will", "be", "silently", "ignored", ".", "This", "method", "should", "be", "called", "on", "a", "network", "component", "attached", "directly", "to", "customer", "assigned", "hardware", "though", "all", "trunking", "operations", "will", "occur", "on", "the", "uplinkComponent", ".", "A", "current", "list", "of", "VLAN", "trunks", "for", "a", "network", "component", "on", "a", "customer", "server", "can", "be", "found", "at", "uplinkComponent", "-", ">", "networkVlanTrunks", ".", "Configuration", "of", "network", "hardware", "is", "done", "asynchronously", "do", "not", "depend", "on", "the", "return", "of", "this", "call", "as", "an", "indication", "that", "the", "removed", "VLANs", "will", "be", "inaccessible", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3019-L3025
6,341
softlayer/softlayer-go
services/network.go
GetRules
func (r Network_Component_Firewall) GetRules() (resp []datatypes.Network_Component_Firewall_Rule, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component_Firewall", "getRules", nil, &r.Options, &resp) return }
go
func (r Network_Component_Firewall) GetRules() (resp []datatypes.Network_Component_Firewall_Rule, err error) { err = r.Session.DoRequest("SoftLayer_Network_Component_Firewall", "getRules", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Component_Firewall", ")", "GetRules", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Component_Firewall_Rule", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The currently running rule set of this network component firewall.
[ "Retrieve", "The", "currently", "running", "rule", "set", "of", "this", "network", "component", "firewall", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3104-L3107
6,342
softlayer/softlayer-go
services/network.go
GetAuthenticationIpAddresses
func (r Network_ContentDelivery_Account) GetAuthenticationIpAddresses() (resp []datatypes.Network_ContentDelivery_Authentication_Address, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getAuthenticationIpAddresses", nil, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Account) GetAuthenticationIpAddresses() (resp []datatypes.Network_ContentDelivery_Authentication_Address, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getAuthenticationIpAddresses", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Account", ")", "GetAuthenticationIpAddresses", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_ContentDelivery_Authentication_Address", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The IP addresses that are used for the content authentication service.
[ "Retrieve", "The", "IP", "addresses", "that", "are", "used", "for", "the", "content", "authentication", "service", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3297-L3300
6,343
softlayer/softlayer-go
services/network.go
GetCdnSolutionName
func (r Network_ContentDelivery_Account) GetCdnSolutionName() (resp string, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getCdnSolutionName", nil, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Account) GetCdnSolutionName() (resp string, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getCdnSolutionName", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Account", ")", "GetCdnSolutionName", "(", ")", "(", "resp", "string", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The solution type of a CDN account.
[ "Retrieve", "The", "solution", "type", "of", "a", "CDN", "account", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3369-L3372
6,344
softlayer/softlayer-go
services/network.go
GetDiskSpaceUsageDataByDate
func (r Network_ContentDelivery_Account) GetDiskSpaceUsageDataByDate(beginDateTime *datatypes.Time, endDateTime *datatypes.Time) (resp []datatypes.Metric_Tracking_Object_Data, err error) { params := []interface{}{ beginDateTime, endDateTime, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getDiskSpaceUsageDataByDate", params, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Account) GetDiskSpaceUsageDataByDate(beginDateTime *datatypes.Time, endDateTime *datatypes.Time) (resp []datatypes.Metric_Tracking_Object_Data, err error) { params := []interface{}{ beginDateTime, endDateTime, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getDiskSpaceUsageDataByDate", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Account", ")", "GetDiskSpaceUsageDataByDate", "(", "beginDateTime", "*", "datatypes", ".", "Time", ",", "endDateTime", "*", "datatypes", ".", "Time", ")", "(", "resp", "[", "]", "datatypes", ".", "Metric_Tracking_Object_Data", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "beginDateTime", ",", "endDateTime", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method returns disk space usage data for your CDN FTP.
[ "This", "method", "returns", "disk", "space", "usage", "data", "for", "your", "CDN", "FTP", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3399-L3406
6,345
softlayer/softlayer-go
services/network.go
GetOriginPullMappingInformation
func (r Network_ContentDelivery_Account) GetOriginPullMappingInformation() (resp []datatypes.Container_Network_ContentDelivery_OriginPull_Mapping, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getOriginPullMappingInformation", nil, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Account) GetOriginPullMappingInformation() (resp []datatypes.Container_Network_ContentDelivery_OriginPull_Mapping, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getOriginPullMappingInformation", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Account", ")", "GetOriginPullMappingInformation", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Container_Network_ContentDelivery_OriginPull_Mapping", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method returns a list of origin pull configuration data.
[ "This", "method", "returns", "a", "list", "of", "origin", "pull", "configuration", "data", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3451-L3454
6,346
softlayer/softlayer-go
services/network.go
GetProviderPortalCredentials
func (r Network_ContentDelivery_Account) GetProviderPortalCredentials() (resp datatypes.Container_Network_Authentication_Data, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getProviderPortalCredentials", nil, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Account) GetProviderPortalCredentials() (resp datatypes.Container_Network_Authentication_Data, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getProviderPortalCredentials", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Account", ")", "GetProviderPortalCredentials", "(", ")", "(", "resp", "datatypes", ".", "Container_Network_Authentication_Data", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method returns your login credentials to the CDN provider portal.
[ "This", "method", "returns", "your", "login", "credentials", "to", "the", "CDN", "provider", "portal", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3481-L3484
6,347
softlayer/softlayer-go
services/network.go
GetStatus
func (r Network_ContentDelivery_Account) GetStatus() (resp datatypes.Network_ContentDelivery_Account_Status, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getStatus", nil, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Account) GetStatus() (resp datatypes.Network_ContentDelivery_Account_Status, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getStatus", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Account", ")", "GetStatus", "(", ")", "(", "resp", "datatypes", ".", "Network_ContentDelivery_Account_Status", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve A CDN account's status presented in a more detailed data type.
[ "Retrieve", "A", "CDN", "account", "s", "status", "presented", "in", "a", "more", "detailed", "data", "type", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3487-L3490
6,348
softlayer/softlayer-go
services/network.go
GetTokenAuthenticationDirectories
func (r Network_ContentDelivery_Account) GetTokenAuthenticationDirectories() (resp []datatypes.Container_Network_Directory_Listing, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getTokenAuthenticationDirectories", nil, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Account) GetTokenAuthenticationDirectories() (resp []datatypes.Container_Network_Directory_Listing, err error) { err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "getTokenAuthenticationDirectories", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Account", ")", "GetTokenAuthenticationDirectories", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Container_Network_Directory_Listing", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method returns all token authentication directories.
[ "This", "method", "returns", "all", "token", "authentication", "directories", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3493-L3496
6,349
softlayer/softlayer-go
services/network.go
RemoveAuthenticationDirectory
func (r Network_ContentDelivery_Account) RemoveAuthenticationDirectory(directory *string, mediaType *string) (resp bool, err error) { params := []interface{}{ directory, mediaType, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "removeAuthenticationDirectory", params, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Account) RemoveAuthenticationDirectory(directory *string, mediaType *string) (resp bool, err error) { params := []interface{}{ directory, mediaType, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "removeAuthenticationDirectory", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Account", ")", "RemoveAuthenticationDirectory", "(", "directory", "*", "string", ",", "mediaType", "*", "string", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "directory", ",", "mediaType", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// If you want to turn off the token authentication, use this method to remove a directory from the token authentication directory.
[ "If", "you", "want", "to", "turn", "off", "the", "token", "authentication", "use", "this", "method", "to", "remove", "a", "directory", "from", "the", "token", "authentication", "directory", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3559-L3566
6,350
softlayer/softlayer-go
services/network.go
SetAuthenticationServiceEndpoint
func (r Network_ContentDelivery_Account) SetAuthenticationServiceEndpoint(webserviceEndpoint *string, protocol *string) (resp bool, err error) { params := []interface{}{ webserviceEndpoint, protocol, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "setAuthenticationServiceEndpoint", params, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Account) SetAuthenticationServiceEndpoint(webserviceEndpoint *string, protocol *string) (resp bool, err error) { params := []interface{}{ webserviceEndpoint, protocol, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "setAuthenticationServiceEndpoint", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Account", ")", "SetAuthenticationServiceEndpoint", "(", "webserviceEndpoint", "*", "string", ",", "protocol", "*", "string", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "webserviceEndpoint", ",", "protocol", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// CDN servers will invoke a Web Service method to validate a content authentication token. CDN uses the default Web Service provided by SoftLayer to validate a token. A customer can use their own implementation of the token authentication Web Service.
[ "CDN", "servers", "will", "invoke", "a", "Web", "Service", "method", "to", "validate", "a", "content", "authentication", "token", ".", "CDN", "uses", "the", "default", "Web", "Service", "provided", "by", "SoftLayer", "to", "validate", "a", "token", ".", "A", "customer", "can", "use", "their", "own", "implementation", "of", "the", "token", "authentication", "Web", "Service", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3578-L3585
6,351
softlayer/softlayer-go
services/network.go
UpdateNote
func (r Network_ContentDelivery_Account) UpdateNote(note *string) (resp bool, err error) { params := []interface{}{ note, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "updateNote", params, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Account) UpdateNote(note *string) (resp bool, err error) { params := []interface{}{ note, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Account", "updateNote", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Account", ")", "UpdateNote", "(", "note", "*", "string", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "note", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method allows you to edit CDN account note. The maximum length for CDN account note is 30 characters.
[ "This", "method", "allows", "you", "to", "edit", "CDN", "account", "note", ".", "The", "maximum", "length", "for", "CDN", "account", "note", "is", "30", "characters", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3601-L3607
6,352
softlayer/softlayer-go
services/network.go
GetAllManagedTokens
func (r Network_ContentDelivery_Authentication_Token) GetAllManagedTokens(cdnAccountId *int) (resp []datatypes.Network_ContentDelivery_Authentication_Token, err error) { params := []interface{}{ cdnAccountId, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Authentication_Token", "getAllManagedTokens", params, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Authentication_Token) GetAllManagedTokens(cdnAccountId *int) (resp []datatypes.Network_ContentDelivery_Authentication_Token, err error) { params := []interface{}{ cdnAccountId, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Authentication_Token", "getAllManagedTokens", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Authentication_Token", ")", "GetAllManagedTokens", "(", "cdnAccountId", "*", "int", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_ContentDelivery_Authentication_Token", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "cdnAccountId", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method is deprecated! // // This method returns all managed tokens for a CDN account.
[ "This", "method", "is", "deprecated!", "This", "method", "returns", "all", "managed", "tokens", "for", "a", "CDN", "account", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3767-L3773
6,353
softlayer/softlayer-go
services/network.go
RevokeAllManagedTokens
func (r Network_ContentDelivery_Authentication_Token) RevokeAllManagedTokens(cdnAccountId *int) (resp bool, err error) { params := []interface{}{ cdnAccountId, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Authentication_Token", "revokeAllManagedTokens", params, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Authentication_Token) RevokeAllManagedTokens(cdnAccountId *int) (resp bool, err error) { params := []interface{}{ cdnAccountId, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Authentication_Token", "revokeAllManagedTokens", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Authentication_Token", ")", "RevokeAllManagedTokens", "(", "cdnAccountId", "*", "int", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "cdnAccountId", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method is deprecated! // // This method revokes all managed tokens belong to a CDN account.
[ "This", "method", "is", "deprecated!", "This", "method", "revokes", "all", "managed", "tokens", "belong", "to", "a", "CDN", "account", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3803-L3809
6,354
softlayer/softlayer-go
services/network.go
RevokeAllTokens
func (r Network_ContentDelivery_Authentication_Token) RevokeAllTokens(cdnAccountId *int, mediaType *string) (resp bool, err error) { params := []interface{}{ cdnAccountId, mediaType, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Authentication_Token", "revokeAllTokens", params, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Authentication_Token) RevokeAllTokens(cdnAccountId *int, mediaType *string) (resp bool, err error) { params := []interface{}{ cdnAccountId, mediaType, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Authentication_Token", "revokeAllTokens", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Authentication_Token", ")", "RevokeAllTokens", "(", "cdnAccountId", "*", "int", ",", "mediaType", "*", "string", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "cdnAccountId", ",", "mediaType", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method revokes all tokens belong to a CDN account. Valid media types are "HTTP", "FLASH" and "WM".
[ "This", "method", "revokes", "all", "tokens", "belong", "to", "a", "CDN", "account", ".", "Valid", "media", "types", "are", "HTTP", "FLASH", "and", "WM", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3812-L3819
6,355
softlayer/softlayer-go
services/network.go
RevokeManagedToken
func (r Network_ContentDelivery_Authentication_Token) RevokeManagedToken(cdnAccountId *int, token *string) (resp bool, err error) { params := []interface{}{ cdnAccountId, token, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Authentication_Token", "revokeManagedToken", params, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Authentication_Token) RevokeManagedToken(cdnAccountId *int, token *string) (resp bool, err error) { params := []interface{}{ cdnAccountId, token, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Authentication_Token", "revokeManagedToken", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Authentication_Token", ")", "RevokeManagedToken", "(", "cdnAccountId", "*", "int", ",", "token", "*", "string", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "cdnAccountId", ",", "token", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method is deprecated! // // Revokes a managed token. If you revoke a token, the token will be removed from SoftLayer's system but it will not remove your content on CDN FTP. The content that requires token validation will not be available to the visitor who is using a revoked token.
[ "This", "method", "is", "deprecated!", "Revokes", "a", "managed", "token", ".", "If", "you", "revoke", "a", "token", "the", "token", "will", "be", "removed", "from", "SoftLayer", "s", "system", "but", "it", "will", "not", "remove", "your", "content", "on", "CDN", "FTP", ".", "The", "content", "that", "requires", "token", "validation", "will", "not", "be", "available", "to", "the", "visitor", "who", "is", "using", "a", "revoked", "token", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3824-L3831
6,356
softlayer/softlayer-go
services/network.go
RevokeManagedTokens
func (r Network_ContentDelivery_Authentication_Token) RevokeManagedTokens(templateObjects []datatypes.Network_ContentDelivery_Authentication_Token) (resp bool, err error) { params := []interface{}{ templateObjects, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Authentication_Token", "revokeManagedTokens", params, &r.Options, &resp) return }
go
func (r Network_ContentDelivery_Authentication_Token) RevokeManagedTokens(templateObjects []datatypes.Network_ContentDelivery_Authentication_Token) (resp bool, err error) { params := []interface{}{ templateObjects, } err = r.Session.DoRequest("SoftLayer_Network_ContentDelivery_Authentication_Token", "revokeManagedTokens", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_ContentDelivery_Authentication_Token", ")", "RevokeManagedTokens", "(", "templateObjects", "[", "]", "datatypes", ".", "Network_ContentDelivery_Authentication_Token", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "templateObjects", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This method is deprecated! // // Deletes multiple managed tokens
[ "This", "method", "is", "deprecated!", "Deletes", "multiple", "managed", "tokens" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3836-L3842
6,357
softlayer/softlayer-go
services/network.go
GetIpAddresses
func (r Network_Customer_Subnet) GetIpAddresses() (resp []datatypes.Network_Customer_Subnet_IpAddress, err error) { err = r.Session.DoRequest("SoftLayer_Network_Customer_Subnet", "getIpAddresses", nil, &r.Options, &resp) return }
go
func (r Network_Customer_Subnet) GetIpAddresses() (resp []datatypes.Network_Customer_Subnet_IpAddress, err error) { err = r.Session.DoRequest("SoftLayer_Network_Customer_Subnet", "getIpAddresses", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Customer_Subnet", ")", "GetIpAddresses", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Customer_Subnet_IpAddress", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve All ip addresses associated with a subnet.
[ "Retrieve", "All", "ip", "addresses", "associated", "with", "a", "subnet", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3894-L3897
6,358
softlayer/softlayer-go
services/network.go
GetProvider
func (r Network_DirectLink_Location) GetProvider() (resp datatypes.Network_DirectLink_Provider, err error) { err = r.Session.DoRequest("SoftLayer_Network_DirectLink_Location", "getProvider", nil, &r.Options, &resp) return }
go
func (r Network_DirectLink_Location) GetProvider() (resp datatypes.Network_DirectLink_Provider, err error) { err = r.Session.DoRequest("SoftLayer_Network_DirectLink_Location", "getProvider", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_DirectLink_Location", ")", "GetProvider", "(", ")", "(", "resp", "datatypes", ".", "Network_DirectLink_Provider", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The Id of Direct Link provider.
[ "Retrieve", "The", "Id", "of", "Direct", "Link", "provider", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3964-L3967
6,359
softlayer/softlayer-go
services/network.go
GetServiceType
func (r Network_DirectLink_Location) GetServiceType() (resp datatypes.Network_DirectLink_ServiceType, err error) { err = r.Session.DoRequest("SoftLayer_Network_DirectLink_Location", "getServiceType", nil, &r.Options, &resp) return }
go
func (r Network_DirectLink_Location) GetServiceType() (resp datatypes.Network_DirectLink_ServiceType, err error) { err = r.Session.DoRequest("SoftLayer_Network_DirectLink_Location", "getServiceType", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_DirectLink_Location", ")", "GetServiceType", "(", ")", "(", "resp", "datatypes", ".", "Network_DirectLink_ServiceType", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The Id of Direct Link service type.
[ "Retrieve", "The", "Id", "of", "Direct", "Link", "service", "type", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L3970-L3973
6,360
softlayer/softlayer-go
services/network.go
GetRules
func (r Network_Firewall_AccessControlList) GetRules() (resp []datatypes.Network_Vlan_Firewall_Rule, err error) { err = r.Session.DoRequest("SoftLayer_Network_Firewall_AccessControlList", "getRules", nil, &r.Options, &resp) return }
go
func (r Network_Firewall_AccessControlList) GetRules() (resp []datatypes.Network_Vlan_Firewall_Rule, err error) { err = r.Session.DoRequest("SoftLayer_Network_Firewall_AccessControlList", "getRules", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Firewall_AccessControlList", ")", "GetRules", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Vlan_Firewall_Rule", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The currently running rule set of this context access control list firewall.
[ "Retrieve", "The", "currently", "running", "rule", "set", "of", "this", "context", "access", "control", "list", "firewall", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4126-L4129
6,361
softlayer/softlayer-go
services/network.go
GetRules
func (r Network_Firewall_Template) GetRules() (resp []datatypes.Network_Firewall_Template_Rule, err error) { err = r.Session.DoRequest("SoftLayer_Network_Firewall_Template", "getRules", nil, &r.Options, &resp) return }
go
func (r Network_Firewall_Template) GetRules() (resp []datatypes.Network_Firewall_Template_Rule, err error) { err = r.Session.DoRequest("SoftLayer_Network_Firewall_Template", "getRules", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Firewall_Template", ")", "GetRules", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Firewall_Template_Rule", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The rule set that belongs to this firewall rules template.
[ "Retrieve", "The", "rule", "set", "that", "belongs", "to", "this", "firewall", "rules", "template", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4306-L4309
6,362
softlayer/softlayer-go
services/network.go
GetAuthorizingUser
func (r Network_Firewall_Update_Request) GetAuthorizingUser() (resp datatypes.User_Interface, err error) { err = r.Session.DoRequest("SoftLayer_Network_Firewall_Update_Request", "getAuthorizingUser", nil, &r.Options, &resp) return }
go
func (r Network_Firewall_Update_Request) GetAuthorizingUser() (resp datatypes.User_Interface, err error) { err = r.Session.DoRequest("SoftLayer_Network_Firewall_Update_Request", "getAuthorizingUser", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Firewall_Update_Request", ")", "GetAuthorizingUser", "(", ")", "(", "resp", "datatypes", ".", "User_Interface", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The user that authorized this firewall update request.
[ "Retrieve", "The", "user", "that", "authorized", "this", "firewall", "update", "request", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4363-L4366
6,363
softlayer/softlayer-go
services/network.go
GetFirewallUpdateRequestRuleAttributes
func (r Network_Firewall_Update_Request) GetFirewallUpdateRequestRuleAttributes() (resp datatypes.Container_Utility_Network_Firewall_Rule_Attribute, err error) { err = r.Session.DoRequest("SoftLayer_Network_Firewall_Update_Request", "getFirewallUpdateRequestRuleAttributes", nil, &r.Options, &resp) return }
go
func (r Network_Firewall_Update_Request) GetFirewallUpdateRequestRuleAttributes() (resp datatypes.Container_Utility_Network_Firewall_Rule_Attribute, err error) { err = r.Session.DoRequest("SoftLayer_Network_Firewall_Update_Request", "getFirewallUpdateRequestRuleAttributes", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Firewall_Update_Request", ")", "GetFirewallUpdateRequestRuleAttributes", "(", ")", "(", "resp", "datatypes", ".", "Container_Utility_Network_Firewall_Rule_Attribute", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Get the possible attribute values for a firewall update request rule. These are the valid values which may be submitted as rule parameters for a firewall update request. // // ''getFirewallUpdateRequestRuleAttributes'' returns a SoftLayer_Container_Utility_Network_Firewall_Rule_Attribute object upon success.
[ "Get", "the", "possible", "attribute", "values", "for", "a", "firewall", "update", "request", "rule", ".", "These", "are", "the", "valid", "values", "which", "may", "be", "submitted", "as", "rule", "parameters", "for", "a", "firewall", "update", "request", ".", "getFirewallUpdateRequestRuleAttributes", "returns", "a", "SoftLayer_Container_Utility_Network_Firewall_Rule_Attribute", "object", "upon", "success", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4371-L4374
6,364
softlayer/softlayer-go
services/network.go
GetRules
func (r Network_Firewall_Update_Request) GetRules() (resp []datatypes.Network_Firewall_Update_Request_Rule, err error) { err = r.Session.DoRequest("SoftLayer_Network_Firewall_Update_Request", "getRules", nil, &r.Options, &resp) return }
go
func (r Network_Firewall_Update_Request) GetRules() (resp []datatypes.Network_Firewall_Update_Request_Rule, err error) { err = r.Session.DoRequest("SoftLayer_Network_Firewall_Update_Request", "getRules", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Firewall_Update_Request", ")", "GetRules", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Firewall_Update_Request_Rule", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The group of rules contained within the update request.
[ "Retrieve", "The", "group", "of", "rules", "contained", "within", "the", "update", "request", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4401-L4404
6,365
softlayer/softlayer-go
services/network.go
ChangeGatewayVersion
func (r Network_Gateway) ChangeGatewayVersion(versionId *int) (resp bool, err error) { params := []interface{}{ versionId, } err = r.Session.DoRequest("SoftLayer_Network_Gateway", "changeGatewayVersion", params, &r.Options, &resp) return }
go
func (r Network_Gateway) ChangeGatewayVersion(versionId *int) (resp bool, err error) { params := []interface{}{ versionId, } err = r.Session.DoRequest("SoftLayer_Network_Gateway", "changeGatewayVersion", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Gateway", ")", "ChangeGatewayVersion", "(", "versionId", "*", "int", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "versionId", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Used to create a transaction to upgrade or rollback the vSRX version for Juniper gateway. // //
[ "Used", "to", "create", "a", "transaction", "to", "upgrade", "or", "rollback", "the", "vSRX", "version", "for", "Juniper", "gateway", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4553-L4559
6,366
softlayer/softlayer-go
services/network.go
EditObject
func (r Network_Gateway) EditObject(templateObject *datatypes.Network_Gateway) (resp bool, err error) { params := []interface{}{ templateObject, } err = r.Session.DoRequest("SoftLayer_Network_Gateway", "editObject", params, &r.Options, &resp) return }
go
func (r Network_Gateway) EditObject(templateObject *datatypes.Network_Gateway) (resp bool, err error) { params := []interface{}{ templateObject, } err = r.Session.DoRequest("SoftLayer_Network_Gateway", "editObject", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Gateway", ")", "EditObject", "(", "templateObject", "*", "datatypes", ".", "Network_Gateway", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "templateObject", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Edit this gateway. Currently, the only value that can be edited is the name.
[ "Edit", "this", "gateway", ".", "Currently", "the", "only", "value", "that", "can", "be", "edited", "is", "the", "name", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4571-L4577
6,367
softlayer/softlayer-go
services/network.go
GetCapacity
func (r Network_Gateway) GetCapacity() (resp string, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway", "getCapacity", nil, &r.Options, &resp) return }
go
func (r Network_Gateway) GetCapacity() (resp string, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway", "getCapacity", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Gateway", ")", "GetCapacity", "(", ")", "(", "resp", "string", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Returns the Gbps capacity of the gateway object // //
[ "Returns", "the", "Gbps", "capacity", "of", "the", "gateway", "object" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4588-L4591
6,368
softlayer/softlayer-go
services/network.go
GetInsideVlans
func (r Network_Gateway) GetInsideVlans() (resp []datatypes.Network_Gateway_Vlan, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway", "getInsideVlans", nil, &r.Options, &resp) return }
go
func (r Network_Gateway) GetInsideVlans() (resp []datatypes.Network_Gateway_Vlan, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway", "getInsideVlans", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Gateway", ")", "GetInsideVlans", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_Gateway_Vlan", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve All VLANs trunked to this gateway.
[ "Retrieve", "All", "VLANs", "trunked", "to", "this", "gateway", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4594-L4597
6,369
softlayer/softlayer-go
services/network.go
GetNetworkFirewallFlag
func (r Network_Gateway) GetNetworkFirewallFlag() (resp bool, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway", "getNetworkFirewallFlag", nil, &r.Options, &resp) return }
go
func (r Network_Gateway) GetNetworkFirewallFlag() (resp bool, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway", "getNetworkFirewallFlag", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Gateway", ")", "GetNetworkFirewallFlag", "(", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve Whether or not there is a firewall associated with this gateway.
[ "Retrieve", "Whether", "or", "not", "there", "is", "a", "firewall", "associated", "with", "this", "gateway", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4620-L4623
6,370
softlayer/softlayer-go
services/network.go
GetPrivateIpAddress
func (r Network_Gateway) GetPrivateIpAddress() (resp datatypes.Network_Subnet_IpAddress, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway", "getPrivateIpAddress", nil, &r.Options, &resp) return }
go
func (r Network_Gateway) GetPrivateIpAddress() (resp datatypes.Network_Subnet_IpAddress, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway", "getPrivateIpAddress", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Gateway", ")", "GetPrivateIpAddress", "(", ")", "(", "resp", "datatypes", ".", "Network_Subnet_IpAddress", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The private gateway IP address.
[ "Retrieve", "The", "private", "gateway", "IP", "address", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4638-L4641
6,371
softlayer/softlayer-go
services/network.go
GetStatus
func (r Network_Gateway) GetStatus() (resp datatypes.Network_Gateway_Status, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway", "getStatus", nil, &r.Options, &resp) return }
go
func (r Network_Gateway) GetStatus() (resp datatypes.Network_Gateway_Status, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway", "getStatus", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Gateway", ")", "GetStatus", "(", ")", "(", "resp", "datatypes", ".", "Network_Gateway_Status", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The current status of the gateway.
[ "Retrieve", "The", "current", "status", "of", "the", "gateway", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4668-L4671
6,372
softlayer/softlayer-go
services/network.go
UnbypassAllVlans
func (r Network_Gateway) UnbypassAllVlans() (err error) { var resp datatypes.Void err = r.Session.DoRequest("SoftLayer_Network_Gateway", "unbypassAllVlans", nil, &r.Options, &resp) return }
go
func (r Network_Gateway) UnbypassAllVlans() (err error) { var resp datatypes.Void err = r.Session.DoRequest("SoftLayer_Network_Gateway", "unbypassAllVlans", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Gateway", ")", "UnbypassAllVlans", "(", ")", "(", "err", "error", ")", "{", "var", "resp", "datatypes", ".", "Void", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Start the asynchronous process to unbypass all VLANs. Any VLANs that are already unbypassed will be ignored. The status field can be checked for progress.
[ "Start", "the", "asynchronous", "process", "to", "unbypass", "all", "VLANs", ".", "Any", "VLANs", "that", "are", "already", "unbypassed", "will", "be", "ignored", ".", "The", "status", "field", "can", "be", "checked", "for", "progress", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4682-L4686
6,373
softlayer/softlayer-go
services/network.go
UnbypassVlans
func (r Network_Gateway) UnbypassVlans(vlans []datatypes.Network_Gateway_Vlan) (err error) { var resp datatypes.Void params := []interface{}{ vlans, } err = r.Session.DoRequest("SoftLayer_Network_Gateway", "unbypassVlans", params, &r.Options, &resp) return }
go
func (r Network_Gateway) UnbypassVlans(vlans []datatypes.Network_Gateway_Vlan) (err error) { var resp datatypes.Void params := []interface{}{ vlans, } err = r.Session.DoRequest("SoftLayer_Network_Gateway", "unbypassVlans", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Gateway", ")", "UnbypassVlans", "(", "vlans", "[", "]", "datatypes", ".", "Network_Gateway_Vlan", ")", "(", "err", "error", ")", "{", "var", "resp", "datatypes", ".", "Void", "\n", "params", ":=", "[", "]", "interface", "{", "}", "{", "vlans", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Start the asynchronous process to unbypass the provided VLANs. The VLANs must already be attached. Any VLANs that are already unbypassed will be ignored. The status field can be checked for progress.
[ "Start", "the", "asynchronous", "process", "to", "unbypass", "the", "provided", "VLANs", ".", "The", "VLANs", "must", "already", "be", "attached", ".", "Any", "VLANs", "that", "are", "already", "unbypassed", "will", "be", "ignored", ".", "The", "status", "field", "can", "be", "checked", "for", "progress", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4689-L4696
6,374
softlayer/softlayer-go
services/network.go
GetAttributes
func (r Network_Gateway_Member) GetAttributes() (resp datatypes.Network_Gateway_Member_Attribute, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway_Member", "getAttributes", nil, &r.Options, &resp) return }
go
func (r Network_Gateway_Member) GetAttributes() (resp datatypes.Network_Gateway_Member_Attribute, err error) { err = r.Session.DoRequest("SoftLayer_Network_Gateway_Member", "getAttributes", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Gateway_Member", ")", "GetAttributes", "(", ")", "(", "resp", "datatypes", ".", "Network_Gateway_Member_Attribute", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The attributes for this member.
[ "Retrieve", "The", "attributes", "for", "this", "member", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L4757-L4760
6,375
softlayer/softlayer-go
services/network.go
GetBillingItem
func (r Network_Interconnect_Tenant) GetBillingItem() (resp datatypes.Billing_Item_Network_Interconnect, err error) { err = r.Session.DoRequest("SoftLayer_Network_Interconnect_Tenant", "getBillingItem", nil, &r.Options, &resp) return }
go
func (r Network_Interconnect_Tenant) GetBillingItem() (resp datatypes.Billing_Item_Network_Interconnect, err error) { err = r.Session.DoRequest("SoftLayer_Network_Interconnect_Tenant", "getBillingItem", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_Interconnect_Tenant", ")", "GetBillingItem", "(", ")", "(", "resp", "datatypes", ".", "Billing_Item_Network_Interconnect", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The active billing item for a network interconnect.
[ "Retrieve", "The", "active", "billing", "item", "for", "a", "network", "interconnect", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5168-L5171
6,376
softlayer/softlayer-go
services/network.go
AddL7PoolMembers
func (r Network_LBaaS_L7Member) AddL7PoolMembers(l7PoolUuid *string, memberInstances []datatypes.Network_LBaaS_L7Member) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ l7PoolUuid, memberInstances, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Member", "addL7PoolMembers", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_L7Member) AddL7PoolMembers(l7PoolUuid *string, memberInstances []datatypes.Network_LBaaS_L7Member) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ l7PoolUuid, memberInstances, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Member", "addL7PoolMembers", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_L7Member", ")", "AddL7PoolMembers", "(", "l7PoolUuid", "*", "string", ",", "memberInstances", "[", "]", "datatypes", ".", "Network_LBaaS_L7Member", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "l7PoolUuid", ",", "memberInstances", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Add server instances as members to a L7pool and return the LoadBalancer Object with listeners, pools and members populated
[ "Add", "server", "instances", "as", "members", "to", "a", "L7pool", "and", "return", "the", "LoadBalancer", "Object", "with", "listeners", "pools", "and", "members", "populated" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5364-L5371
6,377
softlayer/softlayer-go
services/network.go
UpdateL7PoolMembers
func (r Network_LBaaS_L7Member) UpdateL7PoolMembers(l7PoolUuid *string, members []datatypes.Network_LBaaS_L7Member) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ l7PoolUuid, members, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Member", "updateL7PoolMembers", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_L7Member) UpdateL7PoolMembers(l7PoolUuid *string, members []datatypes.Network_LBaaS_L7Member) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ l7PoolUuid, members, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Member", "updateL7PoolMembers", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_L7Member", ")", "UpdateL7PoolMembers", "(", "l7PoolUuid", "*", "string", ",", "members", "[", "]", "datatypes", ".", "Network_LBaaS_L7Member", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "l7PoolUuid", ",", "members", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Update L7 members weight and port.
[ "Update", "L7", "members", "weight", "and", "port", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5390-L5397
6,378
softlayer/softlayer-go
services/network.go
AddL7Policies
func (r Network_LBaaS_L7Policy) AddL7Policies(listenerUuid *string, policiesRules []datatypes.Network_LBaaS_PolicyRule) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ listenerUuid, policiesRules, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Policy", "addL7Policies", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_L7Policy) AddL7Policies(listenerUuid *string, policiesRules []datatypes.Network_LBaaS_PolicyRule) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ listenerUuid, policiesRules, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Policy", "addL7Policies", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_L7Policy", ")", "AddL7Policies", "(", "listenerUuid", "*", "string", ",", "policiesRules", "[", "]", "datatypes", ".", "Network_LBaaS_PolicyRule", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "listenerUuid", ",", "policiesRules", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This function creates multiple policies with rules for the given listener.
[ "This", "function", "creates", "multiple", "policies", "with", "rules", "for", "the", "given", "listener", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5440-L5447
6,379
softlayer/softlayer-go
services/network.go
EditObject
func (r Network_LBaaS_L7Policy) EditObject(templateObject *datatypes.Network_LBaaS_L7Policy) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ templateObject, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Policy", "editObject", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_L7Policy) EditObject(templateObject *datatypes.Network_LBaaS_L7Policy) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ templateObject, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Policy", "editObject", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_L7Policy", ")", "EditObject", "(", "templateObject", "*", "datatypes", ".", "Network_LBaaS_L7Policy", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "templateObject", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Edit a l7 policy instance's properties
[ "Edit", "a", "l7", "policy", "instance", "s", "properties" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5456-L5462
6,380
softlayer/softlayer-go
services/network.go
CreateL7Pool
func (r Network_LBaaS_L7Pool) CreateL7Pool(loadBalancerUuid *string, l7Pool *datatypes.Network_LBaaS_L7Pool, l7Members []datatypes.Network_LBaaS_L7Member, l7HealthMonitor *datatypes.Network_LBaaS_L7HealthMonitor, l7SessionAffinity *datatypes.Network_LBaaS_L7SessionAffinity) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ loadBalancerUuid, l7Pool, l7Members, l7HealthMonitor, l7SessionAffinity, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Pool", "createL7Pool", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_L7Pool) CreateL7Pool(loadBalancerUuid *string, l7Pool *datatypes.Network_LBaaS_L7Pool, l7Members []datatypes.Network_LBaaS_L7Member, l7HealthMonitor *datatypes.Network_LBaaS_L7HealthMonitor, l7SessionAffinity *datatypes.Network_LBaaS_L7SessionAffinity) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ loadBalancerUuid, l7Pool, l7Members, l7HealthMonitor, l7SessionAffinity, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Pool", "createL7Pool", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_L7Pool", ")", "CreateL7Pool", "(", "loadBalancerUuid", "*", "string", ",", "l7Pool", "*", "datatypes", ".", "Network_LBaaS_L7Pool", ",", "l7Members", "[", "]", "datatypes", ".", "Network_LBaaS_L7Member", ",", "l7HealthMonitor", "*", "datatypes", ".", "Network_LBaaS_L7HealthMonitor", ",", "l7SessionAffinity", "*", "datatypes", ".", "Network_LBaaS_L7SessionAffinity", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "loadBalancerUuid", ",", "l7Pool", ",", "l7Members", ",", "l7HealthMonitor", ",", "l7SessionAffinity", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Create a backend to be used for L7 load balancing. This L7 pool has backend protocol, L7 members, L7 health monitor and session affinity. L7 pool is associated with L7 policies.
[ "Create", "a", "backend", "to", "be", "used", "for", "L7", "load", "balancing", ".", "This", "L7", "pool", "has", "backend", "protocol", "L7", "members", "L7", "health", "monitor", "and", "session", "affinity", ".", "L7", "pool", "is", "associated", "with", "L7", "policies", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5517-L5527
6,381
softlayer/softlayer-go
services/network.go
GetL7PoolMemberHealth
func (r Network_LBaaS_L7Pool) GetL7PoolMemberHealth(loadBalancerUuid *string) (resp []datatypes.Network_LBaaS_L7PoolMembersHealth, err error) { params := []interface{}{ loadBalancerUuid, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Pool", "getL7PoolMemberHealth", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_L7Pool) GetL7PoolMemberHealth(loadBalancerUuid *string) (resp []datatypes.Network_LBaaS_L7PoolMembersHealth, err error) { params := []interface{}{ loadBalancerUuid, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Pool", "getL7PoolMemberHealth", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_L7Pool", ")", "GetL7PoolMemberHealth", "(", "loadBalancerUuid", "*", "string", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_LBaaS_L7PoolMembersHealth", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "loadBalancerUuid", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Returns the health of all L7 pool's members which are created under load balancer. L7 members health status is available only after a L7 pool is associated with the L7 policy and that L7 policy has at least one L7 rule.
[ "Returns", "the", "health", "of", "all", "L7", "pool", "s", "members", "which", "are", "created", "under", "load", "balancer", ".", "L7", "members", "health", "status", "is", "available", "only", "after", "a", "L7", "pool", "is", "associated", "with", "the", "L7", "policy", "and", "that", "L7", "policy", "has", "at", "least", "one", "L7", "rule", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5554-L5560
6,382
softlayer/softlayer-go
services/network.go
UpdateL7Pool
func (r Network_LBaaS_L7Pool) UpdateL7Pool(l7PoolUuid *string, l7Pool *datatypes.Network_LBaaS_L7Pool, l7HealthMonitor *datatypes.Network_LBaaS_L7HealthMonitor, l7SessionAffinity *datatypes.Network_LBaaS_L7SessionAffinity) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ l7PoolUuid, l7Pool, l7HealthMonitor, l7SessionAffinity, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Pool", "updateL7Pool", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_L7Pool) UpdateL7Pool(l7PoolUuid *string, l7Pool *datatypes.Network_LBaaS_L7Pool, l7HealthMonitor *datatypes.Network_LBaaS_L7HealthMonitor, l7SessionAffinity *datatypes.Network_LBaaS_L7SessionAffinity) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ l7PoolUuid, l7Pool, l7HealthMonitor, l7SessionAffinity, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Pool", "updateL7Pool", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_L7Pool", ")", "UpdateL7Pool", "(", "l7PoolUuid", "*", "string", ",", "l7Pool", "*", "datatypes", ".", "Network_LBaaS_L7Pool", ",", "l7HealthMonitor", "*", "datatypes", ".", "Network_LBaaS_L7HealthMonitor", ",", "l7SessionAffinity", "*", "datatypes", ".", "Network_LBaaS_L7SessionAffinity", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "l7PoolUuid", ",", "l7Pool", ",", "l7HealthMonitor", ",", "l7SessionAffinity", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Updates an existing L7 pool, L7 health monitor and L7 session affinity.
[ "Updates", "an", "existing", "L7", "pool", "L7", "health", "monitor", "and", "L7", "session", "affinity", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5575-L5584
6,383
softlayer/softlayer-go
services/network.go
DeleteL7Rules
func (r Network_LBaaS_L7Rule) DeleteL7Rules(policyUuid *string, ruleUuids []string) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ policyUuid, ruleUuids, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Rule", "deleteL7Rules", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_L7Rule) DeleteL7Rules(policyUuid *string, ruleUuids []string) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ policyUuid, ruleUuids, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Rule", "deleteL7Rules", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_L7Rule", ")", "DeleteL7Rules", "(", "policyUuid", "*", "string", ",", "ruleUuids", "[", "]", "string", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "policyUuid", ",", "ruleUuids", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This function deletes multiple rules aassociated with the same policy.
[ "This", "function", "deletes", "multiple", "rules", "aassociated", "with", "the", "same", "policy", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5637-L5644
6,384
softlayer/softlayer-go
services/network.go
UpdateL7Rules
func (r Network_LBaaS_L7Rule) UpdateL7Rules(policyUuid *string, rules []datatypes.Network_LBaaS_L7Rule) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ policyUuid, rules, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Rule", "updateL7Rules", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_L7Rule) UpdateL7Rules(policyUuid *string, rules []datatypes.Network_LBaaS_L7Rule) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ policyUuid, rules, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_L7Rule", "updateL7Rules", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_L7Rule", ")", "UpdateL7Rules", "(", "policyUuid", "*", "string", ",", "rules", "[", "]", "datatypes", ".", "Network_LBaaS_L7Rule", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "policyUuid", ",", "rules", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// This function updates multiple Rules to a given policy with all the details for rules.
[ "This", "function", "updates", "multiple", "Rules", "to", "a", "given", "policy", "with", "all", "the", "details", "for", "rules", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5653-L5660
6,385
softlayer/softlayer-go
services/network.go
CancelLoadBalancer
func (r Network_LBaaS_LoadBalancer) CancelLoadBalancer(uuid *string) (resp bool, err error) { params := []interface{}{ uuid, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "cancelLoadBalancer", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_LoadBalancer) CancelLoadBalancer(uuid *string) (resp bool, err error) { params := []interface{}{ uuid, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "cancelLoadBalancer", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_LoadBalancer", ")", "CancelLoadBalancer", "(", "uuid", "*", "string", ")", "(", "resp", "bool", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "uuid", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Cancel a load balancer with the given uuid. The billing system will execute the deletion of load balancer and all objects associated with it such as load balancer appliances, listeners, pools and members in the background.
[ "Cancel", "a", "load", "balancer", "with", "the", "given", "uuid", ".", "The", "billing", "system", "will", "execute", "the", "deletion", "of", "load", "balancer", "and", "all", "objects", "associated", "with", "it", "such", "as", "load", "balancer", "appliances", "listeners", "pools", "and", "members", "in", "the", "background", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5781-L5787
6,386
softlayer/softlayer-go
services/network.go
EnableOrDisableDataLogs
func (r Network_LBaaS_LoadBalancer) EnableOrDisableDataLogs(uuid *string, enabled *bool) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ uuid, enabled, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "enableOrDisableDataLogs", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_LoadBalancer) EnableOrDisableDataLogs(uuid *string, enabled *bool) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ uuid, enabled, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "enableOrDisableDataLogs", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_LoadBalancer", ")", "EnableOrDisableDataLogs", "(", "uuid", "*", "string", ",", "enabled", "*", "bool", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "uuid", ",", "enabled", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// When enabled, data log would be forwarded to logging service.
[ "When", "enabled", "data", "log", "would", "be", "forwarded", "to", "logging", "service", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5790-L5797
6,387
softlayer/softlayer-go
services/network.go
GetHealthMonitors
func (r Network_LBaaS_LoadBalancer) GetHealthMonitors() (resp []datatypes.Network_LBaaS_HealthMonitor, err error) { err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getHealthMonitors", nil, &r.Options, &resp) return }
go
func (r Network_LBaaS_LoadBalancer) GetHealthMonitors() (resp []datatypes.Network_LBaaS_HealthMonitor, err error) { err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getHealthMonitors", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_LoadBalancer", ")", "GetHealthMonitors", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_LBaaS_HealthMonitor", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve Health monitors for the backend members.
[ "Retrieve", "Health", "monitors", "for", "the", "backend", "members", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5812-L5815
6,388
softlayer/softlayer-go
services/network.go
GetL7Pools
func (r Network_LBaaS_LoadBalancer) GetL7Pools() (resp []datatypes.Network_LBaaS_L7Pool, err error) { err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getL7Pools", nil, &r.Options, &resp) return }
go
func (r Network_LBaaS_LoadBalancer) GetL7Pools() (resp []datatypes.Network_LBaaS_L7Pool, err error) { err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getL7Pools", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_LoadBalancer", ")", "GetL7Pools", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_LBaaS_L7Pool", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve L7Pools for load balancer.
[ "Retrieve", "L7Pools", "for", "load", "balancer", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5818-L5821
6,389
softlayer/softlayer-go
services/network.go
GetListenerTimeSeriesData
func (r Network_LBaaS_LoadBalancer) GetListenerTimeSeriesData(loadBalancerUuid *string, metricName *string, timeRange *string, listenerUuid *string) (resp []datatypes.Network_LBaaS_LoadBalancerMonitoringMetricDataPoint, err error) { params := []interface{}{ loadBalancerUuid, metricName, timeRange, listenerUuid, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getListenerTimeSeriesData", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_LoadBalancer) GetListenerTimeSeriesData(loadBalancerUuid *string, metricName *string, timeRange *string, listenerUuid *string) (resp []datatypes.Network_LBaaS_LoadBalancerMonitoringMetricDataPoint, err error) { params := []interface{}{ loadBalancerUuid, metricName, timeRange, listenerUuid, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getListenerTimeSeriesData", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_LoadBalancer", ")", "GetListenerTimeSeriesData", "(", "loadBalancerUuid", "*", "string", ",", "metricName", "*", "string", ",", "timeRange", "*", "string", ",", "listenerUuid", "*", "string", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_LBaaS_LoadBalancerMonitoringMetricDataPoint", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "loadBalancerUuid", ",", "metricName", ",", "timeRange", ",", "listenerUuid", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Return listener time series datapoints. The time series data is available for Throughput, ConnectionRate and ActiveConnections. Throughput is in bits per second. The values are an average over the time range. The time series data is available for 1hour, 6hours, 12hours, 1day, 1week or 2weeks. // //
[ "Return", "listener", "time", "series", "datapoints", ".", "The", "time", "series", "data", "is", "available", "for", "Throughput", "ConnectionRate", "and", "ActiveConnections", ".", "Throughput", "is", "in", "bits", "per", "second", ".", "The", "values", "are", "an", "average", "over", "the", "time", "range", ".", "The", "time", "series", "data", "is", "available", "for", "1hour", "6hours", "12hours", "1day", "1week", "or", "2weeks", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5826-L5835
6,390
softlayer/softlayer-go
services/network.go
GetListeners
func (r Network_LBaaS_LoadBalancer) GetListeners() (resp []datatypes.Network_LBaaS_Listener, err error) { err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getListeners", nil, &r.Options, &resp) return }
go
func (r Network_LBaaS_LoadBalancer) GetListeners() (resp []datatypes.Network_LBaaS_Listener, err error) { err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getListeners", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_LoadBalancer", ")", "GetListeners", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_LBaaS_Listener", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve Listeners assigned to load balancer.
[ "Retrieve", "Listeners", "assigned", "to", "load", "balancer", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5838-L5841
6,391
softlayer/softlayer-go
services/network.go
GetMembers
func (r Network_LBaaS_LoadBalancer) GetMembers() (resp []datatypes.Network_LBaaS_Member, err error) { err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getMembers", nil, &r.Options, &resp) return }
go
func (r Network_LBaaS_LoadBalancer) GetMembers() (resp []datatypes.Network_LBaaS_Member, err error) { err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getMembers", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_LoadBalancer", ")", "GetMembers", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_LBaaS_Member", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve Members assigned to load balancer.
[ "Retrieve", "Members", "assigned", "to", "load", "balancer", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5871-L5874
6,392
softlayer/softlayer-go
services/network.go
GetSslCiphers
func (r Network_LBaaS_LoadBalancer) GetSslCiphers() (resp []datatypes.Network_LBaaS_SSLCipher, err error) { err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getSslCiphers", nil, &r.Options, &resp) return }
go
func (r Network_LBaaS_LoadBalancer) GetSslCiphers() (resp []datatypes.Network_LBaaS_SSLCipher, err error) { err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "getSslCiphers", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_LoadBalancer", ")", "GetSslCiphers", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_LBaaS_SSLCipher", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve list of preferred custom ciphers configured for the load balancer.
[ "Retrieve", "list", "of", "preferred", "custom", "ciphers", "configured", "for", "the", "load", "balancer", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5883-L5886
6,393
softlayer/softlayer-go
services/network.go
UpdateLoadBalancer
func (r Network_LBaaS_LoadBalancer) UpdateLoadBalancer(uuid *string, newDescription *string) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ uuid, newDescription, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "updateLoadBalancer", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_LoadBalancer) UpdateLoadBalancer(uuid *string, newDescription *string) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ uuid, newDescription, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "updateLoadBalancer", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_LoadBalancer", ")", "UpdateLoadBalancer", "(", "uuid", "*", "string", ",", "newDescription", "*", "string", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "uuid", ",", "newDescription", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Update load balancer's description, and return the load balancer object containing all listeners, pools, members and datacenter.
[ "Update", "load", "balancer", "s", "description", "and", "return", "the", "load", "balancer", "object", "containing", "all", "listeners", "pools", "members", "and", "datacenter", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5898-L5905
6,394
softlayer/softlayer-go
services/network.go
UpdateSslCiphers
func (r Network_LBaaS_LoadBalancer) UpdateSslCiphers(loadBalancerUuid *string, cipherList []int) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ loadBalancerUuid, cipherList, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "updateSslCiphers", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_LoadBalancer) UpdateSslCiphers(loadBalancerUuid *string, cipherList []int) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ loadBalancerUuid, cipherList, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_LoadBalancer", "updateSslCiphers", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_LoadBalancer", ")", "UpdateSslCiphers", "(", "loadBalancerUuid", "*", "string", ",", "cipherList", "[", "]", "int", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "loadBalancerUuid", ",", "cipherList", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Updates the load balancer with the new cipher list. All new connections going forward will use the new set of ciphers selected by the user.
[ "Updates", "the", "load", "balancer", "with", "the", "new", "cipher", "list", ".", "All", "new", "connections", "going", "forward", "will", "use", "the", "new", "set", "of", "ciphers", "selected", "by", "the", "user", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5908-L5915
6,395
softlayer/softlayer-go
services/network.go
AddLoadBalancerMembers
func (r Network_LBaaS_Member) AddLoadBalancerMembers(loadBalancerUuid *string, serverInstances []datatypes.Network_LBaaS_LoadBalancerServerInstanceInfo) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ loadBalancerUuid, serverInstances, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_Member", "addLoadBalancerMembers", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_Member) AddLoadBalancerMembers(loadBalancerUuid *string, serverInstances []datatypes.Network_LBaaS_LoadBalancerServerInstanceInfo) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ loadBalancerUuid, serverInstances, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_Member", "addLoadBalancerMembers", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_Member", ")", "AddLoadBalancerMembers", "(", "loadBalancerUuid", "*", "string", ",", "serverInstances", "[", "]", "datatypes", ".", "Network_LBaaS_LoadBalancerServerInstanceInfo", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "loadBalancerUuid", ",", "serverInstances", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Add server instances as members to load balancer and return it with listeners, pools and members populated
[ "Add", "server", "instances", "as", "members", "to", "load", "balancer", "and", "return", "it", "with", "listeners", "pools", "and", "members", "populated" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5958-L5965
6,396
softlayer/softlayer-go
services/network.go
UpdateLoadBalancerMembers
func (r Network_LBaaS_Member) UpdateLoadBalancerMembers(loadBalancerUuid *string, members []datatypes.Network_LBaaS_Member) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ loadBalancerUuid, members, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_Member", "updateLoadBalancerMembers", params, &r.Options, &resp) return }
go
func (r Network_LBaaS_Member) UpdateLoadBalancerMembers(loadBalancerUuid *string, members []datatypes.Network_LBaaS_Member) (resp datatypes.Network_LBaaS_LoadBalancer, err error) { params := []interface{}{ loadBalancerUuid, members, } err = r.Session.DoRequest("SoftLayer_Network_LBaaS_Member", "updateLoadBalancerMembers", params, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LBaaS_Member", ")", "UpdateLoadBalancerMembers", "(", "loadBalancerUuid", "*", "string", ",", "members", "[", "]", "datatypes", ".", "Network_LBaaS_Member", ")", "(", "resp", "datatypes", ".", "Network_LBaaS_LoadBalancer", ",", "err", "error", ")", "{", "params", ":=", "[", "]", "interface", "{", "}", "{", "loadBalancerUuid", ",", "members", ",", "}", "\n", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "params", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Update members weight and return load balancer object with listeners, pools and members populated
[ "Update", "members", "weight", "and", "return", "load", "balancer", "object", "with", "listeners", "pools", "and", "members", "populated" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L5984-L5991
6,397
softlayer/softlayer-go
services/network.go
GetHosts
func (r Network_LoadBalancer_Global_Account) GetHosts() (resp []datatypes.Network_LoadBalancer_Global_Host, err error) { err = r.Session.DoRequest("SoftLayer_Network_LoadBalancer_Global_Account", "getHosts", nil, &r.Options, &resp) return }
go
func (r Network_LoadBalancer_Global_Account) GetHosts() (resp []datatypes.Network_LoadBalancer_Global_Host, err error) { err = r.Session.DoRequest("SoftLayer_Network_LoadBalancer_Global_Account", "getHosts", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LoadBalancer_Global_Account", ")", "GetHosts", "(", ")", "(", "resp", "[", "]", "datatypes", ".", "Network_LoadBalancer_Global_Host", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The hosts in the load balancing pool for a global load balancer account.
[ "Retrieve", "The", "hosts", "in", "the", "load", "balancing", "pool", "for", "a", "global", "load", "balancer", "account", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L6140-L6143
6,398
softlayer/softlayer-go
services/network.go
GetLoadBalanceType
func (r Network_LoadBalancer_Global_Account) GetLoadBalanceType() (resp datatypes.Network_LoadBalancer_Global_Type, err error) { err = r.Session.DoRequest("SoftLayer_Network_LoadBalancer_Global_Account", "getLoadBalanceType", nil, &r.Options, &resp) return }
go
func (r Network_LoadBalancer_Global_Account) GetLoadBalanceType() (resp datatypes.Network_LoadBalancer_Global_Type, err error) { err = r.Session.DoRequest("SoftLayer_Network_LoadBalancer_Global_Account", "getLoadBalanceType", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LoadBalancer_Global_Account", ")", "GetLoadBalanceType", "(", ")", "(", "resp", "datatypes", ".", "Network_LoadBalancer_Global_Type", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve The load balance method of a global load balancer account
[ "Retrieve", "The", "load", "balance", "method", "of", "a", "global", "load", "balancer", "account" ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L6146-L6149
6,399
softlayer/softlayer-go
services/network.go
GetCustomerManagedFlag
func (r Network_LoadBalancer_VirtualIpAddress) GetCustomerManagedFlag() (resp int, err error) { err = r.Session.DoRequest("SoftLayer_Network_LoadBalancer_VirtualIpAddress", "getCustomerManagedFlag", nil, &r.Options, &resp) return }
go
func (r Network_LoadBalancer_VirtualIpAddress) GetCustomerManagedFlag() (resp int, err error) { err = r.Session.DoRequest("SoftLayer_Network_LoadBalancer_VirtualIpAddress", "getCustomerManagedFlag", nil, &r.Options, &resp) return }
[ "func", "(", "r", "Network_LoadBalancer_VirtualIpAddress", ")", "GetCustomerManagedFlag", "(", ")", "(", "resp", "int", ",", "err", "error", ")", "{", "err", "=", "r", ".", "Session", ".", "DoRequest", "(", "\"", "\"", ",", "\"", "\"", ",", "nil", ",", "&", "r", ".", "Options", ",", "&", "resp", ")", "\n", "return", "\n", "}" ]
// Retrieve If false, this VIP and associated services may be edited via the portal or the API. If true, you must configure this VIP manually on the device.
[ "Retrieve", "If", "false", "this", "VIP", "and", "associated", "services", "may", "be", "edited", "via", "the", "portal", "or", "the", "API", ".", "If", "true", "you", "must", "configure", "this", "VIP", "manually", "on", "the", "device", "." ]
aa510384a41b6450fa6a50e943ed32f5e838fada
https://github.com/softlayer/softlayer-go/blob/aa510384a41b6450fa6a50e943ed32f5e838fada/services/network.go#L6406-L6409