CLOUD API (6.0)

Download OpenAPI specification:Download

Note:

Starting from March 15, 2024, authorization via Basic Auth will be discontinued for users with 2-Factor Authentication enabled.

For users:

  • With 2-Factor Authentication disabled for their accounts, we recommend users to enable 2-FA to improve security.
  • With 2-Factor Authentication enabled for their accounts, we recommend requesting token authorization through the Token Manager in the Data Center Designer (DCD). The Token Manager allows users to create, list, and delete tokens based on the defined Time To Live (TTL). This transition ensures a secure and hassle-free authorization process for enhanced account security.
  • IONOS' APIs and SDKs support users to authenticate using Basic Authentication which will be available until the end of this year.

For the Token management APIs, if you have:

  • 2-Factor Authentication enabled, then you are no longer allowed to create or delete tokens using this API. You can use the Token Manager in the Data Center Designer (DCD) to create or delete tokens.
IONOS Enterprise-grade Infrastructure as a Service (IaaS) solutions can be managed through the Cloud API, in addition or as an alternative to the "Data Center Designer" (DCD) browser-based tool.

Both methods employ consistent concepts and features, deliver similar power and flexibility, and can be used to perform a multitude of management tasks, including adding servers, volumes, configuring networks, and so on.

/

Get API information

Retrieves the API information such as API version.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Data centers

List your data centers

List the data centers for your account. Default limit is the first 100 items; use pagination query parameters for listing more items.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Data Center

Creates new data centers, and data centers that already contain elements, such as servers and storage volumes.

Virtual data centers are the foundation of the platform; they act as logical containers for all other objects you create, such as servers and storage volumes. You can provision as many data centers as needed. Data centers have their own private networks and are logically segmented from each other to create isolation.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The data center to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (DatacenterProperties)
object (DataCenterEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "datacenter",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "datacenter",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Retrieve data centers

Retrieve data centers by resource ID. This value is in the response body when the data center is created, and in the list of the data centers, returned by GET.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "datacenter",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Modify a Data Center by ID

Modifies the properties of the specified data center, rename it, or change the description.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified data center.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (DatacenterProperties)
object (DataCenterEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "datacenter",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "datacenter",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Delete data centers

Delete the specified data center and all the elements it contains. This method is destructive and should be used carefully.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify a Data Center by ID

Updates the properties of the specified data center, rename it, or change the description.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The properties of the data center to be updated.

name
string

The name of the resource.

description
string

A description for the datacenter, such as staging, production.

location
required
string

The physical location where the datacenter will be created. This will be where all of your servers live. Property cannot be modified after datacenter creation (disallowed in update requests).

secAuthProtection
boolean

Boolean value representing if the data center requires extra protection, such as two-step verification.

Responses

Request samples

Content type
application/json
{
  • "name": "My resource",
  • "description": "My Production Datacenter",
  • "location": "us/las",
  • "secAuthProtection": true
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "datacenter",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Locations

Get Locations

Retrieves the available physical locations where you can deploy cloud resources in a VDC.

A location is identified by a combination of the following characters:

  • a two-character regionId, which represents a country (example: 'de')

  • a three-character locationId, which represents a city. The 'locationId' is typically based on the IATA code of the city's airport (example: 'txl').

Note that 'locations' are read-only and cannot be changed.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "items": [
    ]
}

Get Locations within a Region

Retrieves the available locations in a region specified by its ID. The 'regionId' consists of the two character identifier of the region (country), e.g., 'de'.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
regionId
required
string

The unique ID of the region.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "items": [
    ]
}

Get Location by ID

Retrieves the information about the location specified by its ID. The 'locationId' consists of the three-digit identifier of the city according to the IATA code.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
regionId
required
string

The unique ID of the region.

locationId
required
string

The unique ID of the location.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "location",
  • "metadata": {
    },
  • "properties": {
    }
}

Servers

List servers

List all servers within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Server

