72 KiB
Go SDK
Version: profitbricks-sdk-go 4.0.2
The ProfitBricks Client Library for Go provides you with access to the ProfitBricks REST API. It is designed for developers who are building applications in Go.
This guide will walk you through getting setup with the library and performing various actions against the API.
Table of Contents
- Description
- Getting Started
- Reference
- Data Centers
- Locations
- Servers
- Images
- Volumes
- Snapshots
- IP Blocks
- LANs
- Network Interfaces (NICs)
- Firewall Rules
- Load Balancers
- Requests
- Contract Resources
- Users Management
- List Groups
- Retrieve a Group
- Create a Group
- Update a Group
- Delete a Group
- List Shares
- Retrieve a Share
- Add a Share
- Update a Share
- Delete a Share
- List Users in a Group
- Add User to Group
- Remove User from a Group
- List Users
- Retrieve a User
- Create a User
- Update a User
- Delete a User
- List Resources
- List All Resources of a Type
- List a specific Resource Type
- Example
- Support
- Testing
- Contributing
Description
The Go SDK wraps the latest version of the ProfitBricks REST API. All API operations are performed over SSL and authenticated using your ProfitBricks portal credentials. The API can be accessed within an instance running in ProfitBricks or directly over the Internet from any application that can send an HTTPS request and receive an HTTPS response.
Getting Started
Before you begin you will need to have signed-up for a ProfitBricks account. The credentials you setup during sign-up will be used to authenticate against the API.
Installation
Install the Go language from: Go Installation
The GOPATH
environment variable specifies the location of your Go workspace. It is likely the only environment variable you'll need to set when developing Go code. This is an example of pointing to a workspace configured underneath your home directory:
mkdir -p ~/go/bin
export GOPATH=~/go
export GOBIN=$GOPATH/bin
export PATH=$PATH:$GOBIN
The following go command will download profitbricks-sdk-go
to your configured GOPATH
:
go get "github.com/profitbricks/profitbricks-sdk-go"
The source code of the package will be located at:
$GOBIN\src\profitbricks-sdk-go
Create main package file example.go:
package main
import (
"fmt"
)
func main() {
}
Import GO SDK:
import(
"github.com/profitbricks/profitbricks-sdk-go"
)
Authenticating
Add your credentials for connecting to ProfitBricks:
profitbricks.SetAuth("username", "password")
Caution: You will want to ensure you follow security best practices when using credentials within your code or stored in a file.
Error Handling
The SDK will raise custom exceptions when the Cloud API returns an error. There are four response types:
HTTP Code | Description |
---|---|
401 | The supplied user credentials are invalid. |
404 | The requested resource cannot be found. |
422 | The request body includes invalid JSON. |
429 | The Cloud API rate limit has been exceeded. |
Concepts
The Go SDK wraps the latest version of the ProfitBricks REST API. All API operations are performed over SSL and authenticated using your ProfitBricks portal credentials. The API can be accessed within an instance running in ProfitBricks or directly over the Internet from any application that can send an HTTPS request and receive an HTTPS response.
Getting Started
Before you begin you will need to have signed-up for a ProfitBricks account. The credentials you setup during sign-up will be used to authenticate against the API.
Install the Go language from: Go Installation
The GOPATH
environment variable specifies the location of your Go workspace. It is likely the only environment variable you'll need to set when developing Go code. This is an example of pointing to a workspace configured underneath your home directory:
mkdir -p ~/go/bin
export GOPATH=~/go
export GOBIN=$GOPATH/bin
export PATH=$PATH:$GOBIN
Installation
The following go command will download profitbricks-sdk-go
to your configured GOPATH
:
go get "github.com/profitbricks/profitbricks-sdk-go"
The source code of the package will be located at:
$GOBIN\src\profitbricks-sdk-go
Create main package file example.go:
package main
import (
"fmt"
)
func main() {
}
Import GO SDK:
import(
"github.com/profitbricks/profitbricks-sdk-go"
)
Add your credentials for connecting to ProfitBricks:
profitbricks.SetAuth("username", "password")
Set depth:
profitbricks.SetDepth("5")
Depth controls the amount of data returned from the REST server ( range 1-5 ). The larger the number the more information is returned from the server. This is especially useful if you are looking for the information in the nested objects.
Caution: You will want to ensure you follow security best practices when using credentials within your code or stored in a file.
Reference
This section provides details on all the available operations and the arguments they accept. Brief code snippets demonstrating usage are also included.
Depth
Many of the List or Get operations will accept an optional depth argument. Setting this to a value between 0 and 5 affects the amount of data that is returned. The detail returned varies somewhat depending on the resource being queried, however it generally follows this pattern.
Depth | Description |
---|---|
0 | Only direct properties are included. Children are not included. |
1 | Direct properties and children's references are returned. |
2 | Direct properties and children's properties are returned. |
3 | Direct properties, children's properties, and descendant's references are returned. |
4 | Direct properties, children's properties, and descendant's properties are returned. |
5 | Returns all available properties. |
This SDK sets the Depth=5 by default as that works well in the majority of cases. You may find that setting Depth to a lower or higher value could simplify a later operation by reducing or increasing the data available in the response object.
Data Centers
Virtual Data Centers (VDCs) are the foundation of the ProfitBricks platform. VDCs act as logical containers for all other objects you will be creating, e.g., servers. You can provision as many VDCs as you want. VDCs have their own private network and are logically segmented from each other to create isolation.
List Data Centers
This operation will list all currently provisioned VDCs that your account credentials provide access to.
There are no request arguments that need to be supplied.
Call ListDatacenters
:
ListDatacenters()
Retrieve a Data Center
Use this to retrieve details about a specific VDC.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
dcid | Yes | string | The ID of the data center. |
Pass the arguments to GetDatacenter
:
GetDatacenter(dcid string)
Create a Data Center
Use this operation to create a new VDC. You can create a "simple" VDC by supplying just the required Name and Location arguments. This operation also has the capability of provisioning a "complex" VDC by supplying additional arguments for servers, volumes, LANs, and/or load balancers.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenter | yes | object | A Datacenter object describing the VDC being created. |
Build the Datacenter
resource object:
var obj = Datacenter{
Properties: DatacenterProperties{
Name: "GO SDK Test",
Description: "GO SDK test datacenter",
Location: location,
},
}
Pass the object to CreateDatacenter
:
CreateDatacenter(obj)
Datacenter Resource Object
Name | Required | Type | Description |
---|---|---|---|
Name | yes | string | The name of the VDC. |
Location | yes | string | The physical ProfitBricks location where the VDC will be created. |
Description | no | string | A description for the VDC, e.g. staging, production. |
Servers | no | list | A list of one or more Server objects to be created. |
Volumes | no | list | A list of one or more Volume objects to be created. |
Lans | no | list | A list of one or more LAN objects to be created. |
Loadbalancers | no | list | A list of one or more LoadBalancer objects to be created. |
The following table outlines the locations currently supported:
Value | Country | City |
---|---|---|
us/las | United States | Las Vegas |
us/ewr | United States | Newark |
de/fra | Germany | Frankfurt |
de/fkb | Germany | Karlsruhe |
NOTES:
- The value for
Name
cannot contain the following characters: (@, /, , |, ‘’, ‘). - You cannot change the VDC
Location
once it has been provisioned.
Update a Data Center
After retrieving a VDC, either by ID or as a create response object, you can change its properties by calling the update_datacenter
method. Some arguments may not be changed using update_datacenter
.
The following table describes the available request arguments:
Name | Required | Type | Description |
---|---|---|---|
dcid | yes | string | The ID of the VDC. |
Name | no | string | The new name of the VDC. |
Description | no | string | The new description of the VDC. |
Build the DatacenterProperties
resource object:
var obj = DatacenterProperties{Name: "new Name",Description: "new desc"}
Pass the arguments to PatchDatacenter
:
PatchDatacenter(dcid string, obj DatacenterProperties)
Delete a Data Center
This will remove all objects within the VDC and remove the VDC object itself.
NOTE: This is a highly destructive operation which should be used with extreme caution!
The following table describes the available request arguments:
Name | Required | Type | Description |
---|---|---|---|
dcid | yes | string | The ID of the VDC that you want to delete. |
Pass the argument to DeleteDatacenter
:
DeleteDatacenter(dcid)
Locations
Locations are the physical ProfitBricks data centers where you can provision your VDCs.
List Locations
The ListLocations
operation will return the list of currently available locations.
There are no request arguments to supply.
ListLocations()
Get a Location
Retrieves the attributes of a specific location.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
locationid | yes | string | The ID consisting of country/city. |
Pass the argument to GetLocation
:
GetLocation("us/las")
Get a Regional Location
Retrieves the locations available in a specific region.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
regionid | yes | string | The ID consisting of country/city. |
Pass the argument to GetRegionalLocations
:
GetRegionalLocations("us")
Servers
List Servers
You can retrieve a list of all the servers provisioned inside a specific VDC.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
dcid | yes | string | The ID of the VDC. |
Pass the arguments to ListServers
:
ListServers(dcid)
Retrieve a Server
Returns information about a specific server such as its configuration, provisioning status, etc.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
dcId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
Pass the arguments to GetServer
:
GetServer(dcId, serverId)
Create a Server
Creates a server within an existing VDC. You can configure additional properties such as specifying a boot volume and connecting the server to a LAN.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
server | yes | object | A Server object describing the server being created. |
Build a Server object:
var server = Server{
Properties: ServerProperties{
Name: "GO SDK Test",
Ram: 1024,
Cores: 1,
AvailabilityZone: "ZONE_1",
CpuFamily: "INTEL_XEON",
},
}
Pass the object and other arguments to CreateServer
:
CreateServer(datacenterId, server)
Server Resource Object
Name | Required | Type | Description |
---|---|---|---|
Name | yes | string | The name of the server. |
Cores | yes | int | The total number of cores for the server. |
Ram | yes | int | The amount of memory for the server in MB, e.g. 2048. Size must be specified in multiples of 256 MB with a minimum of 256 MB; however, if you set RamHotPlug to true then you must use a minimum of 1024 MB. |
AvailabilityZone | no | string | The availability zone in which the server should exist. |
CpuFamily | no | string | Sets the CPU type. "AMD_OPTERON" or "INTEL_XEON". Defaults to "AMD_OPTERON". |
BootVolume | no | string | A volume ID that the server will boot from. If not nil then BootCdrom has to be nil. |
BootCdrom | no | string | A CD-ROM image ID used for booting. If not nil then BootVolume has to be nil. |
Cdroms | no | list | A list of existing volume IDs that you want to connect to the server. |
Volumes | no | list | One or more Volume objects that you want to create and attach to the server. |
Nics | no | list | One or more NIC objects that you wish to create at the time the server is provisioned. |
The following table outlines the server availability zones currently supported:
Availability Zone | Comment |
---|---|
AUTO | Automatically Selected Zone |
ZONE_1 | Fire Zone 1 |
ZONE_2 | Fire Zone 2 |
Update a Server
Perform updates to the attributes of a server.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
Name | no | string | The name of the server. |
Cores | no | int | The number of cores for the server. |
Ram | no | int | The amount of memory in the server. |
AvailabilityZone | no | string | The new availability zone for the server. |
CpuFamily | no | string | Sets the CPU type. "AMD_OPTERON" or "INTEL_XEON". Defaults to "AMD_OPTERON". |
BootVolume | no | string | A volume ID used for booting. If not nil then BootCdrom has to be nil. |
BootCdrom | no | string | A CD-ROM image ID used for booting. If not nil then BootVolume has to be nil. |
Build a ServerProperties object:
var server = ServerProperties{
Name: "GO SDK Test RENAME",
}
Pass the arguments to update_server
:
PatchServer(datacenterId, serverId, server)
Delete a Server
This will remove a server from a VDC. NOTE: This will not automatically remove the storage volume(s) attached to a server. A separate operation is required to delete a storage volume.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server that will be deleted. |
Pass the arguments to delete_server
:
DeleteServer(datacenterId, serverId)
List Attached Volumes
Retrieves a list of volumes attached to the server.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
Pass the arguments to ListAttachedVolumes
:
ListAttachedVolumes(datacenterId, serverId)
Attach a Volume
This will attach a pre-existing storage volume to the server.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
volumeId | yes | string | The ID of a storage volume. |
Pass the arguments to AttachVolume
:
AttachVolume(datacenterId, serverId, volumeId)
Retrieve an Attached Volume
This will retrieve the properties of an attached volume.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
volumeId | yes | string | The ID of the attached volume. |
Pass the arguments to get_attached_volume
:
GetAttachedVolume(srv_dc_id, srv_srvid, srv_vol)
Detach a Volume
This will detach the volume from the server. Depending on the volume hot_unplug
settings, this may result in the server being rebooted. If disc_virtio_hot_unplug
has been set to true, then a reboot should not be required.
This will NOT delete the volume from your VDC. You will need to make a separate request to delete a volume.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
volumeId | yes | string | The ID of the attached volume. |
Pass the arguments to detach_volume
:
DetachVolume(datacenterId, serverId, volumeId)
List Attached CD-ROMs
Retrieves a list of CD-ROMs attached to a server.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
Pass the arguments to ListAttachedCdroms
:
ListAttachedCdroms(srv_dc_id, srv_srvid)
Attach a CD-ROM
You can attach a CD-ROM to an existing server.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
cdromId | yes | string | The ID of a CD-ROM. |
Pass the arguments to attach_cdrom
:
AttachCdrom(datacenterId, serverId, cdromId)
Retrieve an Attached CD-ROM
You can retrieve a specific CD-ROM attached to the server.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
cdromId | yes | string | The ID of the attached CD-ROM. |
Pass the arguments to GetAttachedCdrom
:
GetAttachedCdrom(datacenterId, serverId, cdromId)
Detach a CD-ROM
This will detach a CD-ROM from the server.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
cdromId | yes | string | The ID of the attached CD-ROM. |
Pass the arguments to DetachCdrom
:
DetachCdrom(datacenterId, serverId, cdromId)
Reboot a Server
This will force a hard reboot of the server. Do not use this method if you want to gracefully reboot the machine. This is the equivalent of powering off the machine and turning it back on.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
Pass the arguments to RebootServer
:
RebootServer(datacenterId, serverId)
Start a Server
This will start a server. If a DHCP assigned public IP was deallocated when the server was stopped, then a new IP will be assigned.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
Pass the arguments to StartServer
:
StartServer(datacenterId, serverId)
Stop a Server
This will stop a server. The machine will be forcefully powered off, billing will cease, and the public IP, if one is allocated, will be deallocated.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
Pass the arguments to StopServer
:
StopServer(datacenterId, serverId)
Images
List Images
Retrieve a list of images.
Just call the ListImages
:
ListImages()
Get an Image
Retrieves the attributes of a specific image.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
imgId | yes | string | The ID of the image. |
Pass the arguments to GetImage
:
GetImage(imgid)
Volumes
List Volumes
Retrieve a list of volumes within the VDC. If you want to retrieve a list of volumes attached to a server please see the List Attached Volumes entry in the Server section for details.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
Pass the arguments to ListVolumes
:
ListVolumes(datacenterId)
Get a Volume
Retrieves the attributes of a given volume.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
volumeId | yes | string | The ID of the volume. |
Pass the arguments to GetVolume
:
GetVolume(datacenterId, volumeId)
Create a Volume
Creates a volume within the VDC. This will NOT attach the volume to a server. Please see the Attach a Volume entry in the Server section for details on how to attach storage volumes.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenter_id | yes | string | The ID of the VDC. |
volume | yes | object | A Volume object you wish to create. |
Build the Volume
resource object:
var request = Volume{
Properties: VolumeProperties{
Size: 2,
Name: "GO SDK Test",
ImageAlias: "ubuntu:latest",
Bus: "VIRTIO",
SshKeys: []string{"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCoLVLHON4BSK3D8L4H79aFo..."},
Type: "HDD",
ImagePassword: "test1234",
AvailabilityZone: "ZONE_3",
},
}
Pass the object and arguments to CreateVolume
:
CreateVolume(dcID, request)
Volume Resource Object
Name | Required | Type | Description |
---|---|---|---|
Name | no | string | The name of the volume. |
Size | yes | int | The size of the volume in GB. |
Bus | no | string | The bus type of the volume (VIRTIO or IDE). Default: VIRTIO. |
Image | yes | string | The image or snapshot ID. Can be left empty for a data volume, however you'll need to set the licence_type . Default: null |
Type | yes | string | The volume type, HDD or SSD. Default: HDD |
LicenceType | yes | string | The licence type of the volume. Options: LINUX, WINDOWS, WINDOWS2016, UNKNOWN, OTHER. Default: UNKNOWN |
ImagePassword | yes | string | A password to set on the volume for the appropriate root or administrative account. This field may only be set in creation requests. When reading, it always returns null. The password has to contain 8-50 characters. Only these characters are allowed: [abcdefghjkmnpqrstuvxABCDEFGHJKLMNPQRSTUVX23456789] |
ImageAlias | yes | string | An alias to a ProfitBricks public image. Use instead of "image".] |
SshKeys | yes | string | SSH keys to allow access to the volume via SSH. |
AvailabilityZone | no | string | The storage availability zone assigned to the volume. Valid values: AUTO, ZONE_1, ZONE_2, or ZONE_3. This only applies to HDD volumes. Leave blank or set to AUTO when provisioning SSD volumes. |
The following table outlines the various licence types you can define:
Licence Type | Comment |
---|---|
WINDOWS2016 | Use this for the Microsoft Windows Server 2016 operating system. |
WINDOWS | Use this for the Microsoft Windows Server 2008 and 2012 operating systems. |
LINUX | Use this for Linux distributions such as CentOS, Ubuntu, Debian, etc. |
OTHER | Use this for any volumes that do not match one of the other licence types. |
UNKNOWN | This value may be inherited when you've uploaded an image and haven't set the license type. Use one of the options above instead. |
The following table outlines the storage availability zones currently supported:
Availability Zone | Comment |
---|---|
AUTO | Automatically Selected Zone |
ZONE_1 | Fire Zone 1 |
ZONE_2 | Fire Zone 2 |
ZONE_3 | Fire Zone 3 |
Note: You will need to provide either the Image
or the LicenceType
arguments when creating a volume. A LicenceType
is required, but if Image
is supplied, it is already set and cannot be changed. Either the ImagePassword
or SshKeys
arguments need to be supplied when creating a volume using one of the official ProfitBricks images. Only official ProfitBricks provided images support the SshKeys
and ImagePassword
arguments.
Update a Volume
You can update various attributes of an existing volume; however, some restrictions are in place:
You can increase the size of an existing storage volume. You cannot reduce the size of an existing storage volume. The volume size will be increased without requiring a reboot if the relevant hot plug settings (disc_virtio_hot_plug
, disc_virtio_hot_unplug
, etc.) have been set to true. The additional capacity is not added automatically added to any partition, therefore you will need to handle that inside the OS afterwards. Once you have increased the volume size you cannot decrease the volume size.
Since an existing volume is being modified, none of the request arguments are specifically required as long as the changes being made satisfy the requirements for creating a volume.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
volumeId | yes | string | The ID of the volume. |
Name | no | string | The name of the volume. |
Size | no | int | The size of the volume in GB. You may only increase the size when updating. |
Bus | no | string | The bus type of the volume (VIRTIO or IDE). Default: VIRTIO. |
LicenceType | no | string | The licence type of the volume. Options: LINUX, WINDOWS, WINDOWS2016, UNKNOWN, OTHER. You may get an error trying to update LicenceType depending on the Image that was used to create the volume. For example, you cannot update the LicenceType for a volume created from a ProfitBricks supplied OS image. |
Note: Trying to change the Image
, Type
, or AvailabilityZone
in an update request will result in an error.
Pass the arguments to PatchVolume
:
var obj := VolumeProperties{
Name: "GO SDK Test - RENAME",
Size: 5,
}
PatchVolume(datacenterId, volumeId, obj)
Delete a Volume
Deletes the specified volume. This will result in the volume being removed from your data center. Use this with caution.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
volumeId | yes | string | The ID of the volume. |
Pass the arguments to DeleteVolume
:
DeleteVolume(datacenterId, volumeId)
Create a Volume Snapshot
Creates a snapshot of a volume within the VDC. You can use a snapshot to create a new storage volume or to restore a storage volume.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
volumeId | yes | string | The ID of the volume. |
Name | no | string | The name of the snapshot. |
Description | no | string | The description of the snapshot. |
Pass the arguments to CreateSnapshot
:
CreateSnapshot(datacenterId, volumeId, Name,Description)
Restore a Volume Snapshot
This will restore a snapshot onto a volume. A snapshot is created as just another image that can be used to create new volumes or to restore an existing volume.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
volumeId | yes | string | The ID of the volume. |
snapshotId | yes | string | The ID of the snapshot. |
Pass the arguments to restore_snapshot
:
RestoreSnapshot(datacenterId, volumeId, snapshotId)
Snapshots
List Snapshots
Call the ListSnapshots
:
ListSnapshots()
Get a Snapshot
Retrieves the attributes of a specific snapshot.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
snapshotId | yes | string | The ID of the snapshot. |
Pass the arguments to GetSnapshot
:
GetSnapshot(snapshotId)
Update a Snapshot
Perform updates to attributes of a snapshot.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
snapshotId | yes | string | The ID of the snapshot. |
Name | no | string | The name of the snapshot. |
Description | no | string | The description of the snapshot. |
LicenceType | no | string | The snapshot's licence type: LINUX, WINDOWS, WINDOWS2016, or OTHER. |
CpuHotPlug | no | bool | This volume is capable of CPU hot plug (no reboot required) |
CpuHotUnplug | no | bool | This volume is capable of CPU hot unplug (no reboot required) |
RamHotPlug | no | bool | This volume is capable of memory hot plug (no reboot required) |
RamHotUnplug | no | bool | This volume is capable of memory hot unplug (no reboot required) |
NicHotPlug | no | bool | This volume is capable of NIC hot plug (no reboot required) |
NicHotUnplug | no | bool | This volume is capable of NIC hot unplug (no reboot required) |
DiscVirtioHotPlug | no | bool | This volume is capable of VirtIO drive hot plug (no reboot required) |
DiscVirtioHotUnplug | no | bool | This volume is capable of VirtIO drive hot unplug (no reboot required) |
DiscScsiHotPlug | no | bool | This volume is capable of SCSI drive hot plug (no reboot required) |
DiscScsiHotUnplug | no | bool | This volume is capable of SCSI drive hot unplug (no reboot required) |
Pass the arguments to UpdateSnapshot
:
UpdateSnapshot(snapshotId, SnapshotProperties{Name: newValue})
Delete a Snapshot
Deletes the specified snapshot.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
snapshotId | yes | string | The ID of the snapshot. |
Pass the arguments to DeleteSnapshot
:
DeleteSnapshot(snapshotId)
IP Blocks
The IP block operations assist with managing reserved /static public IP addresses.
List IP Blocks
Retrieve a list of available IP blocks.
ListIpBlocks()
Get an IP Block
Retrieves the attributes of a specific IP block.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
ipblock_id | yes | string | The ID of the IP block. |
Pass the arguments to get_ipblock
:
response = client.get_ipblock('UUID')
Create an IP Block
Creates an IP block. Creating an IP block is a bit different than some of the other available create operations. IP blocks are not attached to a particular VDC, but rather to a location. Therefore, you must specify a valid location
along with a size
argument indicating the number of IP addresses you want to reserve in the IP block. Any resources using an IP address from an IP block must be in the same location
.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenter_id | yes | string | The ID of the VDC. |
ipblock | yes | object | An IPBlock object you wish to create. |
To create an IP block, define the IPBlock
resource object:
var ipblock = IpBlock{
Properties: IpBlockProperties{
Name: "GO SDK Test",
Size: 2,
Location: location,
},
}
Pass it to ReserveIpBlock
:
ReserveIpBlock(ipblock)
IPBlock Resource Object
Name | Required | Type | Description |
---|---|---|---|
Location | yes | string | This must be one of the available locations: us/las, us/ewr, de/fra, de/fkb. |
Size | yes | int | The size of the IP block you want. |
Name | no | string | A descriptive name for the IP block |
The following table outlines the locations currently supported:
Value | Country | City |
---|---|---|
us/las | United States | Las Vegas |
us/ewr | United States | Newark |
de/fra | Germany | Frankfurt |
de/fkb | Germany | Karlsruhe |
Delete an IP Block
Deletes the specified IP Block.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
ipblkid | yes | string | The ID of the IP block. |
Pass the arguments to ReleaseIpBlock
:
ReleaseIpBlock(ipblkid)
LANs
List LANs
Retrieve a list of LANs within the VDC.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterd | yes | string | The ID of the VDC. |
Pass the arguments to ListLans
:
ListLans(datacenterd)
Create a LAN
Creates a LAN within a VDC.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
lan | yes | object | A LAN object describing the LAN to create. |
Create the LAN
resource object:
var request = CreateLanRequest{
Properties: CreateLanProperties{
Public: true,
Name: "GO SDK Test with failover",
},
Entities: &LanEntities{
Nics: lanNics,
},
}
Pass the object and arguments to create_lan
:
CreateLan(datacenterId, request)
LAN Resource Object
Name | Required | Type | Description |
---|---|---|---|
Name | no | string | The name of your LAN. |
Public | Yes | bool | Boolean indicating if the LAN faces the public Internet or not. |
Nics | no | list | One or more NIC IDs attached to the LAN. |
Get a LAN
Retrieves the attributes of a given LAN.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
lanId | yes | int | The ID of the LAN. |
Pass the arguments to GetLan
:
GetLan(datacenterId, lanId)
Update a LAN
Perform updates to attributes of a LAN.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
lanId | yes | int | The ID of the LAN. |
Name | no | string | A descriptive name for the LAN. |
Public | no | bool | Boolean indicating if the LAN faces the public Internet or not. |
IpFailover | no | array | A list of IP fail-over dicts. |
Pass the arguments to update_lan
:
var obj = LanProperties{
Properties: LanProperties{
Public: true,
Name: "GO SDK Test with failover",
}
PatchLan(datacenterId, lanId, obj)
Delete a LAN
Deletes the specified LAN.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
lanId | yes | string | The ID of the LAN. |
Pass the arguments to delete_lan
:
DeleteLan(lan_dcid, lanid)
Network Interfaces (NICs)
List NICs
Retrieve a list of LANs within the VDC.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
Pass the arguments to ListNics
:
ListNics(datacenterId, serverId)
Get a NIC
Retrieves the attributes of a given NIC.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
nicId | yes | string | The ID of the NIC. |
Pass the arguments to GetNic
:
GetNic(datacenterId, serverId, nicId)
Create a NIC
Adds a NIC to the target server.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
nic | yes | object | A NIC object describing the NIC to be created. |
Create the NIC
resource object:
var nic = Nic{
Properties: &NicProperties{
Lan: 1,
Name: "GO SDK Test",
Nat: false,
Dhcp: true,
FirewallActive: true,
Ips: []string{"10.0.0.1"},
},
}
Pass the object and arguments to create_nic
:
CreateNic(datacenterId, serverId, nic)
NIC Resource Object
Name | Required | Type | Description |
---|---|---|---|
Name | no | string | The name of the NIC. |
Ips | no | list | IP addresses assigned to the NIC. |
Dhcp | no | bool | Set to false if you wish to disable DHCP on the NIC. Default: true. |
Lan | yes | int | The LAN ID the NIC will sit on. If the LAN ID does not exist it will be created. |
Nat | no | bool | Indicates the private IP address has outbound access to the public internet. |
FirewallActive | no | bool | Set this to true to enable the ProfitBricks firewall, false to disable. |
Firewallrules | no | list | A list of FirewallRule objects to be created with the NIC. |
Update a NIC
You can update -- in full or partially -- various attributes on the NIC; however, some restrictions are in place:
The primary address of a NIC connected to a load balancer can only be changed by changing the IP of the load balancer. You can also add additional reserved, public IPs to the NIC.
The user can specify and assign private IPs manually. Valid IP addresses for private networks are 10.0.0.0/8, 172.16.0.0/12 or 192.168.0.0/16.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
nicId | yes | string | The ID of the NIC. |
Name | no | string | The name of the NIC. |
Ips | no | list | IPs assigned to the NIC represented as a list of strings. |
Dhcp | no | bool | Boolean value that indicates if the NIC is using DHCP or not. |
Lan | no | int | The LAN ID the NIC sits on. |
Nat | no | bool | Indicates the private IP address has outbound access to the public internet. |
FirewallActive | no | bool | Set this to true to enable the ProfitBricks firewall, false to disable. |
Pass the arguments to update_nic
:
var obj = NicProperties{Name: "GO SDK Test - RENAME", Lan: 1}
PatchNic(nic_dcid, nic_srvid, nicid, obj)
Delete a NIC
Deletes the specified NIC.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
nicId | yes | string | The ID of the NIC. |
Pass the arguments to DeleteNic
:
DeleteNic(nic_dcid, nic_srvid, nicid)
Firewall Rules
List Firewall Rules
Retrieves a list of firewall rules associated with a particular NIC.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
nicId | yes | string | The ID of the NIC. |
Pass the arguments to ListFirewallRules
:
ListFirewallRules(datacenterId, serverId, nicId)
Get a Firewall Rule
Retrieves the attributes of a given firewall rule.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
nicId | yes | string | The ID of the NIC. |
firewallRuleId | yes | string | The ID of the firewall rule. |
Pass the arguments to get_firewall_rule
:
GetFirewallRule(datacenterId, serverId, nicId, firewallRuleId)
Create a Firewall Rule
This will add a firewall rule to the NIC.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
nicId | yes | string | The ID of the NIC. |
firewallRule | yes | object | A FirewallRule object describing the firewall rule to be created. |
Create the FirewallRule
resource object:
var firewallRule FirewallRule{
Properties: FirewallruleProperties{
Name: "SSH",
Protocol: "TCP",
SourceMac: "01:23:45:67:89:00",
PortRangeStart: 22,
PortRangeEnd: 22,
},
}
Pass the object and arguments to create_firewall_rule
:
CreateFirewallRule(datacenterId, serverId, nicId, firewallRule)
Firewall Rule Resource Object
Name | Required | Type | Description |
---|---|---|---|
Name | no | string | The name of the firewall rule. |
Protocol | yes | string | The protocol for the rule: TCP, UDP, ICMP, ANY. |
SourceMac | no | string | Only traffic originating from the respective MAC address is allowed. Valid format: aa:bb:cc:dd:ee:ff. A nil value allows all source MAC address. |
SourceIp | no | string | Only traffic originating from the respective IPv4 address is allowed. A nil value allows all source IPs. |
TargetIp | no | string | In case the target NIC has multiple IP addresses, only traffic directed to the respective IP address of the NIC is allowed. A nil value allows all target IPs. |
PortRangeStart | no | string | Defines the start range of the allowed port (from 1 to 65534) if protocol TCP or UDP is chosen. Leave PortRangeStart and PortRangeEnd value as nil to allow all ports. |
PortRangeEnd | no | string | Defines the end range of the allowed port (from 1 to 65534) if the protocol TCP or UDP is chosen. Leave PortRangeStart and PortRangeEnd value as nil to allow all ports. |
IcmpType | no | string | Defines the allowed type (from 0 to 254) if the protocol ICMP is chosen. A nil value allows all types. |
IcmpCode | no | string | Defines the allowed code (from 0 to 254) if protocol ICMP is chosen. A nil value allows all codes. |
Update a Firewall Rule
Perform updates to an existing firewall rule. You will notice that some arguments, such as protocol
cannot be updated. If the protocol
needs to be changed, you can delete the firewall rule and then create new one to replace it.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
nicId | yes | string | The ID of the NIC. |
firewallRuleId | yes | string | The ID of the firewall rule. |
Name | no | string | The name of the firewall rule. |
SourceMac | no | string | Only traffic originating from the respective MAC address is allowed. Valid format: aa:bb:cc:dd:ee:ff. A nil value allows all source MAC address. |
SourceIp | no | string | Only traffic originating from the respective IPv4 address is allowed. A nil value allows all source IPs. |
TargetIp | no | string | In case the target NIC has multiple IP addresses, only traffic directed to the respective IP address of the NIC is allowed. A nil value allows all target IPs. |
PortRangeStart | no | string | Defines the start range of the allowed port (from 1 to 65534) if protocol TCP or UDP is chosen. Leave PortRangeStart and PortRangeEnd value as nil to allow all ports. |
PortRangeEnd | no | string | Defines the end range of the allowed port (from 1 to 65534) if the protocol TCP or UDP is chosen. Leave PortRangeStart and PortRangeEnd value as nil to allow all ports. |
IcmpType | no | string | Defines the allowed type (from 0 to 254) if the protocol ICMP is chosen. A nil value allows all types. |
IcmpCode | no | string | Defines the allowed code (from 0 to 254) if protocol ICMP is chosen. A nil value allows all codes. |
Pass the arguments to PatchFirewallRule
:
props := FirewallruleProperties{
Name: "SSH - RENAME",
}
PatchFirewallRule(dcID, srv_srvid, nicid, fwId, props)
Delete a Firewall Rule
Removes a firewall rule.
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
serverId | yes | string | The ID of the server. |
nicId | yes | string | The ID of the NIC. |
firewallRuleId | yes | string | The ID of the firewall rule. |
Pass the arguments to DeleteFirewallRule
:
DeleteFirewallRule(dcID, srv_srvid, nicid, fwId)
Load Balancers
List Load Balancers
Retrieve a list of load balancers within the data center.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
Pass the arguments to ListLoadbalancers
:
ListLoadbalancers(datacenterId)
Get a Load Balancer
Retrieves the attributes of a given load balancer.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
loadbalancerId | yes | string | The ID of the load balancer. |
Pass the arguments to GetLoadbalancer
:
GetLoadbalancer(datacenterId, loadbalancerId)
Create a Load Balancer
Creates a load balancer within the VDC. Load balancers can be used for public or private IP traffic.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
loadbalancer | yes | object | A LoadBalancer object describing the load balancer to be created. |
Create the LoadBalancer
resource object:
var loadbalancer = Loadbalancer{
Properties: LoadbalancerProperties{
Name: "GO SDK Test",
Ip: "10.0.0.1",
Dhcp: true,
}
}
Pass the object and arguments to CreateLoadbalancer
:
CreateLoadbalancer(datacenterId, loadbalancer)
Load Balancer Resource Object
Name | Required | Type | Description |
---|---|---|---|
Name | yes | string | The name of the load balancer. |
Ip | no | string | IPv4 address of the load balancer. All attached NICs will inherit this IP. |
Dhcp | no | bool | Indicates if the load balancer will reserve an IP using DHCP. |
Balancednics | no | list | List of NIC IDs taking part in load-balancing. All balanced NICs inherit the IP of the load balancer. |
Update a Load Balancer
Perform updates to attributes of a load balancer.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
loadbalancerId | yes | string | The ID of the load balancer. |
Name | no | string | The name of the load balancer. |
Ip | no | string | The IP of the load balancer. |
Dhcp | no | bool | Indicates if the load balancer will reserve an IP using DHCP. |
Pass the arguments to PatchLoadbalancer
:
var obj = LoadbalancerProperties{Name: "GO SDK Test - RENAME"}
PatchLoadbalancer(datacenterId, loadbalancerId, obj)
Delete a Load Balancer
Deletes the specified load balancer.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
loadbalancerId | yes | string | The ID of the load balancer. |
Pass the arguments to DeleteLoadbalancer
:
DeleteLoadbalancer(datacenterId, loadbalancerId)
List Load Balanced NICs
This will retrieve a list of NICs associated with the load balancer.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
loadbalancerId | yes | string | The ID of the load balancer. |
Pass the arguments to ListBalancedNics
:
ListBalancedNics(datacenterId, loadbalancerId)
Get a Load Balanced NIC
Retrieves the attributes of a given load balanced NIC.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
loadbalancerId | yes | string | The ID of the load balancer. |
nicId | yes | string | The ID of the NIC. |
Pass the arguments to GetBalancedNic
:
GetBalancedNic(datacenterId, loadbalancerId, nicId)
Associate NIC to a Load Balancer
This will associate a NIC to a load balancer, enabling the NIC to participate in load-balancing.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
loadbalancerId | yes | string | The ID of the load balancer. |
nicId | yes | string | The ID of the NIC. |
Pass the arguments to add_loadbalanced_nics
:
AssociateNic(datacenterId, loadbalancerId, nicId)
Remove a NIC Association
Removes the association of a NIC with a load balancer.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
datacenterId | yes | string | The ID of the VDC. |
loadbalancerId | yes | string | The ID of the load balancer. |
nicId | yes | string | The ID of the NIC you are removing from the load balancer. |
Pass the arguments to DeleteBalancedNic
:
DeleteBalancedNic(datacenterId, loadbalancerId, nicId)
Requests
Each call to the ProfitBricks Cloud API is assigned a request ID. These operations can be used to get information about the requests that have been submitted and their current status.
List Requests
ListRequests()
Get a Request
Retrieves the attributes of a specific request. This operation shares the same get_request
method used for getting request status, however the response it determined by the boolean value you pass for status. To get details about the request itself, you want to pass a status of False.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
request_id | yes | string | The ID of the request. |
status | yes | bool | Set to False to have the request details returned. |
Pass the arguments to get_request
:
response = client.get_request(
request_id='UUID',
status=False)
Get a Request Status
Retrieves the status of a request. This operation shares the same get_request
method used for getting the details of a request, however the response it determined by the boolean value you pass for status. To get the request status, you want to pass a status of True.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
path | yes | string | The ID of the request. Retrieved from response header location |
Pass the arguments to get_request
:
GetRequestStatus(path)
Contract Resources
List Contract Resources
Returns information about the resource limits for a particular contract and the current resource usage.
GetContractResources()
Users Management
These operations are designed to allow you to orchestrate users and resources via the Cloud API. Previously this functionality required use of the DCD (Data Center Designer) web application.
List Groups
This retrieves a full list of all groups.
ListGroups()
Retrieve a Group
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
groupId | Yes | string | The ID of the specific group to retrieve. |
GetGroup(groupid)
Create a Group
The following table describes the request arguments:
Name | Type | Description | Required |
---|---|---|---|
group | Group | See Group Object | Yes |
Build the Group
resource object:
var group = Group{
Properties: GroupProperties{
Name: "GO SDK Test",
CreateDataCenter: &TRUE,
CreateSnapshot: &TRUE,
ReserveIp: &TRUE,
AccessActivityLog: &TRUE,
},
}
Pass the object to CreateGroup
:
CreateGroup(group Group)
Group Resource Object
Name | Required | Type | Description |
---|---|---|---|
Name | yes | string | A name that was given to the group. |
CreateDataCenter | no | bool | The group has permission to create virtual data centers. |
CreateSnapshot | no | bool | The group has permission to create snapshots. |
ReserveIp | no | bool | The group has permission to reserve IP addresses. |
AccessActivityLog | no | bool | The group has permission to access the activity log. |
Update a Group
Use this operation to update a group.
The following table describes the request arguments:
Name | Type | Description | Required |
---|---|---|---|
groupId | yes | string | The ID of the specific group to retrieve. |
group | Group | See Group Object | Yes |
UpdateGroup(groupId, group Group)
Delete a Group
This will remove all objects within the data center and remove the data center object itself. Use this operation to delete a single group. Resources that are assigned to the group are NOT deleted, but are no longer accessible to the group members unless the member is a Contract Owner, Admin, or Resource Owner.
The following table describes the request arguments:
Name | Type | Description | Required |
---|---|---|---|
groupId | yes | string | The ID of the specific group to retrieve. |
DeleteGroup(groupId)
List Shares
Retrieves a full list of all the resources that are shared through this group and lists the permissions granted to the group members for each shared resource.
ListShares()
Retrieve a Share
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
groupid | yes | string | The ID of the specific group to retrieve. |
resourceId | yes | string | The ID of the specific resource to retrieve. |
GetShare(groupid, resourceId)
Add a Share
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
groupid | yes | string | The ID of the specific group to add a resource too. |
resourceId | yes | string | The ID of the specific resource to add. |
share | yes | Share | See Share Object |
Build the Share
resource object:
var share = Share{
Properties: ShareProperties{
SharePrivilege: true,
EditPrivilege: true,
},
}
Pass the object to AddShare
:
AddShare(share Share, groupid, resourceId)
Share Resource Object
Name | Required | Type | Description |
---|---|---|---|
EditPrivilege | no | bool | The group has permission to edit privileges on this resource. |
SharePrivilege | no | bool | The group has permission to share this resource. |
Update a Share
Use this to update the permissions that a group has for a specific resource share.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
groupid | yes | string | The ID of the specific group to add a resource too. |
resourceId | yes | string | The ID of the specific resource to add. |
share | yes | Share | See Share Object |
UpdateShare(groupid, resourceId, obj)
Delete a Share
This will remove all objects within the data center and remove the data center object itself. Use this operation to delete a single group. Resources that are assigned to the group are NOT deleted, but are no longer accessible to the group members unless the member is a Contract Owner, Admin, or Resource Owner.
The following table describes the request arguments:
Name | Type | Description | Required |
---|---|---|---|
groupid | yes | string | The ID of the specific group containing the resource to delete. |
resourceId | yes | string | The ID of the specific resource to delete. |
DeleteShare(groupid, resourceId)
List Users in a Group
Retrieves a full list of all the users that are members of a particular group.
The following table describes the request arguments:
Name | Type | Description | Required |
---|---|---|---|
groupid | yes | string | The ID of the specific group to retrieve a user list for. |
ListGroupUsers(groupid)
Add User to Group
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
groupid | yes | string | The ID of the specific group you want to add a user to. |
userid | yes | string | The ID of the specific user to add to the group. |
AddUserToGroup(groupid, userid)
Remove User from a Group
Use this operation to remove a user from a group.
The following table describes the request arguments:
Name | Type | Description | Required |
---|---|---|---|
groupid | yes | string | The ID of the specific group you want to remove a user from. |
userid | yes | string | The ID of the specific user to remove from the group. |
DeleteUserFromGroup(groupid, userid)
List Users
Retrieve a list of all the users that have been created under a contract.
ListUsers()
Retrieve a User
Retrieve details about a specific user including what groups and resources the user is associated with.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
userid | yes | string | The ID of the specific user to retrieve information about. |
GetUser(userid)
Create a User
Creates a new user under a particular contract.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
user | yes | User | See User Object |
Build the User
resource object:
var user = User{
Properties: &UserProperties{
Firstname: "John",
Lastname: "Doe",
Email: email,
Password: "abc123-321CBA",
Administrator: false,
ForceSecAuth: false,
SecAuthActive: false,
},
}
Pass the object to CreateUser
:
CreateUser(user User)
User Resource Object
Name | Required | Type | Description |
---|---|---|---|
Firstname | yes | bool | The first name of the user. |
Lastname | yes | bool | The last name of the user. |
yes | bool | The e-mail address of the user. | |
Password | yes | bool | A password for the user. |
Administrator | no | bool | Indicates if the user has administrative rights. |
ForceSecAuth | no | bool | Indicates if secure (two-factor) authentication was enabled for the user. |
SecAuthActive | no | bool | Indicates if secure (two-factor) authentication is enabled for the user. |
Update a User
Update details about a specific user including their privileges.
The following table describes the request arguments:
Name | Required | Type | Description |
---|---|---|---|
userid | Yes | string | The ID of the specific user to update. |
user := UserProperties{
Firstname: "go sdk ",
Lastname: newName,
Email: "test@go.com",
Password: "abc123-321CBA",
Administrator: false,
ForceSecAuth: false,
SecAuthActive: false,
}
UpdateUser(userid, user)
Delete a User
Blacklists the user, disabling them. The user is not completely purged, therefore if you anticipate needing to create a user with the same name in the future, we suggest renaming the user before you delete it.
The following table describes the request arguments:
Name | Type | Description | Required |
---|---|---|---|
userid | Yes | string | The ID of the specific user to update. |
DeleteUser(userid)
List Resources
Retrieves a list of all resources and optionally their group associations.
Note: This API call can take a significant amount of time to return when there are a large number of provisioned resources. You may wish to consult the next section on how to list resources of a particular type.
ListResources()
List All Resources of a Type
Lists all shareable resources of a specific type. Optionally include their association with groups, permissions that a group has for the resource, and users that are members of the group. Because you are scoping your request to a specific resource type, this API will likely return faster than querying /um/resources
.
The following table describes the request arguments:
Name | Type | Description | Required |
---|---|---|---|
resourcetype | Yes | string | The specific type of resources to retrieve information about. |
The values available for resourcetype are listed in this table:
Resource Type | Description |
---|---|
datacenter | A virtual data center. |
image | A private image that has been uploaded to ProfitBricks. |
snapshot | A snapshot of a storage volume. |
ipblock | An IP block that has been reserved. |
ListResourcesByType(resourcetype)
List a specific Resource Type
The following table describes the request arguments:
Name | Type | Description | Required |
---|---|---|---|
resourcetype | Yes | string | The specific type of resources to retrieve information about. |
resourceId | Yes | string | The ID of the specific resource to retrieve information about. |
The values available for resourcetype are listed in this table:
Resource Type | Description |
---|---|
datacenter | A virtual data center. |
image | A private image that has been uploaded to ProfitBricks. |
snapshot | A snapshot of a storage volume. |
ipblock | An IP block that has been reserved. |
GetResourceByType(resourcetype, resourceId)
Example
package main
import (
"fmt"
"time"
"github.com/profitbricks/profitbricks-sdk-go"
)
func main() {
//Sets username and password
profitbricks.SetAuth("username", "password")
//Sets depth.
profitbricks.SetDepth("5")
dcrequest := profitbricks.Datacenter{
Properties: profitbricks.DatacenterProperties{
Name: "example.go3",
Description: "description",
Location: "us/lasdev",
},
}
datacenter := profitbricks.CreateDatacenter(dcrequest)
serverrequest := profitbricks.Server{
Properties: profitbricks.ServerProperties{
Name: "go01",
Ram: 1024,
Cores: 2,
},
}
server := profitbricks.CreateServer(datacenter.Id, serverrequest)
volumerequest := profitbricks.Volume{
Properties: profitbricks.VolumeProperties{
Size: 1,
Name: "Volume Test",
LicenceType: "LINUX",
Type: "HDD",
},
}
storage := profitbricks.CreateVolume(datacenter.Id, volumerequest)
serverupdaterequest := profitbricks.ServerProperties{
Name: "go01renamed",
Cores: 1,
Ram: 256,
}
profitbricks.PatchServer(datacenter.Id, server.Id, serverupdaterequest)
//It takes a moment for a volume to be provisioned so we wait.
time.Sleep(60 * time.Second)
profitbricks.AttachVolume(datacenter.Id, server.Id, storage.Id)
volumes := profitbricks.ListVolumes(datacenter.Id)
fmt.Println(volumes.Items)
servers := profitbricks.ListServers(datacenter.Id)
fmt.Println(servers.Items)
datacenters := profitbricks.ListDatacenters()
fmt.Println(datacenters.Items)
profitbricks.DeleteServer(datacenter.Id, server.Id)
profitbricks.DeleteDatacenter(datacenter.Id)
}
Support
You are welcome to contact us with questions or comments at ProfitBricks DevOps Central. Please report any issues via GitHub's issue tracker.
Testing
You can run all test by using the command go test -timeout=120m
or run a single test by specifying the name of the test file go test servers_test.go
Contributing
- Fork it ( https://github.com/profitbricks/profitbricks-sdk-go/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request