_id
stringlengths
2
7
text
stringlengths
6
2.61k
title
stringclasses
1 value
c180900
//GetDatacenter gets a datacenter
c180901
//UpdateDataCenter updates a data center
c180902
//DeleteDatacenter deletes a data center
c180903
//WaitTillProvisioned helper function
c180904
//ListFirewallRules lists all firewall rules
c180905
//GetFirewallRule gets a firewall rule
c180906
//CreateFirewallRule creates a firewall rule
c180907
//UpdateFirewallRule updates a firewall rule
c180908
//DeleteFirewallRule deletes a firewall rule
c180909
//ListLoadbalancers returns a Collection struct for loadbalancers in the Datacenter
c180910
//GetLoadbalancer pulls data for the Loadbalancer where id = lbalid returns a Instance struct
c180911
//UpdateLoadbalancer updates a load balancer
c180912
//DeleteLoadbalancer deletes a load balancer
c180913
//ListBalancedNics lists balanced nics
c180914
//AssociateNic attach a nic to load balancer
c180915
//GetBalancedNic gets a balanced nic
c180916
//DeleteBalancedNic removes a balanced nic
c180917
// ListLans returns a Collection for lans in the Datacenter
c180918
// GetLan pulls data for the lan where id = lanid returns an Instance struct
c180919
// DeleteLan deletes a lan where id == lanid
c180920
// ListNics returns a Nics struct collection
c180921
// CreateNic creates a nic on a server
c180922
// GetNic pulls data for the nic where id = srvid returns a Instance struct
c180923
// UpdateNic partial update of nic properties
c180924
// DeleteNic deletes the nic where id=nicid and returns a Resp struct
c180925
//ListSnapshots lists all snapshots
c180926
//GetSnapshot gets a specific snapshot
c180927
// DeleteSnapshot deletes a specified snapshot
c180928
// UpdateSnapshot updates a snapshot
c180929
//ListIPBlocks lists all IP blocks
c180930
//ReserveIPBlock creates an IP block
c180931
//GetIPBlock gets an IP blocks
c180932
// UpdateIPBlock partial update of ipblock properties
c180933
//ReleaseIPBlock deletes an IP block
c180934
// ListVolumes returns a Collection struct for volumes in the Datacenter
c180935
//GetVolume gets a volume
c180936
//UpdateVolume updates a volume
c180937
// DeleteVolume deletes a volume
c180938
//CreateSnapshot creates a volume snapshot
c180939
// RestoreSnapshot restores a volume with provided snapshot
c180940
// ListServers returns a server struct collection
c180941
// GetServer pulls data for the server where id = srvid returns a Instance struct
c180942
// DeleteServer deletes the server where id=srvid and returns Resp struct
c180943
//ListAttachedCdroms returns list of attached cd roms
c180944
//AttachCdrom attaches a CD rom
c180945
//GetAttachedCdrom gets attached cd roms
c180946
//DetachCdrom detaches a CD rom
c180947
//ListAttachedVolumes lists attached volumes
c180948
//AttachVolume attaches a volume
c180949
//GetAttachedVolume gets an attached volume
c180950
//DetachVolume detaches a volume
c180951
// ListLocations returns location collection data
c180952
// GetRegionalLocations returns a list of available locations in a specific region
c180953
// GetLocation returns location data
c180954
// GetContractResources returns list of contract resources
c180955
// ListImages returns an Collection struct
c180956
// GetImage returns an Instance struct where id ==imageid
c180957
// PrintHeaders prints the http headers as k,v pairs
c180958
//ListGroups lists all groups
c180959
//GetGroup gets a group
c180960
//CreateGroup creates a group
c180961
//UpdateGroup updates a group
c180962
//DeleteGroup deletes a group
c180963
//ListShares lists all shares
c180964
// GetShare gets a share
c180965
// AddShare adds a share
c180966
// UpdateShare updates a share
c180967
// DeleteShare deletes a share
c180968
//ListGroupUsers lists Users in a group
c180969
// AddUserToGroup adds a user to a group
c180970
// DeleteUserFromGroup removes a user from a group
c180971
//ListUsers lists all users
c180972
// GetUser gets a user
c180973
//CreateUser creates a user
c180974
//UpdateUser updates user information
c180975
//DeleteUser deletes the specified user
c180976
//ListResources lists all resources
c180977
//GetResourceByType gets a resource by type
c180978
//ListResourcesByType list resources by type
c180979
//ListRequests lists all requests
c180980
//GetRequest gets a specific request
c180981
// GetRequestStatus retursn status of the request
c180982
// Close our writer. Subsequent writes will fail.
c180983
// GetSerializableArgument get serializable argument
c180984
// BoolVar defines a bool flag with specified name, default value, and // usage string. The argument p points to a bool variable in which to // store the value of the flag.
c180985
// Bool defines a bool flag with specified name, default value, and // usage string. The return value is the address of a bool variable // that stores the value of the flag.
c180986
// IntVar defines an int flag with specified name, default value, and // usage string. The argument p points to an int variable in which to // store the value of the flag.
c180987
// Int defines an int flag with specified name, default value, and // usage string. The return value is the address of an int variable // that stores the value of the flag.
c180988
// Int64Var defines an int64 flag with specified name, default value, // and usage string. The argument p points to an int64 variable in // which to store the value of the flag.
c180989
// Int64 defines an int64 flag with specified name, default value, and // usage string. The return value is the address of an int64 variable // that stores the value of the flag.
c180990
// UintVar defines a uint flag with specified name, default value, and // usage string. The argument p points to a uint variable in which to // store the value of the flag.
c180991
// Uint defines a uint flag with specified name, default value, and // usage string. The return value is the address of a uint variable // that stores the value of the flag.
c180992
// Uint64Var defines a uint64 flag with specified name, default value, // and usage string. The argument p points to a uint64 variable in // which to store the value of the flag.
c180993
// Uint64 defines a uint64 flag with specified name, default value, // and usage string. The return value is the address of a uint64 // variable that stores the value of the flag.
c180994
// StringVar defines a string flag with specified name, default value, // and usage string. The argument p points to a string variable in // which to store the value of the flag.
c180995
// String defines a string flag with specified name, default value, // and usage string. The return value is the address of a string // variable that stores the value of the flag.
c180996
// Float64Var defines a float64 flag with specified name, default // value, and usage string. The argument p points to a float64 // variable in which to store the value of the flag.
c180997
// Float64 defines a float64 flag with specified name, default value, // and usage string. The return value is the address of a float64 // variable that stores the value of the flag.
c180998
// DurationVar defines a time.Duration flag with specified name, // default value, and usage string. The argument p points to a // time.Duration variable in which to store the value of the flag.
c180999
// Duration defines a time.Duration flag with specified name, default // value, and usage string. The return value is the address of a // time.Duration variable that stores the value of the flag.