Creates a server within the specified data center. You can also use this request to configure the boot volumes and connect to existing LANs at the same time.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The server to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (ServerProperties)
object (ServerEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "server",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "server",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Retrieve servers by ID

Retrieve information about the specified server within the data center, such as its configuration, provisioning status, and so on.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "server",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Modify a Server by ID

Modifies the properties of the specified server within the data center.

Starting with v5, the 'allowReboot' attribute is retired; while previously required for changing certain server properties, this behavior is now implicit, and the backend will perform this automatically. For example, in earlier versions, when the CPU family is changed, 'allowReboot' had to be set to 'true'; this is no longer required, the reboot will be performed automatically.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified server

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (ServerProperties)
object (ServerEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "server",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "server",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Delete servers

Delete the specified server in your data center. The attached storage volumes will also be removed if the query parameter is set to true otherwise a separate API call must be made for these actions.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

deleteVolumes
boolean

If true, all attached storage volumes will also be deleted.

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify servers

Update the properties of the specified server within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The properties of the server to be updated.

templateUuid
string

The ID of the template for creating a CUBE server; the available templates for CUBE servers can be found on the templates resource.

name
string

The name of the resource.

cores
integer <int32>

The total number of cores for the enterprise server.

ram
integer <int32>

The memory size for the enterprise server in MB, such as 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. If you set the RAM size more than 240GB, then ramHotPlug will be set to FALSE and can not be set to TRUE unless RAM size not set to less than 240GB.

availabilityZone
string
Enum: "AUTO" "ZONE_1" "ZONE_2"

The availability zone in which the server should be provisioned.

object (ResourceReference)
object (ResourceReference)
cpuFamily
string

CPU architecture on which server gets provisioned; not all CPU architectures are available in all datacenter regions; available CPU architectures can be retrieved from the datacenter resource; must not be provided for CUBE and VCPU servers.

type
string

Server type: CUBE, ENTERPRISE or VCPU.

Responses

Request samples

Content type
application/json
{
  • "templateUuid": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "name": "My resource",
  • "cores": 4,
  • "ram": 4096,
  • "availabilityZone": "AUTO",
  • "bootCdrom": {
    },
  • "bootVolume": {
    },
  • "cpuFamily": "AMD_OPTERON",
  • "type": "CUBE"
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "server",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Get Attached Volumes

Lists all volumes attached to the specified server.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Attach a Volume to a Server

Attachs an existing storage volume to the specified server.

You can attach an existing volume in the VDC to a server. To move a volume from one server to another, you must first detach the volume from the first server and attach it to the second server.

It is also possible to create and attach a volume in one step by simply providing a new volume description as a payload. The only difference is the URL; see 'Creating a Volume' for details about volumes.

Note that the combined total of attached volumes and NICs cannot exceed 24 per server.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The volume to be attached (or created and attached).

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (VolumeProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "volume",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "volume",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Get Attached Volume by ID

Retrieves the properties of the volume attached to the specified server.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

volumeId
required
string

The unique ID of the volume.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "volume",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Detach a Volume by ID

Detachs the specified volume from the server.

Note that only the volume's connection to the specified server is disconnected. If you want to delete the volume, you must submit a separate request to perform the deletion.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

volumeId
required
string

The unique ID of the volume.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Get Attached CD-ROMs

Lists all CD-ROMs attached to the specified server.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Attach a CD-ROM

Attachs a CD-ROM to an existing server specified by its ID.

CD-ROMs cannot be created stand-alone like volumes. They are either attached to a server or do not exist. They always have an ISO-Image associated; empty CD-ROMs can not be provisioned. It is possible to attach up to two CD-ROMs to the same server.

Note that attaching a CD-ROM leads to a reset of the server.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The CD-ROM to be attached.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (ImageProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "image",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "image",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Get Attached CD-ROM by ID

Retrieves the properties of the CD-ROM attached to the specified server.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

cdromId
required
string

The unique ID of the CD-ROM.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "image",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Detach a CD-ROM by ID

Detachs the specified CD-ROM from the server.

Detaching a CD-ROM deletes the CD-ROM. The image will not be deleted.

Note that detaching a CD-ROM leads to a reset of the server.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

cdromId
required
string

The unique ID of the CD-ROM.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Reboot servers

Force a hard reboot of the specified server within the data center. Don't use this method if you wish to reboot gracefully. This is an equivalent of powering down a computer and turning it back on.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Start an Enterprise Server by ID

Starts the Enterprise Server specified by its ID.

Note that you cannot use this method to start a Cube Server.

By starting the Enterprise Server, cores and RAM are provisioned, and the billing continues.

If the server's public IPv4 address has been deallocated, a new IPv4 address will be assigned. IPv6 blocks and addresses will remain unchanged when stopping and starting a server.

To check the status of the request, you can use the 'Location' HTTP header in the response (see 'Requests' for more information).

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Stop an Enterprise Server by ID

Stops the Enterprise Server specified by its ID.

Note that you cannot use this method to stop a Cube Server.

By stopping the Enterprise Server, cores and RAM are freed and no longer charged.

Public IPv4 IPs that are not reserved are returned to the IPv4 pool. IPv6 blocks and addresses will remain unchanged when stopping and starting a server.

To check the status of the request, you can use the 'Location' HTTP header in the response (see 'Requests' for more information).

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Suspend a Cube Server by ID

Suspends the specified Cubes instance within the data center.

The instance is not deleted and allocated resources continue to be billed. You can perform this operation only for Cube Servers.

To check the status of the request, you can use the 'Location' HTTP header in the response (see 'Requests' for more information).

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Resume a Cube Server by ID

Resumes a suspended Cube Server specified by its ID.

Since the suspended instance was not deleted the allocated resources continue to be billed. You can perform this operation only for Cube Servers.

To check the status of the request, you can use the 'Location' HTTP header in the response (see 'Requests' for more information).

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Upgrade a Server by ID

Upgrades the server version.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Get JASON Web Token

Retrieve a JSON Web Token from the server for use in login operations (such as accessing the server's console).

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "token": "eyJ0eXAiOiJKV1QiLCJraWQiOiI0MWM1MDFlNC03NGY3LTQwYjctYmMxMi1lZWIzMTAzNThlZDkiLCJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJpb25vc2Nsb3VkIiwiaWF0IjoxNjAyNDg5NTkzMDcxLCJzZXJ2ZXIiOnsidXVpZCI6IjMwNGEwZGVlLWE3OTgtNDNhNi04MzIyLTk3M2NiYzc3Yjg4ZCIsIm5hbWUiOiJTZXJ2ZXIifX0.TND9kJd8GXM39XP5PMH_LnF_99al4MEkI_eoEowPvPztirgM50aZEdg6SuLYQzg-R7vrA7hEFaK4NJb2BUUsIZYVMhjl1QmKUE5TnP0Q2zYnIfNQNZFDu2rKrOydPCkPQwlMVvvZLeBSz7lrKYujF-qZ_yY_6SHlFtt-rg6IznRtup8AFziXtl-9cEsWU92_GCTd5LiriQrsnFAiGRbb0p2_6OYAQAH9FeWu4cxrbSwUmeR7Q4klJyZqFd0fv6UTFBtpSiyci7rsB142MXyLcqM4PrBkgd9P5OFbJYf5lbsb9pW04wLSl9rqoWGgZvWsqpuzosUkQRZt_O5yuYmT9w"
}

Get Remote Console link

Retrieve a link with a JSON Web Token for accessing the server's Remote Console.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Images

List images

List all the images within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ]
}

Retrieve images

Retrieve the properties of the specified image.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
imageId
required
string

The unique ID of the image.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "image",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify an Image by ID

Modifies the properties of the specified image.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
imageId
required
string

The unique ID of the image.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified image

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (ImageProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "image",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "image",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete images

Delete the specified image; this operation is only supported for private images.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
imageId
required
string

The unique ID of the image.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify images

Update the properties of the specified image.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
imageId
required
string

The unique ID of the image.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The image properties to be updated.

name
string

The resource name.

description
string

Human-readable description.

cpuHotPlug
boolean

Hot-plug capable CPU (no reboot required).

cpuHotUnplug
boolean

Hot-unplug capable CPU (no reboot required).

ramHotPlug
boolean

Hot-plug capable RAM (no reboot required).

ramHotUnplug
boolean

Hot-unplug capable RAM (no reboot required).

nicHotPlug
boolean

Hot-plug capable NIC (no reboot required).

nicHotUnplug
boolean

Hot-unplug capable NIC (no reboot required).

discVirtioHotPlug
boolean

Hot-plug capable Virt-IO drive (no reboot required).

discVirtioHotUnplug
boolean

Hot-unplug capable Virt-IO drive (no reboot required). Not supported with Windows VMs.

discScsiHotPlug
boolean

Hot-plug capable SCSI drive (no reboot required).

discScsiHotUnplug
boolean

Hot-unplug capable SCSI drive (no reboot required). Not supported with Windows VMs.

licenceType
required
string
Enum: "UNKNOWN" "WINDOWS" "WINDOWS2016" "WINDOWS2022" "RHEL" "LINUX" "OTHER"

The OS type of this image.

cloudInit
string
Enum: "NONE" "V1"

Cloud init compatibility.

Responses

Request samples

Content type
application/json
{
  • "name": "My resource",
  • "description": "The image/snapshot of Ubuntu ",
  • "cpuHotPlug": true,
  • "cpuHotUnplug": true,
  • "ramHotPlug": true,
  • "ramHotUnplug": true,
  • "nicHotPlug": true,
  • "nicHotUnplug": true,
  • "discVirtioHotPlug": true,
  • "discVirtioHotUnplug": true,
  • "discScsiHotPlug": true,
  • "discScsiHotUnplug": true,
  • "licenceType": "LINUX",
  • "cloudInit": "V1"
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "image",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Volumes

List volumes

List all the volumes within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Volume

Creates a storage volume within the specified data center. The volume will not be attached! Attaching volumes is described in the Servers section.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The volume to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (VolumeProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "volume",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "volume",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve volumes

Retrieve the properties of the specified volume within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

volumeId
required
string

The unique ID of the volume.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "volume",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a Volume by ID

Modifies the properties of the specified volume within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

volumeId
required
string

The unique ID of the volume.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified volume

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (VolumeProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "volume",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "volume",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete volumes

Delete the specified volume within the data center. Use with caution, the volume will be permanently removed!

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

volumeId
required
string

The unique ID of the volume.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify volumes

Update the properties of the specified storage volume within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

volumeId
required
string

The unique ID of the volume.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The properties of the volume to be updated.

name
string

The name of the resource.

type
string
Enum: "HDD" "SSD" "SSD Standard" "SSD Premium" "DAS" "ISO"

Hardware type of the volume. DAS (Direct Attached Storage) could be used only in a composite call with a Cube server.

size
required
number

The size of the volume in GB.

availabilityZone
string
Enum: "AUTO" "ZONE_1" "ZONE_2" "ZONE_3"

The availability zone in which the volume should be provisioned. The storage volume will be provisioned on as few physical storage devices as possible, but this cannot be guaranteed upfront. This is uavailable for DAS (Direct Attached Storage), and subject to availability for SSD.

image
string

Image or snapshot ID to be used as template for this volume.

imagePassword
string

Initial password to be set for installed OS. Works with public images only. Not modifiable, forbidden in update requests. Password rules allows all characters from a-z, A-Z, 0-9.

imageAlias
string
sshKeys
Array of strings

Public SSH keys are set on the image as authorized keys for appropriate SSH login to the instance using the corresponding private key. This field may only be set in creation requests. When reading, it always returns null. SSH keys are only supported if a public Linux image is used for the volume creation.

bus
string
Enum: "VIRTIO" "IDE" "UNKNOWN"

The bus type for this volume; default is VIRTIO.

licenceType
string
Enum: "UNKNOWN" "WINDOWS" "WINDOWS2016" "WINDOWS2022" "RHEL" "LINUX" "OTHER"

OS type for this volume.

cpuHotPlug
boolean

Hot-plug capable CPU (no reboot required).

ramHotPlug
boolean

Hot-plug capable RAM (no reboot required).

nicHotPlug
boolean

Hot-plug capable NIC (no reboot required).

nicHotUnplug
boolean

Hot-unplug capable NIC (no reboot required).

discVirtioHotPlug
boolean

Hot-plug capable Virt-IO drive (no reboot required).

discVirtioHotUnplug
boolean

Hot-unplug capable Virt-IO drive (no reboot required). Not supported with Windows VMs.

backupunitId
string

The ID of the backup unit that the user has access to. The property is immutable and is only allowed to be set on creation of a new a volume. It is mandatory to provide either 'public image' or 'imageAlias' in conjunction with this property.

userData
string

The cloud-init configuration for the volume as base64 encoded string. The property is immutable and is only allowed to be set on creation of a new a volume. It is mandatory to provide either 'public image' or 'imageAlias' that has cloud-init compatibility in conjunction with this property.

bootOrder
string or null
Default: "AUTO"
Enum: "AUTO" "NONE" "PRIMARY"

Determines whether the volume will be used as a boot volume. Set to NONE, the volume will not be used as boot volume. Set to PRIMARY, the volume will be used as boot volume and all other volumes must be set to NONE. Set to AUTO or null requires all volumes to be set to AUTO or null; this will use the legacy behavior, which is to use the volume as a boot volume only if there are no other volumes or cdrom devices.

Responses

Request samples

Content type
application/json
{
  • "name": "My resource",
  • "type": "HDD",
  • "size": 100,
  • "availabilityZone": "AUTO",
  • "image": "d6ad1576-fde9-4696-aa41-1ebd75bdaf49",
  • "imagePassword": "mypass123",
  • "imageAlias": "string",
  • "sshKeys": [
    ],
  • "bus": "VIRTIO",
  • "licenceType": "LINUX",
  • "cpuHotPlug": true,
  • "ramHotPlug": true,
  • "nicHotPlug": true,
  • "nicHotUnplug": true,
  • "discVirtioHotPlug": true,
  • "discVirtioHotUnplug": true,
  • "backupunitId": "25f67991-0f51-4efc-a8ad-ef1fb31a481c",
  • "userData": "string",
  • "bootOrder": "AUTO"
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "volume",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Restore volume snapshots

Restore a snapshot for the specified volume within the data center. A snapshot is an image of a volume, which can be used to restore this volume at a later time.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

volumeId
required
string

The unique ID of the volume.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The payload used to restore a snapshot.

object (RestoreSnapshotProperties)

Responses

Request samples

Content type
application/json
{
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Create volume snapshots

Create a snapshot of the specified volume within the data center; this snapshot can later be used to restore this volume.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

volumeId
required
string

The unique ID of the volume.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The payload of the snapshot.

object (CreateSnapshotProperties)

Responses

Request samples

Content type
application/json
{
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "snapshot",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Snapshots

List snapshots

List all available snapshots.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ]
}

Retrieve snapshots by ID

Retrieve the properties of the specified snapshot.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
snapshotId
required
string

The unique ID of the snapshot.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "snapshot",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a Snapshot by ID

Modifies the properties of the specified snapshot.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
snapshotId
required
string

The unique ID of the snapshot.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified snapshot

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (SnapshotProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "snapshot",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "snapshot",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete snapshots

Deletes the specified snapshot.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
snapshotId
required
string

The unique ID of the snapshot.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify snapshots

Update the properties of the specified snapshot.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
snapshotId
required
string

The unique ID of the snapshot.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The properties of the snapshot to be updated.

name
string

The name of the resource.

description
string

Human-readable description.

secAuthProtection
boolean

Boolean value representing if the snapshot requires extra protection, such as two-step verification.

cpuHotPlug
boolean

Hot-plug capable CPU (no reboot required).

cpuHotUnplug
boolean

Hot-unplug capable CPU (no reboot required).

ramHotPlug
boolean

Hot-plug capable RAM (no reboot required).

ramHotUnplug
boolean

Hot-unplug capable RAM (no reboot required).

nicHotPlug
boolean

Hot-plug capable NIC (no reboot required).

nicHotUnplug
boolean

Hot-unplug capable NIC (no reboot required).

discVirtioHotPlug
boolean

Hot-plug capable Virt-IO drive (no reboot required).

discVirtioHotUnplug
boolean

Hot-unplug capable Virt-IO drive (no reboot required). Not supported with Windows VMs.

discScsiHotPlug
boolean

Hot-plug capable SCSI drive (no reboot required).

discScsiHotUnplug
boolean

Is capable of SCSI drive hot unplug (no reboot required). This works only for non-Windows virtual Machines.

licenceType
string
Enum: "UNKNOWN" "WINDOWS" "WINDOWS2016" "WINDOWS2022" "RHEL" "LINUX" "OTHER"

OS type of this snapshot

Responses

Request samples

Content type
application/json
{
  • "name": "My resource",
  • "description": "Image/Snapshot of Ubuntu ",
  • "secAuthProtection": true,
  • "cpuHotPlug": true,
  • "cpuHotUnplug": true,
  • "ramHotPlug": true,
  • "ramHotUnplug": true,
  • "nicHotPlug": true,
  • "nicHotUnplug": true,
  • "discVirtioHotPlug": true,
  • "discVirtioHotUnplug": true,
  • "discScsiHotPlug": true,
  • "discScsiHotUnplug": true,
  • "licenceType": "LINUX"
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "snapshot",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

IP blocks

List IP blocks

List all reserved IP blocks.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 1000 ]
Default: 100

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Reserve a IP Block

Reserves a new IP block.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The IP block to be reserved.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (IpBlockProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "ipblock",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "ipblock",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve IP blocks

Retrieve the properties of the specified IP block.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
ipblockId
required
string

The unique ID of the IP block.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "ipblock",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a IP Block by ID

Modifies the properties of the specified IP block.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
ipblockId
required
string

The unique ID of the IP block.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified IP block.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (IpBlockProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "ipblock",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "ipblock",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete IP blocks

Remove the specified IP block.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
ipblockId
required
string

The unique ID of the IP block.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify IP blocks

Update the properties of the specified IP block.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
ipblockId
required
string

The unique ID of the IP block.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The properties of the IP block to be updated.

location
required
string

Location of that IP block. Property cannot be modified after it is created (disallowed in update requests).

size
required
integer <int32>

The size of the IP block.

name
string

The name of the resource.

Responses

Request samples

Content type
application/json
{
  • "location": "us/las",
  • "size": 5,
  • "name": "My resource"
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "ipblock",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

LANs

List LANs

List all LANs within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create LANs

Creates a LAN within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The LAN to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (LanProperties)
object (LanEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "lan",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "5",
  • "type": "lan",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Retrieve LANs

Retrieve the properties of the specified LAN within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

lanId
required
string

The unique ID of the LAN.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "5",
  • "type": "lan",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Modify LANs

Modify the properties of the specified LAN within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

lanId
required
string

The unique ID of the LAN.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified LAN

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (LanProperties)
object (LanEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "lan",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "5",
  • "type": "lan",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Delete LANs

Delete the specified LAN within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

lanId
required
string

The unique ID of the LAN.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify LANs

Update the properties of the specified LAN within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

lanId
required
string

The unique ID of the LAN.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The properties of the LAN to be updated.

name
string

The name of the resource.

Array of objects (IPFailover)

IP failover configurations for lan

ipv6CidrBlock
string or null

For a GET request, this value is either 'null' or contains the LAN's /64 IPv6 CIDR block if this LAN is IPv6 enabled. For POST/PUT/PATCH requests, 'AUTO' will result in enabling this LAN for IPv6 and automatically assign a /64 IPv6 CIDR block to this LAN and /80 IPv6 CIDR blocks to the NICs and one /128 IPv6 address to each connected NIC. If you choose the IPv6 CIDR block for the LAN on your own, then you must provide a /64 block, which is inside the IPv6 CIDR block of the virtual datacenter and unique inside all LANs from this virtual datacenter. If you enable IPv6 on a LAN with NICs, those NICs will get a /80 IPv6 CIDR block and one IPv6 address assigned to each automatically, unless you specify them explicitly on the LAN and on the NICs. A virtual data center is limited to a maximum of 256 IPv6-enabled LANs.

pcc
string

The unique identifier of the Cross Connect the LAN is connected to, if any. It needs to be ensured that IP addresses of the NICs of all LANs connected to a given Cross Connect is not duplicated and belongs to the same subnet range.

public
boolean

Indicates if the LAN is connected to the internet or not.

Responses

Request samples

Content type
application/json
{
  • "name": "My resource",
  • "ipFailover": [
    ],
  • "ipv6CidrBlock": "2001:db8:b06d:8f5a::/64",
  • "pcc": "3c11273c-b3e1-4ca3-8134-84fd2dd4ebec",
  • "public": true
}

Response samples

Content type
application/json
{
  • "id": "5",
  • "type": "lan",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

List LAN members

List all NICs, attached to the specified LAN.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

lanId
required
string

The unique ID of the LAN.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Attach NICs

Attach an existing NIC to the specified LAN.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

lanId
required
string

The unique ID of the LAN.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The NIC to be attached.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (NicProperties)
object (NicEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "nic",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "nic",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Retrieve attached NICs

Retrieve the properties of the NIC, attached to the specified LAN.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

lanId
required
string

The unique ID of the LAN.

nicId
required
string

The unique ID of the NIC.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "nic",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Network interfaces

List NICs

List all NICs, attached to the specified server.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a NIC

Adds a NIC to the specified server. The combined total of NICs and attached volumes cannot exceed 24 per server.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The NIC to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (NicProperties)
object (NicEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "nic",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "nic",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Retrieve NICs

Retrieve the properties of the specified NIC.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "nic",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Modify NICs

Modify the properties of the specified NIC.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified NIC

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (NicProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "nic",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "nic",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Delete NICs

Remove the specified NIC.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify NICs

Update the properties of the specified NIC.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The properties of the NIC to be updated.

name
string

The name of the resource.

ips
Array of strings or null

Collection of IP addresses, assigned to the NIC. Explicitly assigned public IPs need to come from reserved IP blocks. Passing value null or empty array will assign an IP address automatically.

dhcp
boolean
Default: true

Indicates if the NIC will reserve an IP using DHCP.

ipv6Ips
Array of strings or null

If this NIC is connected to an IPv6 enabled LAN then this property contains the IPv6 IP addresses of the NIC. The maximum number of IPv6 IP addresses per NIC is 50, if you need more, contact support. If you leave this property 'null' when adding a NIC, when changing the NIC's IPv6 CIDR block, when changing the LAN's IPv6 CIDR block or when moving the NIC to a different IPv6 enabled LAN, then we will automatically assign the same number of IPv6 addresses which you had before from the NICs new CIDR block. If you leave this property 'null' while not changing the CIDR block, the IPv6 IP addresses won't be changed either. You can also provide your own self choosen IPv6 addresses, which then must be inside the IPv6 CIDR block of this NIC.

ipv6CidrBlock
string or null

If this NIC is connected to an IPv6 enabled LAN then this property contains the /80 IPv6 CIDR block of the NIC. If you leave this property 'null' when adding a NIC to an IPv6-enabled LAN, then an IPv6 CIDR block will automatically be assigned to the NIC, but you can also specify an /80 IPv6 CIDR block for the NIC on your own, which must be inside the /64 IPv6 CIDR block of the LAN and unique. This value can only be set, if the LAN already has an IPv6 CIDR block assigned. An IPv6-enabled LAN is limited to a maximum of 65,536 NICs.

dhcpv6
boolean or null
Default: true

Indicates if the NIC will receive an IPv6 using DHCP. It can be set to 'true' or 'false' only if this NIC is connected to an IPv6 enabled LAN.

lan
required
integer <int32>

The LAN ID the NIC will be on. If the LAN ID does not exist, it will be implicitly created.

firewallActive
boolean

Activate or deactivate the firewall. By default, an active firewall without any defined rules will block all incoming network traffic except for the firewall rules that explicitly allows certain protocols, IP addresses and ports.

firewallType
string
Enum: "INGRESS" "EGRESS" "BIDIRECTIONAL"

The type of firewall rules that will be allowed on the NIC. If not specified, the default INGRESS value is used.

Responses

Request samples

Content type
application/json
{
  • "name": "My resource",
  • "ips": [
    ],
  • "dhcp": true,
  • "ipv6Ips": [
    ],
  • "ipv6CidrBlock": "2001:db8:b06d:8f5a:0609::/80",
  • "dhcpv6": true,
  • "lan": 2,
  • "firewallActive": false,
  • "firewallType": "INGRESS"
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "nic",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Firewall rules

List firewall rules

List all firewall rules for the specified NIC.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Firewall Rule

Creates a firewall rule for the specified NIC.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The firewall rule to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (FirewallruleProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "firewall-rule",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "firewall-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve firewall rules

Retrieve the properties of the specified firewall rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

firewallruleId
required
string

The unique ID of the firewall rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "firewall-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a Firewall Rule

Modifies the properties of the specified firewall rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

firewallruleId
required
string

The unique ID of the firewall rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified firewall rule.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (FirewallruleProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "firewall-rule",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "firewall-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete firewall rules

Delete the specified firewall rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

firewallruleId
required
string

The unique ID of the firewall rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify firewall rules

Update the properties of the specified firewall rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

firewallruleId
required
string

The unique ID of the firewall rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The properties of the firewall rule to be updated.

name
string

The name of the resource.

protocol
required
string
Enum: "TCP" "UDP" "ICMP" "ICMPv6" "GRE" "VRRP" "ESP" "AH" "ANY"

The protocol for the rule. Property cannot be modified after it is created (disallowed in update requests).

sourceMac
string or null

Only traffic originating from the respective MAC address is allowed. Valid format: aa:bb:cc:dd:ee:ff. Value null allows traffic from any MAC address.

ipVersion
string or null
Enum: "IPv4" "IPv6"

The IP version for this rule. If sourceIp or targetIp are specified, you can omit this value - the IP version will then be deduced from the IP address(es) used; if you specify it anyway, it must match the specified IP address(es). If neither sourceIp nor targetIp are specified, this rule allows traffic only for the specified IP version. If neither sourceIp, targetIp nor ipVersion are specified, this rule will only allow IPv4 traffic.

sourceIp
string or null

Only traffic originating from the respective IP address (or CIDR block) is allowed. Value null allows traffic from any IP address (according to the selected ipVersion).

targetIp
string or null

If the target NIC has multiple IP addresses, only the traffic directed to the respective IP address (or CIDR block) of the NIC is allowed. Value null allows traffic to any target IP address (according to the selected ipVersion).

icmpCode
integer or null <int32> [ 0 .. 254 ]

Defines the allowed code (from 0 to 254) if protocol ICMP or ICMPv6 is chosen. Value null allows all codes.

icmpType
integer or null <int32> [ 0 .. 254 ]

Defines the allowed type (from 0 to 254) if the protocol ICMP or ICMPv6 is chosen. Value null allows all types.

portRangeStart
integer <int32> [ 1 .. 65535 ]

Defines the start range of the allowed port (from 1 to 65535) if protocol TCP or UDP is chosen. Leave portRangeStart and portRangeEnd value null to allow all ports.

portRangeEnd
integer <int32> [ 1 .. 65535 ]

Defines the end range of the allowed port (from 1 to 65535) if the protocol TCP or UDP is chosen. Leave portRangeStart and portRangeEnd null to allow all ports.

type
string
Enum: "INGRESS" "EGRESS"

The type of the firewall rule. If not specified, the default INGRESS value is used.

Responses

Request samples

Content type
application/json
{
  • "name": "My resource",
  • "protocol": "TCP",
  • "sourceMac": "00:0a:95:9d:68:16",
  • "ipVersion": "IPv4",
  • "sourceIp": "22.231.113.64",
  • "targetIp": "22.231.113.64",
  • "icmpCode": 0,
  • "icmpType": 8,
  • "portRangeStart": 8,
  • "portRangeEnd": 8,
  • "type": "INGRESS"
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "firewall-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Flow Logs

List Flow Logs

List all the Flow Logs for the specified NIC.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Flow Log

Adds a new Flow Log for the specified NIC.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Request Body schema: application/json

The Flow Log to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (FlowLogProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "flow-log",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve Flow Logs

Retrieve the properties of the specified Flow Log.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

flowlogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify Flow Logs

Modify the specified Flow Log record.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

flowlogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Request Body schema: application/json

The modified Flow Log.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (FlowLogProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "flow-log",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete Flow Logs

Delete the specified Flow Log.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

flowlogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify Flow Logs

Update the specified Flow Log record.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

nicId
required
string

The unique ID of the NIC.

flowlogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Request Body schema: application/json

The Flow Log record to be updated.

name
required
string

The resource name.

action
required
string
Enum: "ACCEPTED" "REJECTED" "ALL"

Specifies the traffic action pattern.

direction
required
string
Enum: "INGRESS" "EGRESS" "BIDIRECTIONAL"

Specifies the traffic direction pattern.

bucket
required
string

The S3 bucket name of an existing IONOS Cloud S3 bucket.

Responses

Request samples

Content type
application/json
{
  • "name": "My resource",
  • "action": "ACCEPTED",
  • "direction": "INGRESS",
  • "bucket": "bucketName/key"
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Load Balancers

List Load Balancers

List all the Load Balancers within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Load Balancer

Creates a Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The Load Balancer to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (LoadbalancerProperties)
object (LoadbalancerEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "loadbalancer",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "loadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Retrieve Load Balancers

Retrieve the properties of the specified Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

loadbalancerId
required
string

The unique ID of the Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "loadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Modify a Load Balancer by ID

Modifies the properties of the specified Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

loadbalancerId
required
string

The unique ID of the Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified Load Balancer.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (LoadbalancerProperties)
object (LoadbalancerEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "loadbalancer",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "loadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Delete Load Balancers

Remove the specified Load Balancer from the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

loadbalancerId
required
string

The unique ID of the Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify Load Balancers

Update the properties of the specified Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

loadbalancerId
required
string

The unique ID of the Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The properties of the Load Balancer to be updated.

name
string

The name of the resource.

ip
string or null

IPv4 address of the loadbalancer. All attached NICs will inherit this IP. Leaving value null will assign IP automatically.

dhcp
boolean

Indicates if the loadbalancer will reserve an IP using DHCP.

Responses

Request samples

Content type
application/json
{
  • "name": "My resource",
  • "ip": "22.231.113.64",
  • "dhcp": true
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "loadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

List balanced NICs

List all NICs, attached to the specified Load Balancer.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

loadbalancerId
required
string

The unique ID of the Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Attach balanced NICs

Attachs an existing NIC to the specified Load Balancer.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

loadbalancerId
required
string

The unique ID of the Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The NIC to be attached.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (NicProperties)
object (NicEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "nic",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "nic",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Retrieve balanced NICs

Retrieve the properties of the specified NIC, attached to the Load Balancer.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

loadbalancerId
required
string

The unique ID of the Load Balancer.

nicId
required
string

The unique ID of the NIC.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "nic",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Detach balanced NICs

Detach the specified NIC from the Load Balancer.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

loadbalancerId
required
string

The unique ID of the Load Balancer.

nicId
required
string

The unique ID of the NIC.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

NAT Gateways

List NAT Gateways

List all NAT Gateways within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a NAT Gateway

Creates a NAT Gateway within the data center.

This operation is restricted to contract owner, admin, and users with 'createInternetAccess' privileges.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The NAT Gateway to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (NatGatewayProperties)
object (NatGatewayEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "natgateway",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "natgateway",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Retrieve NAT Gateways

Retrieve the properties of the specified NAT Gateway within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "natgateway",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Modify NAT Gateways

Modify the properties of the specified NAT Gateway within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified NAT Gateway.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (NatGatewayProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "natgateway",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "natgateway",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Delete NAT Gateways

Remove the specified NAT Gateway from the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify NAT Gateways

Update the properties of the specified NAT Gateway within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: */*

The properties of the NAT Gateway to be updated.

name
required
string

Name of the NAT Gateway.

publicIps
required
Array of strings

Collection of public IP addresses of the NAT Gateway. Should be customer reserved IP addresses in that location.

Array of objects (NatGatewayLanProperties)

Collection of LANs connected to the NAT Gateway. IPs must contain a valid subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "natgateway",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

List NAT Gateway rules

List all rules for the specified NAT Gateway.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ]
}

Create a NAT Gateway Rule

Creates a rule for the specified NAT Gateway.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The NAT Gateway rule to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (NatGatewayRuleProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "natgateway-rule",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "natgateway-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve NAT Gateway rules

Retrieve the properties of the specified NAT Gateway rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

natGatewayRuleId
required
string

The unique ID of the NAT Gateway rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "natgateway-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a NAT Gateway Rule by ID

Modify the specified NAT Gateway rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

natGatewayRuleId
required
string

The unique ID of the NAT Gateway rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified NAT Gateway rule.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (NatGatewayRuleProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "natgateway-rule",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "natgateway-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete NAT Gateway rules

Delete the specified NAT Gateway rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

natGatewayRuleId
required
string

The unique ID of the NAT Gateway rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially Modify a NAT Gateway Rule by ID

Updates the properties of the specified NAT Gateway rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

natGatewayRuleId
required
string

The unique ID of the NAT Gateway rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: */*

The properties of the NAT Gateway rule to be updated.

name
required
string

The name of the NAT Gateway rule.

type
string
Value: "SNAT"

Type of the NAT Gateway rule.

protocol
string
Enum: "TCP" "UDP" "ICMP" "ALL"

Protocol of the NAT Gateway rule. Defaults to ALL. If protocol is 'ICMP' then targetPortRange start and end cannot be set.

sourceSubnet
required
string

Source subnet of the NAT Gateway rule. For SNAT rules it specifies which packets this translation rule applies to based on the packets source IP address.

publicIp
required
string

Public IP address of the NAT Gateway rule. Specifies the address used for masking outgoing packets source address field. Should be one of the customer reserved IP address already configured on the NAT Gateway resource

targetSubnet
string

Target or destination subnet of the NAT Gateway rule. For SNAT rules it specifies which packets this translation rule applies to based on the packets destination IP address. If none is provided, rule will match any address.

object (TargetPortRange)

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "natgateway-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

List NAT Gateway Flow Logs

List all the Flow Logs for the specified NAT Gateway.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a NAT Gateway Flow Log

Adds a new Flow Log to the specified NAT Gateway.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Request Body schema: application/json

The Flow Log to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (FlowLogProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "flow-log",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve NAT Gateway Flow Logs

Retrieve the specified NAT Gateway Flow Log.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

flowLogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify NAT Gateway Flow Logs

Modify the specified NAT Gateway Flow Log.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

flowLogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Request Body schema: application/json

The modified NAT Gateway Flow Log.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (FlowLogProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "flow-log",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete NAT Gateway Flow Logs

Delete the specified NAT Gateway Flow Log.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

flowLogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify NAT Gateway Flow Logs

Update the properties of the specified NAT Gateway Flow Log.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

natGatewayId
required
string

The unique ID of the NAT Gateway.

flowLogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Request Body schema: */*

The properties of the Flow Log to be updated.

name
required
string

The resource name.

action
required
string
Enum: "ACCEPTED" "REJECTED" "ALL"

Specifies the traffic action pattern.

direction
required
string
Enum: "INGRESS" "EGRESS" "BIDIRECTIONAL"

Specifies the traffic direction pattern.

bucket
required
string

The S3 bucket name of an existing IONOS Cloud S3 bucket.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Network Load Balancers

List Network Load Balancers

List all the Network Load Balancers within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Network Load Balancer

Creates a Network Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The Network Load Balancer to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (NetworkLoadBalancerProperties)
object (NetworkLoadBalancerEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "networkloadbalancer",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "networkloadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Retrieve Network Load Balancers

Retrieve the properties of the specified Network Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "networkloadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Modify Network Load Balancers

Modify the properties of the specified Network Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified Network Load Balancer.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (NetworkLoadBalancerProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "networkloadbalancer",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "networkloadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Delete Network Load Balancers

Remove the specified Network Load Balancer from the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify Network Load Balancers

Update the properties of the specified Network Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: */*

The properties of the Network Load Balancer to be updated.

name
required
string

The name of the Network Load Balancer.

listenerLan
required
integer

ID of the listening LAN (inbound).

ips
Array of strings

Collection of the Network Load Balancer IP addresses. (Inbound and outbound) IPs of the listenerLan must be customer-reserved IPs for public Load Balancers, and private IPs for private Load Balancers.

targetLan
required
integer

ID of the balanced private target LAN (outbound).

lbPrivateIps
Array of strings

Collection of private IP addresses with subnet mask of the Network Load Balancer. IPs must contain a valid subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "networkloadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

List NLB Flow Logs

List all the Flow Logs for the specified Network Load Balancer.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a NLB Flow Log

Adds a new Flow Log for the Network Load Balancer.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The Flow Log to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (FlowLogProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "flow-log",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve NLB Flow Logs

Retrieve the specified Network Load Balancer Flow Log.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

flowLogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify NLB Flow Logs

Modify the specified Network Load Balancer Flow Log.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

flowLogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified NLB Flow Log.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (FlowLogProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "flow-log",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete NLB Flow Logs

Delete the specified Network Load Balancer Flow Log.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

flowLogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify NLB Flow Logs

Update the properties of the specified Network Load Balancer Flow Log.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

flowLogId
required
string

The unique ID of the Flow Log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: */*

The properties of the Flow Log to be updated.

name
required
string

The resource name.

action
required
string
Enum: "ACCEPTED" "REJECTED" "ALL"

Specifies the traffic action pattern.

direction
required
string
Enum: "INGRESS" "EGRESS" "BIDIRECTIONAL"

Specifies the traffic direction pattern.

bucket
required
string

The S3 bucket name of an existing IONOS Cloud S3 bucket.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

List NLB forwarding rules

List the forwarding rules for the specified Network Load Balancer.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a NLB Forwarding Rule

Creates a forwarding rule for the specified Network Load Balancer.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The forwarding rule to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (NetworkLoadBalancerForwardingRuleProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "forwarding-rule",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "forwarding-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve NLB forwarding rules

Retrieve the specified Network Load Balance forwarding rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

forwardingRuleId
required
string

The unique ID of the forwarding rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "forwarding-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify NLB forwarding rules

Modify the specified Network Load Balancer forwarding rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

forwardingRuleId
required
string

The unique ID of the forwarding rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified NLB forwarding rule.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (NetworkLoadBalancerForwardingRuleProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "forwarding-rule",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "forwarding-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete NLB forwarding rules

Delete the specified Network Load Balancer forwarding rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

forwardingRuleId
required
string

The unique ID of the forwarding rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify NLB forwarding rules

Update the properties of the specified Network Load Balancer forwarding rule.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

networkLoadBalancerId
required
string

The unique ID of the Network Load Balancer.

forwardingRuleId
required
string

The unique ID of the forwarding rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: */*

The properties of the forwarding rule to be updated.

name
required
string

The name of the Network Load Balancer forwarding rule.

algorithm
required
string
Enum: "ROUND_ROBIN" "LEAST_CONNECTION" "RANDOM" "SOURCE_IP"

Balancing algorithm

protocol
required
string
Enum: "HTTP" "TCP"

Balancing protocol

listenerIp
required
string

Listening (inbound) IP.

listenerPort
required
integer <int32>

Listening (inbound) port number; valid range is 1 to 65535.

object (NetworkLoadBalancerForwardingRuleHealthCheck)
required
Array of objects (NetworkLoadBalancerForwardingRuleTarget)

Array of items in the collection.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "forwarding-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Application Load Balancers

Get Application Load Balancers

Lists all Application Load Balancers within a data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create an Application Load Balancer

Creates an Application Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The Application Load Balancer to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (ApplicationLoadBalancerProperties)
object (ApplicationLoadBalancerEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "applicationloadbalancer",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "applicationloadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Get an Application Load Balancer by ID

Retrieves the properties of the specified Application Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "applicationloadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Modify an Application Load Balancer by ID

Modifies the properties of the specified Application Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified Application Load Balancer.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (ApplicationLoadBalancerProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "applicationloadbalancer",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "applicationloadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Delete an Application Load Balancer by ID

Removes the specified Application Load Balancer from the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially Modify an Application Load Balancer by ID

Updates the properties of the specified Application Load Balancer within the data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: */*

The Application Load Balancer properties to be updated.

name
required
string

The Application Load Balancer name.

listenerLan
required
integer

The ID of the listening (inbound) LAN.

ips
Array of strings

Collection of the Application Load Balancer IP addresses. (Inbound and outbound) IPs of the 'listenerLan' are customer-reserved public IPs for the public load balancers, and private IPs for the private load balancers.

targetLan
required
integer

The ID of the balanced private target LAN (outbound).

lbPrivateIps
Array of strings

Collection of private IP addresses with the subnet mask of the Application Load Balancer. IPs must contain valid a subnet mask. If no IP is provided, the system will generate an IP with /24 subnet.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "applicationloadbalancer",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Get ALB Forwarding Rules

Lists the forwarding rules of the specified Application Load Balancer.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create an ALB Forwarding Rule

Creates a forwarding rule for the specified Application Load Balancer.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The forwarding rule to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (ApplicationLoadBalancerForwardingRuleProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "forwarding-rule",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "forwarding-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Get an ALB Forwarding Rule by ID

Retrieves the Application Load Balancer forwarding rule specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

forwardingRuleId
required
string

The unique ID of the forwarding rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "forwarding-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify an ALB Forwarding Rule by ID

Modifies the Application Load Balancer forwarding rule specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

forwardingRuleId
required
string

The unique ID of the forwarding rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified ALB forwarding rule.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (ApplicationLoadBalancerForwardingRuleProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "forwarding-rule",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "forwarding-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete an ALB Forwarding Rule by ID

Deletes the Application Load Balancer forwarding rule specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

forwardingRuleId
required
string

The unique ID of the forwarding rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify an ALB Forwarding Rule by ID

Updates the properties of the Application Load Balancer forwarding rule specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

forwardingRuleId
required
string

The unique ID of the forwarding rule.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: */*

The properties of the forwarding rule to be updated.

name
required
string

The name of the Application Load Balancer forwarding rule.

protocol
required
string
Value: "HTTP"

The balancing protocol.

listenerIp
required
string

The listening (inbound) IP.

listenerPort
required
integer <int32>

The listening (inbound) port number; the valid range is 1 to 65535.

clientTimeout
integer <int32>

The maximum time in milliseconds to wait for the client to acknowledge or send data; default is 50,000 (50 seconds).

serverCertificates
Array of strings <uuid>

Array of items in the collection.

Array of objects (ApplicationLoadBalancerHttpRule)

An array of items in the collection. The original order of rules is preserved during processing, except that rules of the 'FORWARD' type are processed after the rules with other defined actions. The relative order of the 'FORWARD' type rules is also preserved during the processing.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "forwarding-rule",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Get ALB Flow Logs

Retrieves the flow logs for the specified Application Load Balancer.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create an ALB Flow Log

Creates a flow log for the Application Load Balancer specified by ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The flow log to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (FlowLogProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "flow-log",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Get an ALB Flow Log by ID

Retrieves the Application Load Balancer flow log specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

flowLogId
required
string

The unique ID of the flow log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify an ALB Flow Log by ID

Modifies the Application Load Balancer flow log specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

flowLogId
required
string

The unique ID of the flow log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified ALB flow log.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (FlowLogProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "flow-log",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete an ALB Flow Log by ID

Deletes the Application Load Balancer flow log specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

flowLogId
required
string

The unique ID of the flow log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially Modify an ALB Flow Log by ID

Updates the properties of the Application Load Balancer flow log specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

applicationLoadBalancerId
required
string

The unique ID of the Application Load Balancer.

flowLogId
required
string

The unique ID of the flow log.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: */*

The properties of the ALB flow log to be updated.

name
required
string

The resource name.

action
required
string
Enum: "ACCEPTED" "REJECTED" "ALL"

Specifies the traffic action pattern.

direction
required
string
Enum: "INGRESS" "EGRESS" "BIDIRECTIONAL"

Specifies the traffic direction pattern.

bucket
required
string

The S3 bucket name of an existing IONOS Cloud S3 bucket.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "flow-log",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Target groups

Get Target Groups

Lists target groups.

A target group is a set of one or more registered targets. You must specify an IP address, a port number, and a weight for each target. Any object with an IP address in your VDC can be a target, for example, a VM, another load balancer, etc. You can register a target with multiple target groups.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 200 ]
Default: 100

The maximum number of elements to return (used together with offset for pagination). It must not exceed 200.

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Target Group

Creates a target group.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The target group to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (TargetGroupProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "target-group",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "target-group",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Get a Target Group by ID

Retrieves the properties of the target group specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
targetGroupId
required
string

The unique ID of the target group.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "target-group",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a Target Group by ID

Modifies the properties of the target group specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
targetGroupId
required
string

The unique ID of the target group.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified target group.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

required
object (TargetGroupProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "applicationloadbalancer",
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "target-group",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete a Target Group by ID

Deletes the target group specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
targetGroupId
required
string

The unique ID of the target group.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially Modify a Target Group by ID

Updates the properties of the target group specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
targetGroupId
required
string

The unique ID of the target group.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: */*

The target group properties to be updated.

name
required
string

The target group name.

algorithm
required
string
Enum: "ROUND_ROBIN" "LEAST_CONNECTION" "RANDOM" "SOURCE_IP"

The balancing algorithm. A balancing algorithm consists of predefined rules with the logic that a load balancer uses to distribute network traffic between servers.

  • Round Robin: Targets are served alternately according to their weighting.

  • Least Connection: The target with the least active connection is served.

  • Random: The targets are served based on a consistent pseudorandom algorithm.

  • Source IP: It is ensured that the same client IP address reaches the same target.

protocol
required
string
Value: "HTTP"

The forwarding protocol. Only the value 'HTTP' is allowed.

Array of objects (TargetGroupTarget)

Array of items in the collection.

object (TargetGroupHealthCheck)
object (TargetGroupHttpHealthCheck)

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "target-group",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Requests

Retrieve requests

Retrieve the properties of the specified request.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
requestId
required
string

The unique ID of the request.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "request",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

List requests

List all API requests.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

filter.status
string

Filter the list by request status [QUEUED, RUNNING, DONE, FAILED]. Filter is not affected by the depth query parameter.

filter.createdAfter
string

Filter the list to only include the requests created after the date, specified in the yyyy-MM-dd HH:mm:ss format. Filter is not affected by the depth query parameter.

filter.createdBefore
string

Filter the list to only include the requests created before the date, specified in the yyyy-MM-dd HH:mm:ss format. Filter is not affected by the depth query parameter.

filter.createdDate
string

Filter the list to only include the requests that contain the createdDate, specified in the yyyy-MM-dd HH:mm:ss format. The value is not case-sensitive, and the filter requires that the depth query parameter value is greater than zero.

filter.createdBy
string

Filter the list to only include the requests that contain the createdBy, specified in the yyyy-MM-dd HH:mm:ss format. The value is not case-sensitive, and the filter requires that the depth query parameter value is greater than zero.

filter.etag
string

Filter the list to only include the requests that contain the specified etag. The value is not case-sensitive, and the filter requires that the depth query parameter value is greater than zero.

filter.requestStatus
string

Filter the list to only include the requests that contain the specified requestStatus. The value is not case-sensitive, and the filter requires that the depth query parameter value is greater than zero.

filter.method
string

Filter the list to only include the requests that contain the specified method. The value is not case-sensitive, and the filter requires that the depth query parameter value is greater than zero.

filter.headers
string

Filter the list to only include the requests that contain the specified headers. The value is not case-sensitive, and the filter requires that the depth query parameter value is greater than zero.

filter.body
string

Filter the list to only include the requests that contain the specified body. The value is not case-sensitive, and the filter requires that the depth query parameter value is greater than zero.

filter.url
string

Filter the list to only include the requests that contain the specified URL. The value is not case-sensitive, and the filter requires that the depth query parameter value is greater than zero.

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 10000 ]
Default: 1000

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "requests",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Retrieve request status

Retrieve the status of the specified request.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
requestId
required
string

The unique ID of the request.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "request-status",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    }
}

Contract resources

Get Contract Information

Retrieves the properties of the user's contract. This operation allows you to obtain the resource limits and the general contract information.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "contracts",
  • "type": "collection",
  • "items": [
    ]
}

User management

List all users

List all the users in your account.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

offset
integer <int32> >= 0
Default: 0

The first element (from the complete list of the elements) to include in the response (used together with limit for pagination).

limit
integer <int32> [ 1 .. 100 ]
Default: 100

The maximum number of elements to return (use together with offset for pagination).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Create users

Create a user.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The user to create.

required
object (UserPropertiesPost)

Responses

Request samples

Content type
application/json
{
  • "properties": {
    }
}

Response samples

Content type
application/json
{}

Retrieve users

Retrieve user properties by user ID. The user ID is in the response body when the user is created, and in the list of the users, returned by GET.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
userId
required
string

The unique ID of the user.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Modify users

Modify the properties of the specified user.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
userId
required
string

The unique ID of the user.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified user

id
string

The resource's unique identifier.

required
object (UserPropertiesPut)

Responses

Request samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "properties": {
    }
}

Response samples

Content type
application/json
{}

Delete users

Delete the specified user.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
userId
required
string

The unique ID of the user.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Retrieve group resources by user ID

Retrieve group resources of the user by user ID. The user ID is in the response body when the user is created, and in the list of the users, returned by GET.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
userId
required
string

The unique ID of the user.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Retrieve user resources by user ID

Retrieve own resources of the user by user ID. The user ID is in the response body when the user is created, and in the list of the users, returned by GET.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
userId
required
string

The unique ID of the user.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

List all groups

List all the available user groups.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Create groups

Create a group.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The group to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of the resource.

required
object (GroupProperties)
object (GroupEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "group",
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{}

Retrieve groups

Retrieve a group by the group ID. This value is in the response body when the group is created, and in the list of the groups, returned by GET.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Modify groups

Modify the properties of the specified group.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified group.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of the resource.

required
object (GroupProperties)
object (GroupEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "group",
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{}

Delete groups

Remove the specified group.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Retrieve group resources

List the resources assigned to the group, by group ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

List group members

List all members of the specified user group.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Add a Group Member

Adds an existing user to the specified group.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The user to add.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (UserMetadata)
required
object (UserProperties)
object (UsersEntities)

Responses

Request samples

Content type
application/json
{
  • "type": "user",
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{}

Remove users from groups

Remove the specified user from the group.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

userId
required
string

The unique ID of the user.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Retrieve group shares

Retrieve the properties of the specified group share.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

resourceId
required
string

The unique ID of the resource.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Modify group share privileges

Modify share permissions for the specified group. With an empty body, no updates are performed, and the current share permissions for the group are returned with response code 200.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

resourceId
required
string

The unique ID of the resource.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified resource

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

resource as generic type

required
object (GroupShareProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "resource",
  • "properties": {
    }
}

Response samples

Content type
application/json
{}

Add group shares

Add the specified share to the group.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

resourceId
required
string

The unique ID of the resource.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: */*

The resource to add.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

resource as generic type

required
object (GroupShareProperties)

Responses

Response samples

Content type
application/json
{}

Remove group shares

Remove the specified share from the group.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

resourceId
required
string

The unique ID of the resource.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

List group shares

List all shares and share privileges for the specified group.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
groupId
required
string

The unique ID of the group.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

List all resources

List all the available resources.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

List resources by type

List all resources of the specified type.

Resource types are: {datacenter, snapshot, image, ipblock, pcc, backupunit, k8s}

Resource types are in the list of resources, returned by GET.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
resourceType
required
string

The resource type

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Retrieve resources by type

Retrieve a resource by the resource type and resource ID.

Resource types are: {datacenter, snapshot, image, ipblock, pcc, backupunit, k8s}

Resource types are in the list of resources, returned by GET.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
resourceType
required
string

The resource type

resourceId
required
string

The resource ID

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

User S3 keys

List user S3 keys

List S3 keys by user ID. The user ID is in the response body when the user is created, and in the list of the users, returned by GET.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
userId
required
string

The unique ID of the user.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Create user S3 keys

Create an S3 key for the specified user. The user ID is in the response body when the user is created, and in the list of the users, returned by GET. A maximum of five keys per user can be generated.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
userId
required
string

The unique ID of the user.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Retrieve user S3 keys by key ID

Retrieve the specified user S3 key. The user ID is in the response body when the user is created, and in the list of the users, returned by GET. The key ID is in the response body when the S3 key is created, and in the list of all user S3 keys, returned by GET.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
userId
required
string

The unique ID of the user.

keyId
required
string

The unique ID of the S3 key.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Modify a S3 Key by Key ID

Enables or disables the specified user S3 key.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
userId
required
string

The unique ID of the user.

keyId
required
string

The unique ID of the S3 key.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified S3 key.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of the resource.

object (S3KeyMetadata)
required
object (S3KeyProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "group",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{}

Delete S3 keys

Delete the specified user S3 key.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
userId
required
string

The unique ID of the user.

keyId
required
string

The unique ID of the S3 key.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Retrieve S3 single sign-on URLs

Retrieve S3 Object Storage single sign-on URLs for the the specified user. The user ID is in the response body when the user is created, and in the list of the users, returned by GET.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
userId
required
string

The unique ID of the user.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Backup Service

List backup units

List all available backup units.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ]
}

Create backup units

Create a backup unit. Backup units are resources, same as storage volumes or snapshots; they can be shared through groups in User management.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The backup unit to create.

object (DatacenterElementMetadata)
required
object (BackupUnitProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "backupunit",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve backup units

Retrieve the properties of the specified backup unit.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
backupunitId
required
string

The unique ID of the backup unit.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "backupunit",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify backup units

Modify the properties of the specified backup unit.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
backupunitId
required
string

The unique ID of the backup unit.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified backup unit.

object (DatacenterElementMetadata)
required
object (BackupUnitProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "backupunit",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete backup units

Remove the specified backup unit.

This process will delete:

  1. The backup plans inside the backup unit
  2. All backups, associated with this backup unit
  3. The backup user
  4. The backup unit itself
Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
backupunitId
required
string

The unique ID of the backup unit.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify backup units

Update the properties of the specified backup unit.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
backupunitId
required
string

The unique ID of the backup unit.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The properties of the backup unit to be updated.

name
required
string

The name of the resource (alphanumeric characters only).

password
string

The password associated with that resource.

email
string

The email associated with the backup unit. Bear in mind that this email does not be the same email as of the user.

Responses

Request samples

Content type
application/json
{
  • "name": "BackupUnitName",
  • "password": "mypass123",
  • "email": "email@email.com"
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "backupunit",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve BU single sign-on URLs

Retrieve a single sign-on URL for the specified backup unit.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
backupunitId
required
string

The unique ID of the backup unit.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json

Kubernetes

IONOS' Managed Kubernetes (K8s) consist of two central building blocks:

First, the Kubernetes cluster provides the control plane, although it is not directly visible.

Second, the node pools provide the worker nodes. While these are visible in a VDC, as Kubernetes is built on top of the compute engine, i.e., servers, volumes, etc.

Get Kubernetes Clusters

Retrieves a list of all K8s clusters provisioned under your account.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "k8s",
  • "type": "collection",
  • "items": [
    ]
}

Create a Kubernetes Cluster

Creates a K8s cluster provisioned under your account.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The Kubernetes cluster to create.

object (DatacenterElementMetadata)
required
object (KubernetesClusterPropertiesForPost)
object (KubernetesClusterEntities)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "1e072e52-2ed3-492f-b6b6-c6b116907527",
  • "type": "k8s",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Get a Kubernetes Cluster by ID

Retrieves the K8s cluster specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the K8s cluster to be retrieved.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "1e072e52-2ed3-492f-b6b6-c6b116907527",
  • "type": "k8s",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Modify a Kubernetes Cluster by ID

Modifies the K8s cluster specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified Kubernetes cluster.

object (DatacenterElementMetadata)
required
object (KubernetesClusterPropertiesForPut)
object (KubernetesClusterEntities)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    },
  • "entities": {
    }
}

Response samples

Content type
application/json
{
  • "id": "1e072e52-2ed3-492f-b6b6-c6b116907527",
  • "type": "k8s",
  • "metadata": {
    },
  • "properties": {
    },
  • "entities": {
    }
}

Delete a Kubernetes Cluster by ID

Deletes the K8s cluster specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Get Kubernetes Configuration File

Retrieves the configuration file for the specified K8s cluster. You can define the format (YAML or JSON) of the returned file in the Accept header. By default, 'application/yaml' is specified.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
No sample

Get Kubernetes Node Pools

Retrieves a list of K8s node pools of a cluster specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "1e072e52-2ed3-492f-b6b6-c6b116907527/nodepools",
  • "type": "collection",
  • "items": [
    ]
}

Create a Kubernetes Node Pool

Creates a node pool inside the specified K8s cluster.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The Kubernetes node pool to create.

object (DatacenterElementMetadata)
required
object (KubernetesNodePoolPropertiesForPost)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "1e072e52-2ed3-492f-b6b6-c6b116907527",
  • "type": "nodepool",
  • "metadata": {
    },
  • "properties": {
    }
}

Get a Kubernetes Node Pool by ID

Retrieves the K8s node pool specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

nodepoolId
required
string

The unique ID of the Kubernetes node pool.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "1e072e52-2ed3-492f-b6b6-c6b116907527",
  • "type": "nodepool",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a Kubernetes Node Pool by ID

Modifies the K8s node pool specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

nodepoolId
required
string

The unique ID of the Kubernetes node pool.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

Details of the Kubernetes Node Pool

object (DatacenterElementMetadata)
required
object (KubernetesNodePoolPropertiesForPut)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "1e072e52-2ed3-492f-b6b6-c6b116907527",
  • "type": "nodepool",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete a Kubernetes Node Pool by ID

Deletes the K8s node pool specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

nodepoolId
required
string

The unique ID of the Kubernetes node pool.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Get Kubernetes Nodes

Retrieves the list of all K8s nodes of the specified node pool.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

nodepoolId
required
string

The unique ID of the Kubernetes node pool.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Get Kubernetes Node by ID

Retrieves the K8s node specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

nodepoolId
required
string

The unique ID of the Kubernetes node pool.

nodeId
required
string

The unique ID of the Kubernetes node.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{}

Delete a Kubernetes Node by ID

Deletes the K8s node specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

nodepoolId
required
string

The unique ID of the Kubernetes node pool.

nodeId
required
string

The unique ID of the Kubernetes node.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Recreate a Kubernetes Node by ID

Recreates the K8s node specified by its ID.

If a node becomes unusable, Managed Kubernetes allows you to recreate it with a configuration based on the node pool template. Once the status is 'Active,' all the pods from the failed node will be migrated to the new node. The node pool has an additional billable 'active' node during this process.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
k8sClusterId
required
string

The unique ID of the Kubernetes cluster.

nodepoolId
required
string

The unique ID of the Kubernetes node pool.

nodeId
required
string

The unique ID of the Kubernetes node.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Get Kubernetes Versions

Lists available K8s versions.

Authorizations:
BasicAuthenticationTokenAuthentication

Responses

Response samples

Content type
application/json
[
  • "string"
]

Get Default Kubernetes Version

Retrieves the current default K8s version to be used by the clusters and node pools.

Authorizations:
BasicAuthenticationTokenAuthentication

Responses

Response samples

Content type
application/json
"1.21.4"

Cross Connects

Cross Connect allows you to connect virtual data centers (VDC) with each other using a private LAN. The VDCs to be connected need to belong to the same IONOS Cloud contract and location. You can only use private LANs for a Cross Connect connection. A LAN can only be a part of one Cross Connect.

The IP addresses of the NICs used for the Cross Connect connection may not be used in more than one NIC and they need to belong to the same IP range.

List Cross Connects

List all Cross Connects. For contract owner and administrators it returns all cross connects in your contract. For non administrator users it only returns the cross connects you are granted access via the user groups you are member of.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ]
}

Create a Cross Connect

Creates a Cross-Connect. Only contract owners, administrators and users with createPcc user privilege can create a cross connect. Please note that connecting a LAN to a cross connect is to be done via the /lan endpoint.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The Cross Connect to create.

type
string
Enum: "datacenter" "server" "volume" "nic" "loadbalancer" "location" "firewall-rule" "flow-log" "image" "snapshot" "lan" "ipblock" "pcc" "contract" "user" "group" "collection" "resource" "request" "request-status" "s3key" "backupunit" "label" "k8s" "nodepool" "template" "networkloadbalancer" "forwarding-rule" "natgateway" "natgateway-rule" "node" "applicationloadbalancer" "target-group"

The type of object that has been created.

object (DatacenterElementMetadata)
required
object (PrivateCrossConnectProperties)

Responses

Request samples

Content type
application/json
{
  • "type": "pcc",
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "pcc",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve a Cross Connect

Retrieve a Cross Connect by the resource ID. Cross Connect ID is in the response body when the Cross Connect is created and in the list of Cross Connects, returned by GET. For contract owner and administrators all cross connects in your contract can be retrieved. For non administrator users it only returns the cross connects you are granted access via the user groups you are member of.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
pccId
required
string

The unique ID of the Cross Connect.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "pcc",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete Cross Connects

Remove the specified Cross Connect. Cross connect can be deleted only if it is not connected to any LANs. For non administrator users a cross connect can be deleted only if you are granted access via the user groups you are member of.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
pccId
required
string

The unique ID of the Cross Connect.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Partially modify a Cross Connects

Update the properties of the specified Cross Connect.For non administrator users you can only update the cross connects you are granted access via the user groups you are member of

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
pccId
required
string

The unique ID of the Cross Connect.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The properties of the Cross Connect to be updated.

name
string

The name of the Cross Connect.

description
string

Human-readable description of the Cross Connect.

Responses

Request samples

Content type
application/json
{
  • "name": "My resource",
  • "description": "Cross Connect between datacenter 'A' and datacenter 'B' "
}

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "pcc",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Labels

List labels

List all available labels.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "labels",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ]
}

Retrieve labels by URN

Retrieve a label by label URN.

The URN is unique for each label, and consists of:

urn:label:::

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
labelurn
required
string

The label URN; URN is unique for each label, and consists of:

urn:label:::

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "urn:label:datacenter:700e1cab-99b2-4c30-ba8c-1d273ddba022:environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {}
}

List data center labels

List all the the labels for the specified data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "labels",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Data Center Label

Adds a new label to the specified data center.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The label to create.

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve data center labels

Retrieve the properties of the specified data center label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a Data Center Label by Key

Modifies the specified data center label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified label

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete data center labels

Delete the specified data center label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

List server labels

List all the the labels for the specified server.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "labels",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Server Label

Adds a new label to the specified server.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The label to create.

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve server labels

Retrieve the properties of the specified server label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a Server Label

Modifies the specified server label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified label

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete server labels

Delete the specified server label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

serverId
required
string

The unique ID of the server.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

List volume labels

List all the the labels for the specified volume.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

volumeId
required
string

The unique ID of the volume.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "labels",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Volume Label

Adds a new label to the specified volume.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

volumeId
required
string

The unique ID of the volume.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The label to create.

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve volume labels

Retrieve the properties of the specified volume label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

volumeId
required
string

The unique ID of the volume.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a Volume Label

Modifies the specified volume label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

volumeId
required
string

The unique ID of the volume.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified label

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete volume labels

Delete the specified volume label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
datacenterId
required
string

The unique ID of the data center.

volumeId
required
string

The unique ID of the volume.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

List snapshot labels

List all the the labels for the specified snapshot.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
snapshotId
required
string

The unique ID of the snapshot.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "labels",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create a Snapshot Label

Adds a new label to the specified snapshot.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
snapshotId
required
string

The unique ID of the snapshot.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The label to create.

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve snapshot labels

Retrieve the properties of the specified snapshot label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
snapshotId
required
string

The unique ID of the snapshot.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a Snapshot Label by ID

Modifies the specified snapshot label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
snapshotId
required
string

The unique ID of the snapshot.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified label

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete snapshot labels

Delete the specified snapshot label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
snapshotId
required
string

The unique ID of the snapshot.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

List IP block labels

List all the the labels for the specified IP block.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
ipblockId
required
string

The unique ID of the IP block.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "labels",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create IP block labels

Add a new label to the specified IP block.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
ipblockId
required
string

The unique ID of the IP block.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The label to create.

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve IP block labels

Retrieve the properties of the specified IP block label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
ipblockId
required
string

The unique ID of the IP block.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify a IP Block Label by ID

Modifies the specified IP block label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
ipblockId
required
string

The unique ID of the IP block.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified label

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete IP block labels

Delete the specified IP block label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
ipblockId
required
string

The unique ID of the IP block.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

List image labels

List all the the labels for the specified image.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
imageId
required
string

The unique ID of the image.

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "labels",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ],
  • "offset": 0,
  • "limit": 1000,
  • "_links": {
    }
}

Create an Image Label

Adds a new label to the specified image.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
imageId
required
string

The unique ID of the image

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The label to create.

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Retrieve image labels

Retrieve the properties of the specified image label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
imageId
required
string

The unique ID of the image.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Modify an Image Label by Key

Modifies the specified data center label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
imageId
required
string

The unique ID of the image.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Request Body schema: application/json

The modified label

object (NoStateMetaData)
required
object (LabelResourceProperties)

Responses

Request samples

Content type
application/json
{
  • "metadata": { },
  • "properties": {
    }
}

Response samples

Content type
application/json
{
  • "id": "environment",
  • "type": "label",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}

Delete image label

Delete the specified image label.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
imageId
required
string

The unique ID of the image.

key
required
string

The label key

query Parameters
pretty
boolean
Default: true

Controls whether the response is pretty-printed (with indentations and new lines).

depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

header Parameters
X-Contract-Number
integer <int32>

Users with multiple contracts must provide the contract number, for which all API requests are to be executed.

Responses

Response samples

Content type
application/json
{
  • "httpStatus": 400,
  • "messages": [
    ]
}

Templates

Get Cubes Templates

Retrieves all available templates.

Templates provide a pre-defined configuration for Cube servers.

Templates are read-only and cannot be created, modified, or deleted by users.

Authorizations:
BasicAuthenticationTokenAuthentication
query Parameters
depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "collection",
  • "href": "<RESOURCE-URI>",
  • "items": [
    ]
}

Get Cubes Template by ID

Retrieves the properties of the Cubes template specified by its ID.

Authorizations:
BasicAuthenticationTokenAuthentication
path Parameters
templateId
required
string

The unique template ID.

query Parameters
depth
integer <int32> [ 0 .. 10 ]
Default: 0

Controls the detail depth of the response objects. GET /datacenters/[ID] - depth=0: Only direct properties are included; children (servers and other elements) are not included. - depth=1: Direct properties and children references are included. - depth=2: Direct properties and children properties are included. - depth=3: Direct properties and children properties and children's children are included. - depth=... and so on

Responses

Response samples

Content type
application/json
{
  • "id": "15f67991-0f51-4efc-a8ad-ef1fb31a480c",
  • "type": "template",
  • "href": "<RESOURCE-URI>",
  • "metadata": {
    },
  • "properties": {
    }
}