FCU API 2016-09-15

The Flexible Compute Unit (FCU) API enables you to manage your instances in the OUTSCALE Cloud.
It is compliant with the Elastic Compute Cloud (EC2) API of Amazon Web Services (AWS). See the AWS Compatibility Matrix.

Throttling: To protect against overloads, the number of identical requests allowed in a given time period is limited.
Brute force: To protect against brute force attacks, the number of failed authentication attempts in a given time period is limited.

Base URLs:

Terms of service. Email: support@outscale.com. License: BSD 3 Clause.

Authentication Schemes

Access Key/Secret Key

The main way to authenticate your requests to this API is to use an access key and a secret key.
The mechanism behind this is based on AWS Signature Version 4, whose technical implementation details are described in Signature of API Requests.

In practice, the way to specify your access key and secret key depends on the tool or SDK you want to use to interact with the API.

For example, if you use OSC CLI:

  1. You need to create an ~/.osc/config.json file to specify your access key, secret key, and the Region of your account.
  2. You then specify the --profile option when executing OSC CLI commands.

For more information, see Installing and Configuring OSC CLI.

See the code samples in each section of this documentation for specific examples in different programming languages.
For more information about access keys, see About Access Keys.

No Authentication

A few API actions do not require any authentication. They are indicated as such in this documentation.

Other Security Mechanisms

In parallel with the authentication schemes, you can add other security mechanisms to your OUTSCALE account, for example to restrict API requests by IP or other criteria.
For more information, see Managing Your API Accesses.

Addresses

AllocateAddress

GET /AllocateAddress

Acquires an External IP (EIP) for your account.
An EIP is a static IP designed for dynamic Cloud computing. It can be used for instances in the public Cloud (standard) or in a Virtual Private Cloud (VPC), for a network interface, or for a NAT gateway.

For more information, see About Public IPs.
This AWS-compliant method corresponds to CreatePublicIp in the OUTSCALE API.

Code samples

osc-cli fcu AllocateAddress --profile "default" \
  --Domain "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AllocateAddress' \
  --data-urlencode 'Domain=string'

Available Parameters

Name Type Description
Domain string The type of platform in which you want to use the EIP (standard | vpc).

Responses

Status Description Schema
200 The HTTP 200 response (OK). AllocateAddressResponse

Example responses

200 Response

{
  "allocationId": "string",
  "domain": "string",
  "publicIp": "string",
  "requestId": "string"
}

AssociateAddress

GET /AssociateAddress

Associates an External IP (EIP) with an instance or a network interface, in the public Cloud or in a Virtual Private Cloud (VPC). You can associate an EIP with only one instance or network interface at a time.
To associate an EIP in a VPC, ensure that the VPC has an Internet gateway attached. For more information, see the AttachInternetGateway method.
By default, the EIP is disassociated every time you stop and start the instance. For a persistent association, you can add the osc.fcu.eip.auto-attach tag to the instance with the EIP as value. For more information, see the CreateTags method.

[IMPORTANT]
You can associate an EIP with a NAT gateway only when creating the NAT gateway. To modify its EIP, you need to delete the NAT gateway and re-create it with the new EIP. For more information, see the CreateNatGateway method.

This AWS-compliant method corresponds to LinkPublicIp in the OUTSCALE API.

Code samples

osc-cli fcu AssociateAddress --profile "default" \
  --AllocationId "string" \
  --AllowReassociation True \
  --InstanceId "string" \
  --NetworkInterfaceId "string" \
  --PrivateIpAddress "string" \
  --PublicIp "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AssociateAddress' \
  --data-urlencode 'AllocationId=string' \
  --data-urlencode 'AllowReassociation=true' \
  --data-urlencode 'InstanceId=string' \
  --data-urlencode 'NetworkInterfaceId=string' \
  --data-urlencode 'PrivateIpAddress=string' \
  --data-urlencode 'PublicIp=string'

Available Parameters

Name Type Description
AllocationId string The allocation ID of the EIP. In a VPC, this parameter is required.
AllowReassociation boolean - If set to true, allows the EIP to be associated with the instance or network interface that you specify even if it is already associated with another instance or network interface.
- If set to false, prevents the EIP from being associated with the instance or network interface that you specify if it is already associated with another instance or network interface.

(By default, true in the public Cloud, false in a VPC.)
InstanceId string The ID of the instance.
- In the public Cloud, this parameter is required.
- In a VPC, this parameter is required if the instance has only one network interface. Otherwise, you need to specify the NetworkInterfaceId parameter instead. You cannot specify both parameters at the same time.
NetworkInterfaceId string (VPC only) The ID of the network interface.
This parameter is required if the instance has more than one network interface attached. Otherwise, you need to specify the InstanceId parameter instead. You cannot specify both parameters at the same time.
PrivateIpAddress string (VPC only) The primary or secondary private IP of the specified network interface. By default, the primary private IP.
PublicIp string The EIP. In the public Cloud, this parameter is required.

Responses

Status Description Schema
200 The HTTP 200 response (OK). AssociateAddressResponse

Example responses

200 Response

{
  "associationId": "string",
  "requestId": "string",
  "return": true
}

DescribeAddresses

GET /DescribeAddresses

Describes one or more External IPs (EIPs) allocated to your account.
By default, this action returns information about all your EIPs: available, associated with an instance or network interface, or used for a NAT gateway.
You can use the Filter.N parameter to filter your EIPs on the following properties:

  • domain: Whether the EIP is for use in the public Cloud or in a VPC.
  • instance-id: The ID of the instance the address is associated with (if any).
  • public-ip: The EIP.
  • allocation-id: The allocation ID for the EIP.
  • association-id: The association ID for the EIP.
  • network-interface-id: The ID of the network interface the address is associated with (if any).
  • network-interface-owner-id: The account ID of the owner.
  • private-ip-address: The private IP associated with the EIP.

    This AWS-compliant method corresponds to ReadPublicIps in the OUTSCALE API.

Code samples

osc-cli fcu DescribeAddresses --profile "default" \
  --AllocationId '["string"]' \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --PublicIp '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeAddresses' \
  --data-urlencode 'AllocationId.1=string' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'PublicIp.1=string'

Available Parameters

Name Type Description
AllocationId [string] One ore more allocation IDs.
Filter [Filter] One or more filters.
» Name string The name of the filter.
» Value [string] One or more filter values.
PublicIp [string] One or more EIPs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeAddressesResponse

Example responses

200 Response

{
  "addressesSet": [
    {
      "allocationId": "string",
      "associationId": "string",
      "domain": "string",
      "instanceId": "string",
      "networkInterfaceId": "string",
      "networkInterfaceOwnerId": "string",
      "privateIpAddress": "string",
      "publicIp": "string"
    }
  ],
  "requestId": "string"
}

DisassociateAddress

GET /DisassociateAddress

Disassociates an External IP (EIP) from the instance or network interface it is associated with.

[IMPORTANT]
To disassociate an EIP from a NAT gateway, you need to delete the NAT gateway. For more information, see the DeleteNatGateway method.

This AWS-compliant method corresponds to UnlinkPublicIp in the OUTSCALE API.

Code samples

osc-cli fcu DisassociateAddress --profile "default" \
  --AssociationId "string" \
  --PublicIp "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DisassociateAddress' \
  --data-urlencode 'AssociationId=string' \
  --data-urlencode 'PublicIp=string'

Available Parameters

Name Type Description
AssociationId string The ID that represents the association of the EIP with the instance or the network interface (required in a VPC).
PublicIp string The EIP (required in the public Cloud).

Responses

Status Description Schema
200 The HTTP 200 response (OK). DisassociateAddressResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

ReleaseAddress

GET /ReleaseAddress

Releases an External IP (EIP).
You can release an EIP associated with your account. This address is released in the EIP pool and can be used by someone else. Before releasing an EIP, ensure you updated all your resources communicating with this address.

This AWS-compliant method corresponds to DeletePublicIp in the OUTSCALE API.

Code samples

osc-cli fcu ReleaseAddress --profile "default" \
  --AllocationId "string" \
  --PublicIp "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ReleaseAddress' \
  --data-urlencode 'AllocationId=string' \
  --data-urlencode 'PublicIp=string'

Available Parameters

Name Type Description
AllocationId string The allocation ID of the EIP in your account (required in a VPC).
PublicIp string The EIP (required in the public Cloud).

Responses

Status Description Schema
200 The HTTP 200 response (OK). ReleaseAddressResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

Customer Gateways

CreateCustomerGateway

GET /CreateCustomerGateway

Provides information about your customer gateway.
This action registers information to identify the customer gateway that you deployed in your network.
To open a tunnel to the customer gateway, you must provide the communication protocol type, the fixed public IP of the gateway, and an Autonomous System Number (ASN).

For more information, see About Client Gateways.
This AWS-compliant method corresponds to CreateClientGateway in the OUTSCALE API.

Code samples

osc-cli fcu CreateCustomerGateway --profile "default" \
  --BgpAsn 0 \
  --IpAddress "string" \
  --Type "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateCustomerGateway' \
  --data-urlencode 'BgpAsn=0' \
  --data-urlencode 'IpAddress=string' \
  --data-urlencode 'Type=string'

Available Parameters

Name Type Description
BgpAsn integer (int64) The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your customer gateway through the Internet (by default, 65000). This number must be between 1 and 4294967295. If you do not have an ASN, you can choose one between 64512 and 65534, or between 4200000000 and 4294967294.
IpAddress (required) string The public fixed IPv4 address of your customer gateway.
Type (required) string The communication protocol used to establish tunnel with your customer gateway (only ipsec.1 is supported).

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateCustomerGatewayResponse

Example responses

200 Response

{
  "customerGateway": {
    "bgpAsn": 0,
    "customerGatewayId": "string",
    "ipAddress": "string",
    "state": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "type": "string"
  },
  "requestId": "string"
}

DeleteCustomerGateway

GET /DeleteCustomerGateway

Deletes a customer gateway.
You must delete the VPN connection before deleting the customer gateway.

This AWS-compliant method corresponds to DeleteClientGateway in the OUTSCALE API.

Code samples

osc-cli fcu DeleteCustomerGateway --profile "default" \
  --CustomerGatewayId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteCustomerGateway' \
  --data-urlencode 'CustomerGatewayId=string'

Available Parameters

Name Type Description
CustomerGatewayId (required) string The ID of the customer gateway you want to delete.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteCustomerGatewayResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeCustomerGateways

GET /DescribeCustomerGateways

Describes one or more of your customer gateways.
You can use the Filter.N parameter to filter the customer gateways on the following properties:

  • state: The state of the customer gateway (pending | available | deleting | deleted).
  • customer-gateway-id: The ID of the customer gateway.
  • ip-address: The public IPv4 address of the customer gateway.
  • bgp-asn: The ASN number.
  • type: The type of communication tunnel to the gateway.
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.

[NOTE]
If you provide an invalid customer gateway ID, a response 400 is returned without any information about customer gateways for which you provided a valid ID.

This AWS-compliant method corresponds to ReadClientGateways in the OUTSCALE API.

Code samples

osc-cli fcu DescribeCustomerGateways --profile "default" \
  --CustomerGatewayId '["string"]' \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeCustomerGateways' \
  --data-urlencode 'CustomerGatewayId.1=string' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string'

Available Parameters

Name Type Description
CustomerGatewayId [string] One or more customer gateways IDs.
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeCustomerGateways \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeCustomerGatewaysResponse

Example responses

200 Response

{
  "customerGatewaySet": [
    {
      "bgpAsn": 0,
      "customerGatewayId": "string",
      "ipAddress": "string",
      "state": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "type": "string"
    }
  ],
  "requestId": "string"
}

DHCP Options

AssociateDhcpOptions

GET /AssociateDhcpOptions

Associates a DHCP options set with a specified Virtual Private Cloud (VPC).

This AWS-compliant method corresponds to UpdateNet in the OUTSCALE API.

Code samples

osc-cli fcu AssociateDhcpOptions --profile "default" \
  --DhcpOptionsId "string" \
  --VpcId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AssociateDhcpOptions' \
  --data-urlencode 'DhcpOptionsId=string' \
  --data-urlencode 'VpcId=string'

Available Parameters

Name Type Description
DhcpOptionsId (required) string The ID of the DHCP options set, or default if you want to associate the default one.
VpcId (required) string The ID of the VPC.

Responses

Status Description Schema
200 The HTTP 200 response (OK). AssociateDhcpOptionsResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

CreateDhcpOptions

GET /CreateDhcpOptions

Creates a set of DHCP options that you can then associate with a Virtual Private Cloud (VPC).

For more information, see About DHCP Options.
This AWS-compliant method corresponds to CreateDhcpOptions in the OUTSCALE API.

Code samples

osc-cli fcu CreateDhcpOptions --profile "default" \
  --DhcpConfiguration '[
      {
        "Key": "string",
        "Value": ["string"],
      },
    ]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateDhcpOptions' \
  --data-urlencode 'DhcpConfiguration.1.Key=string' \
  --data-urlencode 'DhcpConfiguration.1.Value.1=string'

Available Parameters

Name Type Description
DhcpConfiguration (required) [DhcpConfiguration] A DHCP configuration option.
» Key string The type of DHCP option (domain-name-servers | domain-name | ntp-servers | log-servers). For more information, see About DHCP Options.
» Value [string] The values for the DHCP option (one to four IPs for the domain-name-servers, ntp-servers and log-servers options, or a domain name for the domain-name option). For more information, see About DHCP Options.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateDhcpOptionsResponse

Example responses

200 Response

{
  "dhcpOptions": {
    "dhcpConfigurationSet": [
      {
        "key": "string",
        "valueSet": [
          {
            "value": "string"
          }
        ]
      }
    ],
    "dhcpOptionsId": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ]
  },
  "requestId": "string"
}

DeleteDhcpOptions

GET /DeleteDhcpOptions

Deletes a specified DHCP options set.
Before deleting a DHCP options set, you must disassociate it from the VPCs you associated it with. To do so, you need to associate with each VPC a new set of DHCP options, or the default one if you do not want to associate any DHCP options with the VPC.

[IMPORTANT]
You cannot delete the default set.

This AWS-compliant method corresponds to DeleteDhcpOptions in the OUTSCALE API.

Code samples

osc-cli fcu DeleteDhcpOptions --profile "default" \
  --DhcpOptionsId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteDhcpOptions' \
  --data-urlencode 'DhcpOptionsId=string'

Available Parameters

Name Type Description
DhcpOptionsId (required) string The ID of the DHCP options set.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteDhcpOptionsResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeDhcpOptions

GET /DescribeDhcpOptions

Retrieves information about the content of one or more DHCP options sets.
You can use the Filter.N parameter to filter the described DHCP options sets on the following properties:

  • dhcp-options-id: The ID of a set of DHCP options.
  • key: The key for one of the options (domain-name-servers, domain-name, ntp-servers, or log-servers).
  • value: The value for one of the options.
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.

    This AWS-compliant method corresponds to ReadDhcpOptions in the OUTSCALE API.

Code samples

osc-cli fcu DescribeDhcpOptions --profile "default" \
  --DhcpOptionsId '["string"]' \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeDhcpOptions' \
  --data-urlencode 'DhcpOptionsId.1=string' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string'

Available Parameters

Name Type Description
DhcpOptionsId [string] One or more IDs of DHCP options sets.
If you do not specify any ID, this action describes all your DHCP options sets.
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeDhcpOptions \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeDhcpOptionsResponse

Example responses

200 Response

{
  "dhcpOptionsSet": [
    {
      "dhcpConfigurationSet": [
        {
          "key": "string",
          "valueSet": [
            {
              "value": "string"
            }
          ]
        }
      ],
      "dhcpOptionsId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ]
    }
  ],
  "requestId": "string"
}

Images

CopyImage

GET /CopyImage

Copies an OUTSCALE machine image (OMI) to your account, from an account in the same Region.
To do so, the owner of the source OMI must share it with your account. For more information about how to share an OMI with another account, see ModifyImageAttribute.
The copy of the source OMI is independent and belongs to you.

[IMPORTANT]
To copy an OMI between accounts in different Regions, the owner of the source OMI must export it to an OUTSCALE Object Storage (OOS) bucket using the CreateImageExportTask method, and then you need to import it using the RegisterImage method. For more information, see CreateImageExportTask and RegisterImage.

This AWS-compliant method corresponds to CreateImage in the OUTSCALE API.

Code samples

osc-cli fcu CopyImage --profile "default" \
  --Description "string" \
  --DryRun False \
  --Name "string" \
  --SourceImageId "string" \
  --SourceRegion "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CopyImage' \
  --data-urlencode 'Description=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'Name=string' \
  --data-urlencode 'SourceImageId=string' \
  --data-urlencode 'SourceRegion=string'

Available Parameters

Name Type Description
Description string A description of the new OMI.
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
Name string The name of the new OMI. This name must be unique for your account.
If no name is specified, the name of the new OMI follows this pattern: "source OMI name-copyX", where X is the number of the copy.
SourceImageId (required) string The ID of the OMI you want to copy.
SourceRegion (required) string The name of the source Region, which must be the same as the Region of your account.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CopyImageResponse

Example responses

200 Response

{
  "imageId": "string",
  "requestId": "string"
}

CreateImage

GET /CreateImage

Creates an OMI from an existing instance which is either running or stopped.
This action also creates a snapshot of the root volume of the instance, as well as a snapshot of each BSU volume attached to the instance.

For more information, see About OMIs.
This AWS-compliant method corresponds to CreateImage in the OUTSCALE API.

Code samples

osc-cli fcu CreateImage --profile "default" \
  --Description "string" \
  --DryRun False \
  --InstanceId "string" \
  --Name "string" \
  --NoReboot True

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateImage' \
  --data-urlencode 'Description=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'InstanceId=string' \
  --data-urlencode 'Name=string' \
  --data-urlencode 'NoReboot=true'

Available Parameters

Name Type Description
Description string A description for the new OMI.
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
InstanceId (required) string The ID of the instance from which you want to create the OMI.
Name (required) string A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (_), spaces ( ), parentheses (()), slashes (/), periods (.), or dashes (-).
NoReboot boolean If set to false, the instance shuts down before creating the OMI and then reboots. If set to true, the instance does not.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateImageResponse

Example responses

200 Response

{
  "imageId": "string",
  "requestId": "string"
}

CreateImageExportTask

GET /CreateImageExportTask

Exports an OUTSCALE machine image (OMI) to an OUTSCALE Object Storage (OOS) bucket.
This action enables you to copy an OMI between accounts in in different Regions. To copy an OMI in the same Region, you can also use the CopyImage method. For more information, see CopyImage.
The copy of the OMI belongs to you and is independent from the source OMI.

[IMPORTANT]
You cannot export a shared or public OMI, as they do not belong to you. To do so, you must first copy it to your account. The copy then belongs to you and you can export it. For more information, see CopyImage.

For more information, see About OMIs.
This AWS-compliant method corresponds to CreateImageExportTask in the OUTSCALE API.

Code samples

osc-cli fcu CreateImageExportTask --profile "default" \
  --ExportToOsu '{
      "DiskImageFormat": "string",
      "OsuAkSk": {
        "AccessKey": "string",
        "SecretKey": "string",
      },
      "OsuBucket": "string",
      "OsuPrefix": "string",
    }' \
  --ImageId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateImageExportTask' \
  --data-urlencode 'ExportToOsu.DiskImageFormat=string' \
  --data-urlencode 'ExportToOsu.OsuAkSk.AccessKey=string' \
  --data-urlencode 'ExportToOsu.OsuAkSk.SecretKey=string' \
  --data-urlencode 'ExportToOsu.OsuBucket=string' \
  --data-urlencode 'ExportToOsu.OsuPrefix=string' \
  --data-urlencode 'ImageId=string'

Available Parameters

Name Type Description
ExportToOsu (required) ExportToOsu_0 Information about the OMI export task.
» DiskImageFormat (required) string The format of the export disk (qcow2 | raw).
» OsuAkSk OsuAkSk The access key and secret key of the OOS account used to access the bucket.
»» AccessKey string The access key of the OOS account that enables you to access the bucket.
»» SecretKey string The secret key of the OOS account that enables you to access the bucket.
» OsuBucket (required) string The name of the OOS bucket where you want to export the OMI.
» OsuPrefix string The prefix for the key of the OOS object corresponding to the image.
ImageId (required) string The ID of the OMI to export.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateImageExportTaskResponse

Example responses

200 Response

{
  "imageExportTask": {
    "exportToOsu": {
      "diskImageFormat": "string",
      "osuAkSk": {
        "AccessKey": "string",
        "SecretKey": "string"
      },
      "osuBucket": "string",
      "osuManifestUrl": "string",
      "osuPrefix": "string"
    },
    "imageExport": {
      "imageId": "string"
    },
    "imageExportTaskId": "string",
    "state": "string",
    "statusMessage": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ]
  },
  "requestId": "string"
}

DeregisterImage

GET /DeregisterImage

Deregisters an OUTSCALE machine image (OMI) so that you cannot use it anymore to launch instances. However, you can still use instances already launched from this OMI.

This AWS-compliant method corresponds to DeleteImage in the OUTSCALE API.

Code samples

osc-cli fcu DeregisterImage --profile "default" \
  --ImageId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeregisterImage' \
  --data-urlencode 'ImageId=string'

Available Parameters

Name Type Description
ImageId (required) string The ID of the OMI you want to deregister.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeregisterImageResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeImageAttribute

GET /DescribeImageAttribute

Describes a specified attribute of an OMI.
You can specify only one attribute at a time.

This AWS-compliant method corresponds to ReadImages in the OUTSCALE API.

Code samples

osc-cli fcu DescribeImageAttribute --profile "default" \
  --Attribute "string" \
  --ImageId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeImageAttribute' \
  --data-urlencode 'Attribute=string' \
  --data-urlencode 'ImageId=string'

Available Parameters

Name Type Description
Attribute (required) string The OMI attribute (description | launchPermission | productCodes).
ImageId (required) string The ID of the OMI.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeImageAttributeResponse

Example responses

200 Response

{
  "description": {
    "value": "string"
  },
  "imageId": "string",
  "launchPermission": [
    {
      "group": "string",
      "userId": "string"
    }
  ],
  "productCodes": [
    {
      "productCode": "string",
      "type": "string"
    }
  ],
  "requestId": "string"
}

DescribeImageExportTasks

GET /DescribeImageExportTasks

Describes one or more image export tasks.

This AWS-compliant method corresponds to ReadImageExportTasks in the OUTSCALE API.

Code samples

osc-cli fcu DescribeImageExportTasks --profile "default" \
  --ImageExportTaskId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeImageExportTasks' \
  --data-urlencode 'ImageExportTaskId.1=string'

Available Parameters

Name Type Description
ImageExportTaskId [string] One or more image export tasks IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeImageExportTasksResponse

Example responses

200 Response

{
  "imageExportTaskSet": [
    {
      "exportToOsu": {
        "diskImageFormat": "string",
        "osuAkSk": {
          "AccessKey": "string",
          "SecretKey": "string"
        },
        "osuBucket": "string",
        "osuManifestUrl": "string",
        "osuPrefix": "string"
      },
      "imageExport": {
        "imageId": "string"
      },
      "imageExportTaskId": "string",
      "state": "string",
      "statusMessage": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ]
    }
  ],
  "requestId": "string"
}

DescribeImages

GET /DescribeImages

Describes one or more OMIs you can use.
You can filter the described OMIs using the ImageId.N, the Owner.N or the ExecutableBy.N parameters.
You can also use the Filter.N parameter to filter the OMIs on the following properties:

  • architecture: The architecture of the OMI (i386 | x86_64).
  • block-device-mapping.delete-on-termination: Whether the volume is deleted when terminating the instance.
  • block-device-mapping.device-name: The device name for the volume.
  • block-device-mapping.snapshot-id: The ID of the snapshot used to create the volume.
  • block-device-mapping.volume-size: The size of the volume, in gibibytes (GiB).
  • block-device-mapping.volume-type: The type of volume (standard | gp2 | io1).
  • description: The description of the OMI, provided when it was created.
  • hypervisor: The hypervisor type (always xen).
  • image-id: The ID of the OMI.
  • image-type: The type of OMI (always machine for official OMIs).
  • is-public: Whether the OMI has public launch permissions.
  • name: The name of the OMI, provided when it was created.
  • owner-alias: The account alias of the owner of the OMI.
  • owner-id: The account ID of the owner of the OMI.
  • platform: The platform.
  • product-code: The product code associated with the OMI.
  • product-code.type: The type of the product code associated with the OMI.
  • root-device-name: The device name of the root device (for example, /dev/sda1).
  • root-device-type: The type of root device used by the OMI (always ebs).
  • state: The current state of the OMI (pending | available | failed).
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.
  • virtualization-type: The virtualization type (always hvm).

    This AWS-compliant method corresponds to ReadImages in the OUTSCALE API.

Code samples

osc-cli fcu DescribeImages --profile "default" \
  --ExecutableBy '["string"]' \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --ImageId '["string"]' \
  --Owner '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeImages' \
  --data-urlencode 'ExecutableBy.1=string' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'ImageId.1=string' \
  --data-urlencode 'Owner.1=string'

Available Parameters

Name Type Description
ExecutableBy [string] The account IDs which have launch permissions for the OMIs.
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeImages \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
ImageId [string] One or more OMI IDs.
Owner [string] The account ID of one or more owners of OMIs. By default, all the OMIs for which you have launch permissions are described.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeImagesResponse

Example responses

200 Response

{
  "imagesSet": [
    {
      "architecture": "string",
      "blockDeviceMapping": [
        {
          "deviceName": "string",
          "ebs": {
            "deleteOnTermination": true,
            "iops": 0,
            "snapshotId": "string",
            "volumeSize": 0,
            "volumeType": "string"
          },
          "noDevice": "string",
          "virtualName": "string"
        }
      ],
      "description": "string",
      "hypervisor": "string",
      "imageId": "string",
      "imageLocation": "string",
      "imageOwnerAlias": "string",
      "imageOwnerId": "string",
      "imageState": "string",
      "imageType": "string",
      "isPublic": true,
      "name": "string",
      "platform": "string",
      "productCodes": [
        {
          "productCode": "string",
          "type": "string"
        }
      ],
      "rootDeviceName": "string",
      "rootDeviceType": "string",
      "stateReason": {
        "code": "string",
        "message": "string"
      },
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "virtualizationType": "string"
    }
  ],
  "requestId": "string"
}

ModifyImageAttribute

GET /ModifyImageAttribute

Modifies the specified attribute of an OUTSCALE machine image (OMI).
You can modify the permissions to access the OMI by adding or removing account IDs or groups. You can share an OMI with a user that is in the same Region. The user can create a copy of the OMI you shared, obtaining all the rights for the copy of the OMI. For more information, see CopyImage.

This AWS-compliant method corresponds to UpdateImage in the OUTSCALE API.

Code samples

osc-cli fcu ModifyImageAttribute --profile "default" \
  --Description '{
      "Value": "string",
    }' \
  --ImageId "string" \
  --LaunchPermission '{
      "Add": [
        {"Group": "string", "UserId": "string"},
      ],
      "Remove": [
        {"Group": "string", "UserId": "string"},
      ],
    }' \
  --ProductCode '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ModifyImageAttribute' \
  --data-urlencode 'Description.Value=string' \
  --data-urlencode 'ImageId=string' \
  --data-urlencode 'LaunchPermission.Add.1.Group=string' \
  --data-urlencode 'LaunchPermission.Add.1.UserId=string' \
  --data-urlencode 'LaunchPermission.Remove.1.Group=string' \
  --data-urlencode 'LaunchPermission.Remove.1.UserId=string' \
  --data-urlencode 'ProductCode.1=string'

Available Parameters

Name Type Description
Description Description_0 A new description of the resource.
» Value string The value specified for the resource attribute.
ImageId (required) string The ID of the OMI.
LaunchPermission LaunchPermission_0 Permissions to access the OMI. If you specify both Add and Remove attributes in the request, only Add is taken into account.
» Add [Add] The account ID you want to add to the list of launch permissions for the OMI.
»» Group string The name of the group (all if public).
»» UserId string The ID of the account.
» Remove [Remove] The account ID you want to remove from the list of launch permissions for the OMI.
»» Group string The name of the group (all if public).
»» UserId string The ID of the account.
ProductCode [string] One or more product codes to add to the OMI. Once a product code is applied to an OMI, it cannot be removed.

Responses

Status Description Schema
200 The HTTP 200 response (OK). ModifyImageAttributeResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

RegisterImage

GET /RegisterImage

Registers an OUTSCALE machine image (OMI) to finalize its creation process.
You can register an OMI from a snapshot of a root device to create an OMI based on this snapshot. You can also register an OMI that has been exported to an S3-compatible bucket to create a copy of it in your account. For more information about OMI export to an OUTSCALE Storage Service (OOS) bucket, see CreateImageExportTask.
You can register an OMI using a pre-signed URL of the manifest file of the OMI. You do not need any permission for this OMI, or the bucket in which it is contained. The manifest file is obsolete seven days after a completed export as it contains pre-signed URLs to the appropriate snapshots (pre-signed URL are valid for only seven days).
Once the OMI is registered, you can launch an instance from this OMI. The copy of the source OMI is independent and belongs to you.

This AWS-compliant method corresponds to CreateImage in the OUTSCALE API.

Code samples

osc-cli fcu RegisterImage --profile "default" \
  --Architecture "string" \
  --BlockDeviceMapping '[
      {
        "DeviceName": "string",
        "Ebs": {"DeleteOnTermination": True, "Iops": 0, "SnapshotId": "string", "VolumeSize": 0, "VolumeType": "string"},
        "NoDevice": "string",
        "VirtualName": "string",
      },
    ]' \
  --Description "string" \
  --ImageLocation "string" \
  --Name "string" \
  --RootDeviceName "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=RegisterImage' \
  --data-urlencode 'Architecture=string' \
  --data-urlencode 'BlockDeviceMapping.1.DeviceName=string' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.DeleteOnTermination=true' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.Iops=0' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.SnapshotId=string' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.VolumeSize=0' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.VolumeType=string' \
  --data-urlencode 'BlockDeviceMapping.1.NoDevice=string' \
  --data-urlencode 'BlockDeviceMapping.1.VirtualName=string' \
  --data-urlencode 'Description=string' \
  --data-urlencode 'ImageLocation=string' \
  --data-urlencode 'Name=string' \
  --data-urlencode 'RootDeviceName=string'

Available Parameters

Name Type Description
Architecture string The architecture of the OMI (set to i386 by default).
BlockDeviceMapping [BlockDeviceMapping_1] One or more Block Device Mapping entries.
» DeviceName string The device name for the volume. For a root device, you must use /dev/sda1. For other volumes, you must use /dev/sdX, /dev/sdXX, /dev/xvdX, or /dev/xvdXX (where the first X is a letter between b and z, and the second X is a letter between a and z).
» Ebs Ebs_0 One or more parameters to map a volume to DeviceName at launch.You can specify either Ebs or VirtualName, but not both.
»» DeleteOnTermination boolean By default or if set to true, the volume is deleted when terminating the instance. If false, the volume is not deleted when terminating the instance.
»» Iops integer The number of I/O operations per second. This parameter must be specified only if you create an io1 volume. The maximum number of IOPS allowed for io1 volumes is 13000 with a maximum performance ratio of 300 IOPS per gibibyte.
»» SnapshotId string The ID of the snapshot used to create the volume.
»» VolumeSize integer The size of the volume, in gibibytes (GiB).
If you specify a snapshot ID, the volume size must be at least equal to the snapshot size.
If you specify a snapshot ID but no volume size, the volume is created with a size similar to the snapshot one.
»» VolumeType string The type of the volume (standard | io1 | gp2). If not specified in the request, a standard volume is created. For more information about volumes types, see Volume Types and IOPS.
» NoDevice string Prevents a device from being mapped to DeviceName at launch, if the OMI used contains a mapping for DeviceName.
To use this parameter, specify any value other than null, for example an empty string. Example with OSC CLI:
  --BlockDeviceMapping.1.DeviceName "/dev/xvdb" \
  --BlockDeviceMapping.1.NoDevice ""
» VirtualName string The name of an ephemeral storage disk (ephemeralN) to map to DeviceName at launch.
You can specify either Ebs or VirtualName, but not both.
Description string A description for the OMI.
ImageLocation string The pre-signed URL of the OMI manifest file, or the full path to the OMI stored in a bucket. If you specify this parameter, a copy of the OMI is created in your account.
Name (required) string A unique name for the OMI.
RootDeviceName string The name of the root device. This value must be /dev/sda1.

Responses

Status Description Schema
200 The HTTP 200 response (OK). RegisterImageResponse

Example responses

200 Response

{
  "imageId": "string",
  "requestId": "string"
}

Instances

DescribeInstanceAttribute

GET /DescribeInstanceAttribute

Describes a specified attribute of an instance.
You can specify only one attribute at a time. You can describe the sourceDestCheck attribute only if the instance is in a Virtual Private Cloud (VPC).

This AWS-compliant method corresponds to ReadVms in the OUTSCALE API.

Code samples

osc-cli fcu DescribeInstanceAttribute --profile "default" \
  --Attribute "string" \
  --InstanceId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeInstanceAttribute' \
  --data-urlencode 'Attribute=string' \
  --data-urlencode 'InstanceId=string'

Available Parameters

Name Type Description
Attribute (required) string The instance attribute (ramdisk | userData | instanceInitiatedShutdownBehavior | rootDeviceName | instanceType | blockDeviceMapping | groupSet | sourceDestCheck | disableApiTermination).
InstanceId (required) string The ID of the instance.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeInstanceAttributeResponse

Example responses

200 Response

{
  "blockDeviceMapping": [
    {
      "deviceName": "string",
      "ebs": {
        "attachTime": "string",
        "deleteOnTermination": true,
        "status": "string",
        "volumeId": "string"
      }
    }
  ],
  "disableApiTermination": {
    "value": true
  },
  "ebsOptimized": {
    "value": true
  },
  "groupSet": [
    {
      "groupId": "string",
      "groupName": "string"
    }
  ],
  "instanceId": "string",
  "instanceInitiatedShutdownBehavior": {
    "value": "string"
  },
  "instanceType": {
    "value": "string"
  },
  "ramdisk": {
    "Value": "string"
  },
  "requestId": "string",
  "rootDeviceName": {
    "Value": "string"
  },
  "sourceDestCheck": {
    "value": true
  },
  "userData": {
    "value": "string"
  }
}

DescribeInstanceStatus

GET /DescribeInstanceStatus

Describes the status of one or more instances.
You can use the Filter.N parameter to filter the described instances status on the following properties:

  • availability-zone: The Availability Zone of the instance.
  • event.code: The code for the scheduled event (system-reboot | system-maintenance).
  • event.description: The description of the scheduled event.
  • instance-state-code: The state of the instance: -1 (quarantine), 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped).
  • instance-state-name: The state of the instance (pending | running | stopping | stopped | shutting-down | terminated | quarantine).

    This AWS-compliant method corresponds to ReadVmsState in the OUTSCALE API.

Code samples

osc-cli fcu DescribeInstanceStatus --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --IncludeAllInstances True \
  --InstanceId '["string"]' \
  --MaxResults 0 \
  --NextToken "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeInstanceStatus' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'IncludeAllInstances=true' \
  --data-urlencode 'InstanceId.1=string' \
  --data-urlencode 'MaxResults=0' \
  --data-urlencode 'NextToken=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeInstanceStatus \
  --Filter.1.Name "availability-zone" \
  --Filter.1.Value.1 "eu-west-2a"
» Name string The name of the filter.
» Value [string] One or more filter values.
IncludeAllInstances boolean If set to true, includes the status of all instances. By default or if set to false, only includes the status of running instances.
InstanceId [string] One or more instance IDs.
MaxResults integer The maximum number of results that can be returned in a single page. You can use NextToken to request the next results pages. This value is between 5 and 1000. If you provide a value larger than 1000, only 1000 results are returned. You cannot specify both this parameter and the InstanceId parameter in the same request.
NextToken string The token to request the next results page.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeInstanceStatusResponse

Example responses

200 Response

{
  "instanceStatusSet": [
    {
      "availabilityZone": "string",
      "eventsSet": [
        {
          "code": "string",
          "description": "string",
          "notAfter": "string",
          "notBefore": "string"
        }
      ],
      "instanceId": "string",
      "instanceState": {
        "code": 0,
        "name": "string"
      },
      "instanceStatus": {
        "details": [
          {
            "impairedSince": "string",
            "name": "string",
            "status": "string"
          }
        ],
        "status": "string"
      },
      "systemStatus": {
        "details": [
          {
            "impairedSince": "string",
            "name": "string",
            "status": "string"
          }
        ],
        "status": "string"
      }
    }
  ],
  "nextToken": "string",
  "requestId": "string"
}

DescribeInstances

GET /DescribeInstances

Describes one or more of your instances.
If you provide one or more instance IDs, this action returns a description for all of these instances. If you do not provide any instance ID, this action returns a description for all of the instances that belong to you. If you provide an invalid instance ID, an error is returned. If you provide the ID of an instance that does not belong to you, the description of this instance is not included in the response. The refresh interval for data returned by this action is one hour, meaning that a terminated instance may appear in the response.
You can use the Filter.N parameter to filter the described instances on the following properties:

  • architecture: The architecture of the instance (i386 | x86_64).
  • availability-zone: The Availability Zone of the instance.
  • block-device-mapping.attach-time: The attach time for a BSU volume mapped to the instance (for example, 2016-01-23T18:45:30.000Z).
  • block-device-mapping.delete-on-termination: Indicates whether the BSU volume is deleted when terminating the instance.
  • block-device-mapping.device-name: The device name for a BSU volume (in the format /dev/sdX, /dev/sdXX, /dev/xvdX, or /dev/xvdXX).
  • block-device-mapping.status: The status for the BSU volume (attaching | attached | detaching | detached).
  • block-device-mapping.volume-id: The volume ID of a BSU volume.
  • client-token: The idempotency token provided when launching the instance.
  • group-id: The ID of the security group for the instance (only in the public Cloud).
  • group-name: The name of the security group for the instance (only in the public Cloud).
  • hypervisor: The hypervisor type of the instance (ovm | xen).
  • image-id: The ID of the image used to launch the instance.
  • instance-id: The ID of the instance.
  • instance-lifecycle: Indicates whether the instance is a Spot Instance (spot).
  • instance-state-code: The state of the instance: -1 (quarantine), 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped).
  • instance-state-name: The state of the instance (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
  • instance-type: The instance type (for example, t2.micro). For more information, see VM Types.
  • instance.group-id: The ID of the security group for the instance.
  • instance.group-name: The name of the security group for the instance.
  • ip-address: The External IP (EIP) of the instance.
  • key-name: The name of the keypair used when launching the instance.
  • launch-index: The index for the instance when launching a group of several instances (for example, 0, 1, 2, and so on).
  • launch-time: The time when the instance was launched.
  • monitoring-state: Indicates whether monitoring is enabled for the instance (disabled | enabled).
  • owner-id: The OUTSCALE account ID of the instance owner.
  • placement-group-name: The name of the placement group for the instance.
  • platform: The platform. Use windows if you have Windows instances. Otherwise, leave this filter blank.
  • private-ip-address: The private IP of the instance.
  • product-code: The product code associated with the OMI used to launch the instance.
  • ramdisk-id: The ID of the RAM disk.
  • reason: The reason explaining the current state of the instance. This filter is like the state-reason-code one.
  • requester-id: The ID of the entity that launched the instance (for example, Cockpit or Auto Scaling).
  • reservation-id: The ID of the reservation of the instance, created every time you launch an instance. This reservation ID can can be associated with several instances when you lauch a group of instances using the same launch request.
  • root-device-name: The name of the root device for the instance (for example, /dev/sda1).
  • root-device-type: The root device type used by the instance (always ebs).
  • source-dest-check: If true, the source/destination checking is enabled. If false, it is disabled. This value must be false for a NAT instance to perform NAT (network address translation) in a VPC.
  • spot-instance-request-id: The ID of the Spot Instance request.
  • state-reason-code: The reason code for the state change.
  • state-reason-message: A message describing the state change.
  • subnet-id: The ID of the subnet for the instance.
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.
  • tenancy: The tenancy of an instance (dedicated | default | host).
  • virtualization-type: The virtualization type of the instance (always hvm).
  • vpc-id: The ID of the VPC in which the instance is running.
  • network-interface.description: The description of the network interface.
  • network-interface.subnet-id: The ID of the subnet for the network interface.
  • network-interface.vpc-id: The ID of the VPC for the network interface.
  • network-interface.network-interface-id: The ID of the network interface.
  • network-interface.owner-id: The ID of the owner of the network interface.
  • network-interface.availability-zone: The Availability Zone for the network interface.
  • network-interface.requester-id: The requester ID for the network interface.
  • network-interface.requester-managed: Indicates whether the network interface is managed by 3DS OUTSCALE.
  • network-interface.status: The status of the network interface (available | in-use).
  • network-interface.mac-address: The MAC address of the network interface.
  • network-interface.source-dest-check: If true, the source/destination checking of the network interface is enabled. If false, it is disabled. The value must be false for the network interface to perform NAT (network address translation) in a VPC.
  • network-interface.group-id: The ID of a security group associated with the network interface.
  • network-interface.group-name: The name of a security group associated with the network interface.
  • network-interface.attachment.attachment-id: The ID of the interface attachment.
  • network-interface.attachment.instance-id: The ID of the instance the network interface is attached to.
  • network-interface.attachment.instance-owner-id: The account ID of the ID of the instance the network interface is attached to.
  • network-interface.attachment.device-index: The device index the network interface is attached to.
  • network-interface.attachment.status: The status of the attachment (attaching | attached | detaching | detached).
  • network-interface.attachment.attach-time: The time when the network interface was attached to an instance.
  • network-interface.attachment.delete-on-termination: Indicates whether the attachment is deleted when terminating an instance.
  • network-interface.addresses.primary: Indicates whether the private IP of the network interface is the primary private IP.
  • network-interface.addresses.association.public-ip: The ID of the association of an EIP with a network interface.
  • network-interface.addresses.association.ip-owner-id: The account ID of the owner of the private IP associated with the network interface.
  • network-interface.addresses.private-ip-address: The private IP associated with the network interface.
  • network-interface.association.public-ip: The EIP associated with the network interface.
  • network-interface.association.ip-owner-id: The account ID of the owner of the EIP associated with the network interface.
  • network-interface.association.allocation-id: The allocation ID. This ID is returned when you allocate the EIP for your network interface.
  • network-interface.association.association-id: The association ID. This ID is returned when the network interface is associated with an IP.

    This AWS-compliant method corresponds to ReadVms in the OUTSCALE API.

Code samples

osc-cli fcu DescribeInstances --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --InstanceId '["string"]' \
  --MaxResults 0 \
  --NextToken "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeInstances' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'InstanceId.1=string' \
  --data-urlencode 'MaxResults=0' \
  --data-urlencode 'NextToken=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeInstances \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
InstanceId [string] One or more instance IDs.
MaxResults integer The maximum number of results that can be returned in a single page. You can use NextToken to retrieve next results pages. This value is in between 5 and 1000. If you provide a value larger than 1000, only 1000 results are returned. You cannot specify both this parameter and the InstanceId parameter in the same request.
NextToken string The token to request the next results page.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeInstancesResponse

Example responses

200 Response

{
  "nextToken": "string",
  "requestId": "string",
  "reservationSet": [
    {
      "groupSet": [
        {
          "groupId": "string",
          "groupName": "string"
        }
      ],
      "instancesSet": [
        {
          "amiLaunchIndex": 0,
          "architecture": "string",
          "blockDeviceMapping": [
            {
              "deviceName": "string",
              "ebs": {
                "attachTime": "string",
                "deleteOnTermination": true,
                "status": "string",
                "volumeId": "string"
              }
            }
          ],
          "clientToken": "string",
          "dnsName": "string",
          "ebsOptimized": true,
          "groupSet": [
            {
              "groupId": "string",
              "groupName": "string"
            }
          ],
          "hypervisor": "string",
          "iamInstanceProfile": {
            "arn": "string",
            "id": "string"
          },
          "imageId": "string",
          "instanceId": "string",
          "instanceLifecycle": "string",
          "instanceState": {
            "code": 0,
            "name": "string"
          },
          "instanceType": "string",
          "ipAddress": "string",
          "kernelId": "string",
          "keyName": "string",
          "launchTime": "string",
          "monitoring": {
            "state": "string"
          },
          "networkInterfaceSet": [
            {
              "association": {
                "ipOwnerId": "string",
                "publicDnsName": "string",
                "publicIp": "string"
              },
              "attachment": {
                "attachTime": "string",
                "attachmentId": "string",
                "deleteOnTermination": true,
                "deviceIndex": 0,
                "status": "string"
              },
              "description": "string",
              "groupSet": [
                {
                  "groupId": "string",
                  "groupName": "string"
                }
              ],
              "macAddress": "string",
              "networkInterfaceId": "string",
              "ownerId": "string",
              "privateDnsName": "string",
              "privateIpAddress": "string",
              "privateIpAddressesSet": [
                {
                  "association": {
                    "ipOwnerId": "string",
                    "publicDnsName": "string",
                    "publicIp": "string"
                  },
                  "primary": true,
                  "privateDnsName": "string",
                  "privateIpAddress": "string"
                }
              ],
              "sourceDestCheck": true,
              "status": "string",
              "subnetId": "string",
              "vpcId": "string"
            }
          ],
          "placement": {
            "availabilityZone": "string",
            "groupName": "string",
            "tenancy": "string"
          },
          "platform": "string",
          "privateDnsName": "string",
          "privateIpAddress": "string",
          "productCodes": [
            {
              "productCode": "string",
              "type": "string"
            }
          ],
          "ramdiskId": "string",
          "reason": "string",
          "rootDeviceName": "string",
          "rootDeviceType": "string",
          "sourceDestCheck": true,
          "spotInstanceRequestId": "string",
          "sriovNetSupport": "string",
          "stateReason": {
            "code": "string",
            "message": "string"
          },
          "subnetId": "string",
          "tagSet": [
            {
              "key": "string",
              "value": "string"
            }
          ],
          "virtualizationType": "string",
          "vpcId": "string"
        }
      ],
      "ownerId": "string",
      "requesterId": "string",
      "reservationId": "string"
    }
  ]
}

GetConsoleOutput

GET /GetConsoleOutput

Gets the console output for an instance. This console provides the most recent 64 KiB output.

[IMPORTANT]
On Windows instances, the console is only handled on the first boot. It returns no output after the first boot.

This AWS-compliant method corresponds to ReadConsoleOutput in the OUTSCALE API.

Code samples

osc-cli fcu GetConsoleOutput --profile "default" \
  --InstanceId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=GetConsoleOutput' \
  --data-urlencode 'InstanceId=string'

Available Parameters

Name Type Description
InstanceId (required) string The ID of the instance.

Responses

Status Description Schema
200 The HTTP 200 response (OK). GetConsoleOutputResponse

Example responses

200 Response

{
  "instanceId": "string",
  "output": "string",
  "requestId": "string",
  "timestamp": "string"
}

GetPasswordData

GET /GetPasswordData

Retrieves the administrator password for a Windows running instance.
The administrator password is encrypted using the keypair you specified when launching the instance.

[IMPORTANT]

  • Only RSA keypairs can decrypt the password of a Windows instance.
  • The administrator password is generated only on the first boot of the Windows instance. It is not returned after the first boot.

    This AWS-compliant method corresponds to ReadAdminPassword in the OUTSCALE API.

Code samples

osc-cli fcu GetPasswordData --profile "default" \
  --InstanceId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=GetPasswordData' \
  --data-urlencode 'InstanceId=string'

Available Parameters

Name Type Description
InstanceId (required) string The ID of the instance.

Responses

Status Description Schema
200 The HTTP 200 response (OK). GetPasswordDataResponse

Example responses

200 Response

{
  "instanceId": "string",
  "passwordData": "string",
  "requestId": "string",
  "timestamp": "string"
}

ModifyInstanceAttribute

GET /ModifyInstanceAttribute

Modifies a specific attribute of an instance.
You can modify only one attribute at a time. You can modify the sourceDestCheck attribute only if the instance is in a Virtual Private Cloud (VPC).
You must stop the instance before modifying the following attributes:

  • InstanceType
  • UserData

    This AWS-compliant method corresponds to UpdateVm in the OUTSCALE API.

Code samples

osc-cli fcu ModifyInstanceAttribute --profile "default" \
  --BlockDeviceMapping '[
      {
        "DeviceName": "string",
        "Ebs": {"DeleteOnTermination": True, "VolumeId": "string"},
        "NoDevice": "string",
        "VirtualName": "string",
      },
    ]' \
  --DisableApiTermination '{
      "Value": True,
    }' \
  --EbsOptimized '{
      "Value": True,
    }' \
  --GroupId '["string"]' \
  --InstanceId "string" \
  --InstanceInitiatedShutdownBehavior '{
      "Value": "string",
    }' \
  --InstanceType '{
      "Value": "string",
    }' \
  --SourceDestCheck '{
      "Value": True,
    }' \
  --UserData '{
      "Value": "string",
    }'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ModifyInstanceAttribute' \
  --data-urlencode 'BlockDeviceMapping.1.DeviceName=string' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.DeleteOnTermination=true' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.VolumeId=string' \
  --data-urlencode 'BlockDeviceMapping.1.NoDevice=string' \
  --data-urlencode 'BlockDeviceMapping.1.VirtualName=string' \
  --data-urlencode 'DisableApiTermination.Value=true' \
  --data-urlencode 'EbsOptimized.Value=true' \
  --data-urlencode 'GroupId.1=string' \
  --data-urlencode 'InstanceId=string' \
  --data-urlencode 'InstanceInitiatedShutdownBehavior.Value=string' \
  --data-urlencode 'InstanceType.Value=string' \
  --data-urlencode 'SourceDestCheck.Value=true' \
  --data-urlencode 'UserData.Value=string'

Available Parameters

Name Type Description
BlockDeviceMapping [BlockDeviceMapping_0] The block device mapping of the instance. This parameter modifies the DeleteOnTermination attribute for volumes attached to the instance.
» DeviceName string The device name for the volume. For a root device, you must use /dev/sda1. For other volumes, you must use /dev/sdX, /dev/sdXX, /dev/xvdX, or /dev/xvdXX (where the first X is a letter between b and z, and the second X is a letter between a and z).
» Ebs Ebs_1 One or more parameters used to automatically set up volumes when you launch the instance.
»» DeleteOnTermination boolean By default or if set to true, the volume is deleted when terminating the instance. If false, the volume is not deleted when terminating the instance.
»» VolumeId string The ID of the volume.
» NoDevice string Removes the specified device included in the block device mapping.
» VirtualName string The name of the virtual device.
DisableApiTermination DisableApiTermination_0 If true, you cannot terminate the instance unless you change this parameter back to false.
» Value boolean A boolean value (true or false) that can be used when the resource is of boolean type.
EbsOptimized EbsOptimized_0 This parameter is not available. It is present in our API for the sake of historical compatiblity with AWS.
» Value boolean A boolean value (true or false) that can be used when the resource is of boolean type.
GroupId [string] A list of security groups IDs associated with the instance.
InstanceId (required) string The ID of the instance.
InstanceInitiatedShutdownBehavior InstanceInitiatedShutdownBehavior_0 The instance behavior when you stop it. By default or if set to stop, the instance stops. If set to restart, the instance stops then automatically restarts. If set to terminate, the instance stops and is terminated.
» Value string The value specified for the resource attribute.
InstanceType InstanceType_0 The type of instance. For more information, see VM Types.
» Value string The value specified for the resource attribute.
SourceDestCheck SourceDestCheck_0 (VPC only)If true, the source/destination check is enabled. If false, it is disabled. This value must be false for a NAT instance to perform Network Address Translation (NAT) in a VPC.
» Value boolean A boolean value (true or false) that can be used when the resource is of boolean type.
UserData UserData_0 The Base64-encoded MIME user data, limited to 500 kibibytes (KiB).
» Value string The value to use for the resource attribute.

Responses

Status Description Schema
200 The HTTP 200 response (OK). ModifyInstanceAttributeResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

ModifyInstanceKeypair

GET /ModifyInstanceKeypair

Modifies the keypair associated with a specified instance.
When you replace the keypair of an instance with another one, the metadata of the instance is modified to reflect the new public key, but the replacement is still not effective in the operating system of the instance. To complete the replacement and effectively apply the new keypair, you need to perform other actions inside the instance. For more information, see Modifying the Keypair of a VM.
This AWS-compliant method corresponds to UpdateVm in the OUTSCALE API.

Code samples

osc-cli fcu ModifyInstanceKeypair --profile "default" \
  --InstanceId "string" \
  --KeyName "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ModifyInstanceKeypair' \
  --data-urlencode 'InstanceId=string' \
  --data-urlencode 'KeyName=string'

Available Parameters

Name Type Description
InstanceId (required) string The ID of the instance.
KeyName (required) string The name of the keypair.

Responses

Status Description Schema
200 The HTTP 200 response (OK). ModifyInstanceKeypairResponse

Example responses

200 Response

{
  "requestId": "string"
}

RebootInstances

GET /RebootInstances

Reboots one or more instances.
This operation sends a reboot request to one or more specified instance. This is an asynchronous action that queues this reboot request. This action only reboots instances that are valid and that belong to you.

This AWS-compliant method corresponds to RebootVms in the OUTSCALE API.

Code samples

osc-cli fcu RebootInstances --profile "default" \
  --InstanceId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=RebootInstances' \
  --data-urlencode 'InstanceId.1=string'

Available Parameters

Name Type Description
InstanceId (required) [string] The IDs of the instances you want to reboot.

Responses

Status Description Schema
200 The HTTP 200 response (OK). RebootInstancesResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

RunInstances

GET /RunInstances

Creates instances, and then launches them.
This action enables you to create a specified number of instances using an OMI which you are allowed to use, and then to automatically launch them.
The instances remain in the pending state until they are created and ready to be used. Once automatically launched, they are in the running state.
To check the state of your instance, call the DescribeInstances method.
If not specified, the security group used by the service is the default one.
The metadata server enables you to get the public key provided when the instance is launched. Official OMIs contain a script to get this public key and put it inside the instance to provide secure access without password.

For more information, see About VMs.
This AWS-compliant method corresponds to CreateVms in the OUTSCALE API.

Code samples

osc-cli fcu RunInstances --profile "default" \
  --BlockDeviceMapping '[
      {
        "DeviceName": "string",
        "Ebs": {"DeleteOnTermination": True, "Iops": 0, "SnapshotId": "string", "VolumeSize": 0, "VolumeType": "string"},
        "NoDevice": "string",
        "VirtualName": "string",
      },
    ]' \
  --ClientToken "string" \
  --DisableApiTermination True \
  --DryRun False \
  --EbsOptimized True \
  --ImageId "string" \
  --InstanceInitiatedShutdownBehavior "string" \
  --InstanceType "string" \
  --KeyName "string" \
  --MaxCount 0 \
  --MinCount 0 \
  --NetworkInterface '[
      {
        "DeleteOnTermination": True,
        "Description": "string",
        "DeviceIndex": 0,
        "NetworkInterfaceId": "string",
        "PrivateIpAddress": "string",
        "PrivateIpAddressesSet": [{"Primary": True, "PrivateIpAddress": "string"}],
        "SecondaryPrivateIpAddressCount": 0,
        "SecurityGroupId": ["string"],
        "SubnetId": "string",
      },
    ]' \
  --Placement '{
      "AvailabilityZone": "string",
      "Tenancy": "string",
    }' \
  --PrivateIpAddress "string" \
  --PrivateIpAddresses "string" \
  --SecurityGroup '["string"]' \
  --SecurityGroupId '["string"]' \
  --SubnetId "string" \
  --UserData "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=RunInstances' \
  --data-urlencode 'BlockDeviceMapping.1.DeviceName=string' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.DeleteOnTermination=true' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.Iops=0' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.SnapshotId=string' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.VolumeSize=0' \
  --data-urlencode 'BlockDeviceMapping.1.Ebs.VolumeType=string' \
  --data-urlencode 'BlockDeviceMapping.1.NoDevice=string' \
  --data-urlencode 'BlockDeviceMapping.1.VirtualName=string' \
  --data-urlencode 'ClientToken=string' \
  --data-urlencode 'DisableApiTermination=true' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'EbsOptimized=true' \
  --data-urlencode 'ImageId=string' \
  --data-urlencode 'InstanceInitiatedShutdownBehavior=string' \
  --data-urlencode 'InstanceType=string' \
  --data-urlencode 'KeyName=string' \
  --data-urlencode 'MaxCount=0' \
  --data-urlencode 'MinCount=0' \
  --data-urlencode 'NetworkInterface.1.DeleteOnTermination=true' \
  --data-urlencode 'NetworkInterface.1.Description=string' \
  --data-urlencode 'NetworkInterface.1.DeviceIndex=0' \
  --data-urlencode 'NetworkInterface.1.NetworkInterfaceId=string' \
  --data-urlencode 'NetworkInterface.1.PrivateIpAddress=string' \
  --data-urlencode 'NetworkInterface.1.PrivateIpAddressesSet.1.Primary=true' \
  --data-urlencode 'NetworkInterface.1.PrivateIpAddressesSet.1.PrivateIpAddress=string' \
  --data-urlencode 'NetworkInterface.1.SecondaryPrivateIpAddressCount=0' \
  --data-urlencode 'NetworkInterface.1.SecurityGroupId.1=string' \
  --data-urlencode 'NetworkInterface.1.SubnetId=string' \
  --data-urlencode 'Placement.AvailabilityZone=string' \
  --data-urlencode 'Placement.Tenancy=string' \
  --data-urlencode 'PrivateIpAddress=string' \
  --data-urlencode 'PrivateIpAddresses=string' \
  --data-urlencode 'SecurityGroup.1=string' \
  --data-urlencode 'SecurityGroupId.1=string' \
  --data-urlencode 'SubnetId=string' \
  --data-urlencode 'UserData=string'

Available Parameters

Name Type Description
BlockDeviceMapping [BlockDeviceMapping_1] One or more block device mappings of the instance.
» DeviceName string The device name for the volume. For a root device, you must use /dev/sda1. For other volumes, you must use /dev/sdX, /dev/sdXX, /dev/xvdX, or /dev/xvdXX (where the first X is a letter between b and z, and the second X is a letter between a and z).
» Ebs Ebs_0 One or more parameters to map a volume to DeviceName at launch.You can specify either Ebs or VirtualName, but not both.
»» DeleteOnTermination boolean By default or if set to true, the volume is deleted when terminating the instance. If false, the volume is not deleted when terminating the instance.
»» Iops integer The number of I/O operations per second. This parameter must be specified only if you create an io1 volume. The maximum number of IOPS allowed for io1 volumes is 13000 with a maximum performance ratio of 300 IOPS per gibibyte.
»» SnapshotId string The ID of the snapshot used to create the volume.
»» VolumeSize integer The size of the volume, in gibibytes (GiB).
If you specify a snapshot ID, the volume size must be at least equal to the snapshot size.
If you specify a snapshot ID but no volume size, the volume is created with a size similar to the snapshot one.
»» VolumeType string The type of the volume (standard | io1 | gp2). If not specified in the request, a standard volume is created. For more information about volumes types, see Volume Types and IOPS.
» NoDevice string Prevents a device from being mapped to DeviceName at launch, if the OMI used contains a mapping for DeviceName.
To use this parameter, specify any value other than null, for example an empty string. Example with OSC CLI:
  --BlockDeviceMapping.1.DeviceName "/dev/xvdb" \
  --BlockDeviceMapping.1.NoDevice ""
» VirtualName string The name of an ephemeral storage disk (ephemeralN) to map to DeviceName at launch.
You can specify either Ebs or VirtualName, but not both.
ClientToken string A unique identifier which enables you to manage the idempotency.
DisableApiTermination boolean If true, you cannot terminate the instance unless you change this parameter back to false.
DryRun boolean If true, checks whether you have the required permissions to perform the action.
EbsOptimized boolean This parameter is not available. It is present in our API for the sake of historical compatibility with AWS.
ImageId (required) string The ID of the OMI. You can find the list of OMIs by calling the DescribeImages method.
InstanceInitiatedShutdownBehavior string The instance behavior when you stop it. By default or if set to stop, the instance stops. If set to restart, the instance stops then automatically restarts. If set to terminate, the instance stops and is terminated.
InstanceType string The type of instance. You can specify a TINA type (in the tinavW.cXrYpZ or tinavW.cXrY format), or an AWS type (for example, t2.small, which is the default value).
If you specify an AWS type, it is converted in the background to its corresponding TINA type, but the AWS type is still returned. The TINA type is associated with a performance flag. For more information, see VM Types.
KeyName string The name of the keypair.
MaxCount (required) integer The maximum number of instances you want to launch. If all the instances cannot be created, the largest possible number of instances above MinCount are created and launched.
MinCount (required) integer The minimum number of instances you want to launch. If this number of instances cannot be created, FCU does not create and launch any instance.
NetworkInterface [NetworkInterface_0] One or more network interfaces. If you specify this parameter, you must define one network interface as the primary one of the instance with 0 as its device index.
» DeleteOnTermination boolean By default or if set to true, the network interface is deleted when the instance is terminated. You can specify this parameter only for a new network interface. To modify this value for an existing network interface, see ModifyNetworkInterfaceAttribute.
» Description string The description of the network interface, if you are creating a network interface when launching an instance.
» DeviceIndex integer The index of the instance device for the network interface attachment (between 0 and 7, both included). This parameter is required if you create a network interface when launching an instance.
» NetworkInterfaceId string The ID of the network interface, if you are attaching an existing network interface when launching an instance.
» PrivateIpAddress string The private IP of the network interface, if you are creating a network interface when launching an instance.
» PrivateIpAddressesSet [PrivateIpAddressesSet] One or more private IPs to assign to the network interface (only one can be primary), if you are creating a network interface when launching an instance.
»» Primary boolean Indicates whether it is the primary private IP.
»» PrivateIpAddress string The private IPs.
» SecondaryPrivateIpAddressCount integer The number of secondary private IPs (cannot be specified if you specified more than one private IP in the PrivateIPAddressesSet.N parameter), if you are creating a network interface when launching an instance.
» SecurityGroupId [string] One or more IDs of the security groups of the network interface, if you are creating a network interface when launching an instance.
» SubnetId string The ID of the subnet associated with the network string, if you are creating a network interface when launching an instance.
Placement Placement_0 A specific placement where you want to create the instances (tenancy options).
» AvailabilityZone string The Availability Zone of the instance.
» Tenancy string The tenancy of the instance (default | dedicated).
PrivateIpAddress string In a VPC, the unique primary IP. The IP must come from the IP range of the subnet.
PrivateIpAddresses string In a VPC, the list of primary IPs when you create several instances. The IPs must come from the IP range of the subnet.
SecurityGroup [string] One or more security group names.
SecurityGroupId [string] One or more security group IDs.
SubnetId string In a VPC, the ID of the subnet in which you want to launch the instance.
UserData string Data or script used to add a specific configuration to the instance. It must be Base64-encoded and is limited to 500 kibibytes (KiB).

Responses

Status Description Schema
200 The HTTP 200 response (OK). RunInstancesResponse

Example responses

200 Response

{
  "groupSet": [
    {
      "groupId": "string",
      "groupName": "string"
    }
  ],
  "instancesSet": [
    {
      "amiLaunchIndex": 0,
      "architecture": "string",
      "blockDeviceMapping": [
        {
          "deviceName": "string",
          "ebs": {
            "attachTime": "string",
            "deleteOnTermination": true,
            "status": "string",
            "volumeId": "string"
          }
        }
      ],
      "clientToken": "string",
      "dnsName": "string",
      "ebsOptimized": true,
      "groupSet": [
        {
          "groupId": "string",
          "groupName": "string"
        }
      ],
      "hypervisor": "string",
      "iamInstanceProfile": {
        "arn": "string",
        "id": "string"
      },
      "imageId": "string",
      "instanceId": "string",
      "instanceLifecycle": "string",
      "instanceState": {
        "code": 0,
        "name": "string"
      },
      "instanceType": "string",
      "ipAddress": "string",
      "kernelId": "string",
      "keyName": "string",
      "launchTime": "string",
      "monitoring": {
        "state": "string"
      },
      "networkInterfaceSet": [
        {
          "association": {
            "ipOwnerId": "string",
            "publicDnsName": "string",
            "publicIp": "string"
          },
          "attachment": {
            "attachTime": "string",
            "attachmentId": "string",
            "deleteOnTermination": true,
            "deviceIndex": 0,
            "status": "string"
          },
          "description": "string",
          "groupSet": [
            {
              "groupId": "string",
              "groupName": "string"
            }
          ],
          "macAddress": "string",
          "networkInterfaceId": "string",
          "ownerId": "string",
          "privateDnsName": "string",
          "privateIpAddress": "string",
          "privateIpAddressesSet": [
            {
              "association": {
                "ipOwnerId": "string",
                "publicDnsName": "string",
                "publicIp": "string"
              },
              "primary": true,
              "privateDnsName": "string",
              "privateIpAddress": "string"
            }
          ],
          "sourceDestCheck": true,
          "status": "string",
          "subnetId": "string",
          "vpcId": "string"
        }
      ],
      "placement": {
        "availabilityZone": "string",
        "groupName": "string",
        "tenancy": "string"
      },
      "platform": "string",
      "privateDnsName": "string",
      "privateIpAddress": "string",
      "productCodes": [
        {
          "productCode": "string",
          "type": "string"
        }
      ],
      "ramdiskId": "string",
      "reason": "string",
      "rootDeviceName": "string",
      "rootDeviceType": "string",
      "sourceDestCheck": true,
      "spotInstanceRequestId": "string",
      "sriovNetSupport": "string",
      "stateReason": {
        "code": "string",
        "message": "string"
      },
      "subnetId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "virtualizationType": "string",
      "vpcId": "string"
    }
  ],
  "ownerId": "string",
  "requestId": "string",
  "requesterId": "string",
  "reservationId": "string"
}

StartInstances

GET /StartInstances

Start one or more instances.
You can start only instances that are valid and that belong to you.

This AWS-compliant method corresponds to StartVms in the OUTSCALE API.

Code samples

osc-cli fcu StartInstances --profile "default" \
  --InstanceId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=StartInstances' \
  --data-urlencode 'InstanceId.1=string'

Available Parameters

Name Type Description
InstanceId (required) [string] One or more instance IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). StartInstancesResponse

Example responses

200 Response

{
  "instancesSet": [
    {
      "currentState": {
        "code": 0,
        "name": "string"
      },
      "instanceId": "string",
      "previousState": {
        "code": 0,
        "name": "string"
      }
    }
  ],
  "requestId": "string"
}

StopInstances

GET /StopInstances

Stops one or more running instances.
You can stop only instances that are valid and that belong to you. Data stored in the instance RAM is lost.

This AWS-compliant method corresponds to StopVms in the OUTSCALE API.

Code samples

osc-cli fcu StopInstances --profile "default" \
  --Force True \
  --InstanceId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=StopInstances' \
  --data-urlencode 'Force=true' \
  --data-urlencode 'InstanceId.1=string'

Available Parameters

Name Type Description
Force boolean Forces the instance to stop.
InstanceId (required) [string] One or more instance IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). StopInstancesResponse

Example responses

200 Response

{
  "instancesSet": [
    {
      "currentState": {
        "code": 0,
        "name": "string"
      },
      "instanceId": "string",
      "previousState": {
        "code": 0,
        "name": "string"
      }
    }
  ],
  "requestId": "string"
}

TerminateInstances

GET /TerminateInstances

Terminates one or more instances.
This operation is idempotent, which means that all calls succeed if you terminate an instance more than once.

This AWS-compliant method corresponds to DeleteVms in the OUTSCALE API.

Code samples

osc-cli fcu TerminateInstances --profile "default" \
  --InstanceId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=TerminateInstances' \
  --data-urlencode 'InstanceId.1=string'

Available Parameters

Name Type Description
InstanceId (required) [string] One or more instance IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). TerminateInstancesResponse

Example responses

200 Response

{
  "instancesSet": [
    {
      "currentState": {
        "code": 0,
        "name": "string"
      },
      "instanceId": "string",
      "previousState": {
        "code": 0,
        "name": "string"
      }
    }
  ],
  "requestId": "string"
}

Internet Gateways

AttachInternetGateway

GET /AttachInternetGateway

Attaches an Internet gateway to a Virtual Private Cloud (VPC).
To enable the connection between the Internet and a VPC, you must attach an Internet gateway to this VPC.

This AWS-compliant method corresponds to LinkInternetService in the OUTSCALE API.

Code samples

osc-cli fcu AttachInternetGateway --profile "default" \
  --InternetGatewayId "string" \
  --VpcId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AttachInternetGateway' \
  --data-urlencode 'InternetGatewayId=string' \
  --data-urlencode 'VpcId=string'

Available Parameters

Name Type Description
InternetGatewayId (required) string The ID of the Internet gateway.
VpcId (required) string The ID of the VPC.

Responses

Status Description Schema
200 The HTTP 200 response (OK). AttachInternetGatewayResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

CreateInternetGateway

GET /CreateInternetGateway

Creates an Internet gateway you can use with a VPC.
An Internet gateway enables your instances launched in a VPC to connect to the Internet. By default, a VPC includes an Internet gateway, and each subnet is public. Every instance launched within a default subnet has a private IP and a public IP (External IP).

For more information, see About Internet Services.
This AWS-compliant method corresponds to CreateInternetService in the OUTSCALE API.

Code samples

osc-cli fcu CreateInternetGateway --profile "default"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateInternetGateway'

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateInternetGatewayResponse

Example responses

200 Response

{
  "internetGateway": {
    "internetGatewayId": "string",
    "attachmentSet": [
      {
        "state": "string",
        "vpcId": "string"
      }
    ],
    "tagSet": [
      {
        "Key": "string",
        "Value": "string"
      }
    ]
  },
  "requestId": "string"
}

DeleteInternetGateway

GET /DeleteInternetGateway

Deletes an Internet gateway.
Before deleting an Internet gateway, you must detach it from any Virtual Private Cloud (VPC) it is attached to.

This AWS-compliant method corresponds to DeleteInternetService in the OUTSCALE API.

Code samples

osc-cli fcu DeleteInternetGateway --profile "default" \
  --InternetGatewayId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteInternetGateway' \
  --data-urlencode 'InternetGatewayId=string'

Available Parameters

Name Type Description
InternetGatewayId (required) string The ID of the Internet gateway.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteInternetGatewayResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeInternetGateways

GET /DescribeInternetGateways

Describes one or more of your Internet gateways.
An Internet gateway enables your instances launched in a VPC to connect to the Internet. By default, a VPC includes an Internet gateway, and each subnet is public. Every instance launched within a default subnet has a private IP and a public IP (External IP).
You can use the Filter.N parameter to filter the described Internet gateways on the following properties:

  • attachment.state: The current state of the attachment between the Internet gateway and the VPC.
  • attachment.vpc-id: The ID of an attached VPC.
  • internet-gateway-id: The ID of the Internet gateway.
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.

    This AWS-compliant method corresponds to ReadInternetServices in the OUTSCALE API.

Code samples

osc-cli fcu DescribeInternetGateways --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --InternetGatewayId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeInternetGateways' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'InternetGatewayId.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeInternetGateways \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
InternetGatewayId [string] One or more Internet gateways IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeInternetGatewaysResponse

Example responses

200 Response

{
  "internetGatewaySet": [
    {
      "attachmentSet": [
        {
          "state": "string",
          "vpcId": "string"
        }
      ],
      "internetGatewayId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ]
    }
  ],
  "requestId": "string"
}

DetachInternetGateway

GET /DetachInternetGateway

Detaches an Internet gateway from a Virtual Private Cloud (VPC).
This action disables and detaches an Internet gateway from a VPC. The VPC must not contain instances using External IPs (EIPs) nor internet-facing load balancers.

This AWS-compliant method corresponds to UnlinkInternetService in the OUTSCALE API.

Code samples

osc-cli fcu DetachInternetGateway --profile "default" \
  --InternetGatewayId "string" \
  --VpcId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DetachInternetGateway' \
  --data-urlencode 'InternetGatewayId=string' \
  --data-urlencode 'VpcId=string'

Available Parameters

Name Type Description
InternetGatewayId (required) string The ID of the Internet gateway.
VpcId (required) string The ID of the VPC.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DetachInternetGatewayResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

Keypairs

CreateKeyPair

GET /CreateKeyPair

Creates a 2048-bit RSA keypair with a specified name.
This action returns the private key that you need to save. The public key is stored by 3DS OUTSCALE.

For more information, see About Keypairs.
This AWS-compliant method corresponds to CreateKeypair in the OUTSCALE API.

Code samples

osc-cli fcu CreateKeyPair --profile "default" \
  --KeyName "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateKeyPair' \
  --data-urlencode 'KeyName=string'

Available Parameters

Name Type Description
KeyName (required) string A unique name for the keypair, with a maximum length of 255 ASCII printable characters.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateKeyPairResponse

Example responses

200 Response

{
  "keyFingerprint": "string",
  "keyMaterial": "string",
  "keyName": "string",
  "requestId": "string"
}

DeleteKeyPair

GET /DeleteKeyPair

Deletes the specified keypair.
This action deletes the public key stored by 3DS OUTSCALE, thus deleting the keypair.

This AWS-compliant method corresponds to DeleteKeypair in the OUTSCALE API.

Code samples

osc-cli fcu DeleteKeyPair --profile "default" \
  --KeyName "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteKeyPair' \
  --data-urlencode 'KeyName=string'

Available Parameters

Name Type Description
KeyName (required) string The name of the keypair.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteKeyPairResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeKeyPairs

GET /DescribeKeyPairs

Describes one or more of your keypairs.
You can use the Filter.N parameter to filter the described instances on the following properties:

  • fingerprint: The fingerprint of the keypair.
  • key-name: The name of the keypair.

    This AWS-compliant method corresponds to ReadKeypairs in the OUTSCALE API.

Code samples

osc-cli fcu DescribeKeyPairs --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --KeyName '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeKeyPairs' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'KeyName.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeKeyPairs \
  --Filter.1.Name "key-name" \
  --Filter.1.Value.1 "Keypair1"
» Name string The name of the filter.
» Value [string] One or more filter values.
KeyName [string] One or more keypair names.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeKeyPairsResponse

Example responses

200 Response

{
  "keySet": [
    {
      "keyFingerprint": "string",
      "keyName": "string"
    }
  ],
  "requestId": "string"
}

ImportKeyPair

GET /ImportKeyPair

Imports a provided public key and creates a keypair.
This action imports the public key of a keypair created by a third-party tool and uses it to create a keypair. The private key is never provided to 3DS OUTSCALE.
The following types of key can be imported: RSA (2048 bits or preferably 4096 bits), Ed25519, and ECDSA (256 bits, 384 bits, or 521 bits). The following formats can be used: PEM, PKCS8, RFC4716, and OpenSSH.

This AWS-compliant method corresponds to CreateKeypair in the OUTSCALE API.

Code samples

osc-cli fcu ImportKeyPair --profile "default" \
  --KeyName "string" \
  --PublicKeyMaterial "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ImportKeyPair' \
  --data-urlencode 'KeyName=string' \
  --data-urlencode 'PublicKeyMaterial=string'

Available Parameters

Name Type Description
KeyName (required) string A unique name for the keypair, with a maximum length of 255 ASCII printable characters.
PublicKeyMaterial (required) string The public key. It must be Base64-encoded.

Responses

Status Description Schema
200 The HTTP 200 response (OK). ImportKeyPairResponse

Example responses

200 Response

{
  "keyFingerprint": "string",
  "keyName": "string",
  "requestId": "string"
}

NAT Gateways

CreateNatGateway

GET /CreateNatGateway

Creates a network address translation (NAT) gateway in the specified public subnet of a VPC.
A NAT gateway enables instances placed in private subnet of this VPC to connect to the Internet, without being accessible from the Internet.
When creating a NAT gateway, you specify the allocation ID of the External IP (EIP) you want to use for the NAT gateway. Once the NAT gateway is created, you need to create a route in the route table of the private subnet, with 0.0.0.0/0 as destination and the ID of the NAT gateway as target. For more information, see AssociateAddress and CreateRoute.
This action also enables you to create multiple NAT gateways in the same VPC (one per public subnet).

[IMPORTANT]
You cannot modify the EIP associated with a NAT gateway after its creation. To do so, you need to delete the NAT gateway and create a new one with another EIP.

For more information, see About NAT Services.
This AWS-compliant method corresponds to CreateNatService in the OUTSCALE API.

Code samples

osc-cli fcu CreateNatGateway --profile "default" \
  --AllocationId "string" \
  --ClientToken "string" \
  --SubnetId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateNatGateway' \
  --data-urlencode 'AllocationId=string' \
  --data-urlencode 'ClientToken=string' \
  --data-urlencode 'SubnetId=string'

Available Parameters

Name Type Description
AllocationId (required) string The allocation ID of the EIP to associate with the NAT gateway.
If the EIP is already associated with another resource, you must first disassociate it.
ClientToken string A unique identifier to manage the idempotency.
SubnetId (required) string The public subnet where you want to create the NAT gateway.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateNatGatewayResponse

Example responses

200 Response

{
  "clientToken": "string",
  "natGateway": {
    "createTime": "string",
    "deleteTime": "string",
    "natGatewayAddressSet": [
      {
        "allocationId": "string",
        "networkInterfaceId": "string",
        "privateIp": "string",
        "publicIp": "string"
      }
    ],
    "natGatewayId": "string",
    "state": "string",
    "subnetId": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcId": "string"
  },
  "requestId": "string"
}

DeleteNatGateway

GET /DeleteNatGateway

Deletes a specified network address translation (NAT) gateway.
This action disassociates the External IP (EIP) from the NAT gateway, but does not release this EIP from your account. However, it does not delete any NAT gateway routes in your route tables.

This AWS-compliant method corresponds to DeleteNatService in the OUTSCALE API.

Code samples

osc-cli fcu DeleteNatGateway --profile "default" \
  --NatGatewayId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteNatGateway' \
  --data-urlencode 'NatGatewayId=string'

Available Parameters

Name Type Description
NatGatewayId (required) string The ID of the NAT gateway.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteNatGatewayResponse

Example responses

200 Response

{
  "natGatewayId": "string",
  "requestId": "string"
}

DescribeNatGateways

GET /DescribeNatGateways

Describes one or more network address translation (NAT) gateways.
You can use the Filter.N parameter to filter the NAT gateways on the following properties:

  • nat-gateway-id: The ID of the NAT gateway.
  • state: The state of the NAT gateway (pending | available | deleting | deleted).
  • subnet-id: The ID of the subnet in which the NAT gateway is.
  • vpc-id: The ID of the VPC in which the NAT gateway is.
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.

    This AWS-compliant method corresponds to ReadNatServices in the OUTSCALE API.

Code samples

osc-cli fcu DescribeNatGateways --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --MaxResults 0 \
  --NatGatewayId '["string"]' \
  --NextToken "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeNatGateways' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'MaxResults=0' \
  --data-urlencode 'NatGatewayId.1=string' \
  --data-urlencode 'NextToken=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeNatGateways \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
MaxResults integer The maximum number of results that can be returned in a single page. You can use NextToken to request the next results pages. This value is between 5 and 1000. If you provide a value larger than 1000, only 1000 results are returned.
NatGatewayId [string] One or more IDs of NAT gateways.
NextToken string The token to request the next results page.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeNatGatewaysResponse

Example responses

200 Response

{
  "natGatewaySet": [
    {
      "createTime": "string",
      "deleteTime": "string",
      "natGatewayAddressSet": [
        {
          "allocationId": "string",
          "networkInterfaceId": "string",
          "privateIp": "string",
          "publicIp": "string"
        }
      ],
      "natGatewayId": "string",
      "state": "string",
      "subnetId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ],
  "nextToken": "string",
  "requestId": "string"
}

Network Interfaces

AssignPrivateIpAddresses

GET /AssignPrivateIpAddresses

Assigns one or more secondary private IPs to an FNI.
This action is only available in a VPC.
The private IPs to be assigned can be added individually using the PrivateIpAddress.N parameter, or you can specify the number of private IPs to be automatically chosen within the subnet range using the SecondaryPrivateIpAddressCount parameter. You can specify only one of these two parameters. If none of these parameters are specified, a private IP is chosen within the subnet range.

This AWS-compliant method corresponds to LinkPrivateIps in the OUTSCALE API.

Code samples

osc-cli fcu AssignPrivateIpAddresses --profile "default" \
  --AllowReassignment True \
  --NetworkInterfaceId "string" \
  --PrivateIpAddress '["string"]' \
  --SecondaryPrivateIpAddressCount 0

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AssignPrivateIpAddresses' \
  --data-urlencode 'AllowReassignment=true' \
  --data-urlencode 'NetworkInterfaceId=string' \
  --data-urlencode 'PrivateIpAddress.1=string' \
  --data-urlencode 'SecondaryPrivateIpAddressCount=0'

Available Parameters

Name Type Description
AllowReassignment boolean If set to true, allows a private IP already assigned to another FNI in the same subnet to be reassigned to the specified FNI.
NetworkInterfaceId (required) string The ID of the FNI.
PrivateIpAddress [string] One or more secondary private IPs to assign to the FNI within the IP range of the subnet.
SecondaryPrivateIpAddressCount integer A number of secondary private IPs to assign to the FNI.

Responses

Status Description Schema
200 The HTTP 200 response (OK). AssignPrivateIpAddressesResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

AttachNetworkInterface

GET /AttachNetworkInterface

Attaches an FNI to an instance.
The FNI and the instance must be in the same Availability Zone (AZ). The instance can be either running or stopped. The FNI must be in the available state. For more information, see Attaching a NIC to a VM.
This AWS-compliant method corresponds to LinkNic in the OUTSCALE API.

Code samples

osc-cli fcu AttachNetworkInterface --profile "default" \
  --DeviceIndex 0 \
  --DryRun False \
  --InstanceId "string" \
  --NetworkInterfaceId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AttachNetworkInterface' \
  --data-urlencode 'DeviceIndex=0' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'InstanceId=string' \
  --data-urlencode 'NetworkInterfaceId=string'

Available Parameters

Name Type Description
DeviceIndex (required) integer The device index for the FNI attachment (between 1 and 7, both included).
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
InstanceId (required) string The ID of the instance to which you want to attach the FNI.
NetworkInterfaceId (required) string The ID of the FNI to attach.

Responses

Status Description Schema
200 The HTTP 200 response (OK). AttachNetworkInterfaceResponse

Example responses

200 Response

{
  "attachmentId": "string",
  "requestId": "string"
}

CreateNetworkInterface

GET /CreateNetworkInterface

Creates an FNI in the specified subnet.

For more information, see About NICs.
This AWS-compliant method corresponds to CreateNic in the OUTSCALE API.

Code samples

osc-cli fcu CreateNetworkInterface --profile "default" \
  --Description "string" \
  --DryRun False \
  --PrivateIpAddress "string" \
  --SecurityGroupId '["string"]' \
  --SubnetId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateNetworkInterface' \
  --data-urlencode 'Description=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'PrivateIpAddress=string' \
  --data-urlencode 'SecurityGroupId.1=string' \
  --data-urlencode 'SubnetId=string'

Available Parameters

Name Type Description
Description string A description for the FNI. This description can contain any Unicode character, with no length limit.
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
PrivateIpAddress string The primary private IP for the FNI.
- This IP must be within the IP range of the subnet that you specified with the subnet-id attribute.
- If you do not specify this attribute, a random private IP is selected within the IP range of the subnet.
SecurityGroupId [string] One or more IDs of security groups for the FNI.
SubnetId (required) string The ID of the subnet in which you want to create the FNI.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateNetworkInterfaceResponse

Example responses

200 Response

{
  "networkInterface": {
    "association": {
      "allocationId": "string",
      "associationId": "string",
      "ipOwnerId": "string",
      "publicDnsName": "string",
      "publicIp": "string"
    },
    "attachment": {
      "attachTime": "string",
      "attachmentId": "string",
      "deleteOnTermination": true,
      "deviceIndex": 0,
      "instanceId": "string",
      "instanceOwnerId": "string",
      "status": "string"
    },
    "availabilityZone": "string",
    "description": "string",
    "groupSet": [
      {
        "groupId": "string",
        "groupName": "string"
      }
    ],
    "macAddress": "string",
    "networkInterfaceId": "string",
    "ownerId": "string",
    "privateDnsName": "string",
    "privateIpAddress": "string",
    "privateIpAddressesSet": [
      {
        "association": {
          "allocationId": "string",
          "associationId": "string",
          "ipOwnerId": "string",
          "publicDnsName": "string",
          "publicIp": "string"
        },
        "primary": true,
        "privateDnsName": "string",
        "privateIpAddress": "string"
      }
    ],
    "sourceDestCheck": true,
    "status": "string",
    "subnetId": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcId": "string"
  },
  "requestId": "string"
}

DeleteNetworkInterface

GET /DeleteNetworkInterface

Deletes the specified FNI.
The FNI must not be attached to any instance.

This AWS-compliant method corresponds to DeleteNic in the OUTSCALE API.

Code samples

osc-cli fcu DeleteNetworkInterface --profile "default" \
  --DryRun False \
  --NetworkInterfaceId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteNetworkInterface' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'NetworkInterfaceId=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
NetworkInterfaceId (required) string The ID of the FNI.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteNetworkInterfaceResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeNetworkInterfaces

GET /DescribeNetworkInterfaces

Describes one or more Flexible Network Interface (FNI).
An FNI is a virtual network interface that you can attach to an instance in a Virtual Private Cloud (VPC).
You can use the Filter.N parameter to filter FNIs on the following properties:

  • addresses.private-ip-address: The private IPs associated with the FNI.
  • addresses.primary: Whether the private IP is the primary IP associated with the FNI.
  • addresses.association.public-ip: The association ID returned when the FNI was associated with an External IP (EIP).
  • addresses.association.owner-id: The account ID of the owner of the IPs associated with the FNI.
  • association.association-id: The association ID returned when the FNI was associated with an EIP.
  • association.allocation-id: The allocation ID returned when you allocated the EIP to your account.
  • association.ip-owner-id: The account ID of the owner of the EIP associated with the FNI.
  • association.public-ip: The EIP associated with the FNI.
  • association.public-dns-name: The public DNS name associated with the EIP.
  • attachment.attachment-id: The attachment ID of the FNI.
  • attachment.instance-id: The ID of the instance the FNI is attached to.
  • attachment.instance-owner-id: The account ID of the owner of the instance the FNI is attached to.
  • attachment.device-index: The device index used for the FNI.
  • attachment.status: The state of the attachment.
  • attachment.attach-time: The time at which the FNI was attached to an instance.
  • attachment.delete-on-termination: Whether the FNI is deleted when the instance it is attached to is terminated.
  • availability-zone: The Availability Zone (AZ) where the FNI is located.
  • description: The description of the FNI.
  • group-id: The ID of a security group associated with the FNI.
  • group-name: The name of a security group associated with the FNI.
  • mac-address: The Media Access Control (MAC) address of the FNI.
  • network-interface-id: The ID of the FNI.
  • owner-id: The account ID of the FNI owner.
  • private-ip-address: The primary private IP of the FNI.
  • private-dns-name: The private DNS name associated with the primary private IP.
  • source-dest-check: Whether the source/destination checking is enabled (true) or disabled (false).
  • status: The state of the FNI.
  • subnet-id: The ID of the subnet in where the FNI is located.
  • vpc-id: The ID of the VPC in where the FNI is located.

    This AWS-compliant method corresponds to ReadNics in the OUTSCALE API.

Code samples

osc-cli fcu DescribeNetworkInterfaces --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --NetworkInterfaceId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeNetworkInterfaces' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'NetworkInterfaceId.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeNetworkInterfaces \
  --Filter.1.Name "network-interface-id" \
  --Filter.1.Value.1 "eni-12345678"
» Name string The name of the filter.
» Value [string] One or more filter values.
NetworkInterfaceId [string] One or more FNI IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeNetworkInterfacesResponse

Example responses

200 Response

{
  "networkInterfaceSet": [
    {
      "association": {
        "allocationId": "string",
        "associationId": "string",
        "ipOwnerId": "string",
        "publicDnsName": "string",
        "publicIp": "string"
      },
      "attachment": {
        "attachTime": "string",
        "attachmentId": "string",
        "deleteOnTermination": true,
        "deviceIndex": 0,
        "instanceId": "string",
        "instanceOwnerId": "string",
        "status": "string"
      },
      "availabilityZone": "string",
      "description": "string",
      "groupSet": [
        {
          "groupId": "string",
          "groupName": "string"
        }
      ],
      "macAddress": "string",
      "networkInterfaceId": "string",
      "ownerId": "string",
      "privateDnsName": "string",
      "privateIpAddress": "string",
      "privateIpAddressesSet": [
        {
          "association": {
            "allocationId": "string",
            "associationId": "string",
            "ipOwnerId": "string",
            "publicDnsName": "string",
            "publicIp": "string"
          },
          "primary": true,
          "privateDnsName": "string",
          "privateIpAddress": "string"
        }
      ],
      "sourceDestCheck": true,
      "status": "string",
      "subnetId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ],
  "requestId": "string"
}

DetachNetworkInterface

GET /DetachNetworkInterface

Detaches an FNI from an instance.
The primary FNI cannot be detached.

This AWS-compliant method corresponds to UnlinkNic in the OUTSCALE API.

Code samples

osc-cli fcu DetachNetworkInterface --profile "default" \
  --AttachmentId "string" \
  --DryRun False

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DetachNetworkInterface' \
  --data-urlencode 'AttachmentId=string' \
  --data-urlencode 'DryRun=false'

Available Parameters

Name Type Description
AttachmentId (required) string The ID of the attachment operation.
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DetachNetworkInterfaceResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

ModifyNetworkInterfaceAttribute

GET /ModifyNetworkInterfaceAttribute

Modifies the specified FNI Interfaces attribute. You can specify only one attribute at a time.

This AWS-compliant method corresponds to UpdateNic in the OUTSCALE API.

Code samples

osc-cli fcu ModifyNetworkInterfaceAttribute --profile "default" \
  --Attachment '{
      "AttachmentId": "string",
      "DeleteOnTermination": True,
    }' \
  --Description '{
      "Value": "string",
    }' \
  --DryRun False \
  --NetworkInterfaceId "string" \
  --SecurityGroupId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ModifyNetworkInterfaceAttribute' \
  --data-urlencode 'Attachment.AttachmentId=string' \
  --data-urlencode 'Attachment.DeleteOnTermination=true' \
  --data-urlencode 'Description.Value=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'NetworkInterfaceId=string' \
  --data-urlencode 'SecurityGroupId.1=string'

Available Parameters

Name Type Description
Attachment Attachment A new configuration for the attachment.
» AttachmentId string The ID of the FNI attachment.
» DeleteOnTermination boolean By default or if set to false, the FNI is detached from the instance when the instance is terminated. If true, the FNI is deleted.
Description Description_0 A new description of the resource.
» Value string The value specified for the resource attribute.
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
NetworkInterfaceId (required) string The ID of the FNI.
SecurityGroupId [string] One or more IDs of security groups to associate with the FNI.
The FNI must be associated with at least one security group.

Responses

Status Description Schema
200 The HTTP 200 response (OK). ModifyNetworkInterfaceAttributeResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

UnassignPrivateIpAddresses

GET /UnassignPrivateIpAddresses

Unassigns one or more secondary private IPs from an FNI.

This AWS-compliant method corresponds to UnlinkPrivateIps in the OUTSCALE API.

Code samples

osc-cli fcu UnassignPrivateIpAddresses --profile "default" \
  --NetworkInterfaceId "string" \
  --PrivateIpAddress '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=UnassignPrivateIpAddresses' \
  --data-urlencode 'NetworkInterfaceId=string' \
  --data-urlencode 'PrivateIpAddress.1=string'

Available Parameters

Name Type Description
NetworkInterfaceId (required) string The ID of the FNI.
PrivateIpAddress (required) [string] One or more secondary private IPs you want to unassign from the FNI.

Responses

Status Description Schema
200 The HTTP 200 response (OK). UnassignPrivateIpAddressesResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

Peering Connections

AcceptVpcPeeringConnection

GET /AcceptVpcPeeringConnection

Accepts a VPC peering connection request.
To accept this request, you must be the owner of the peer VPC. If you do not accept the request within 7 days, the state of the VPC peering connection becomes expired.

[NOTE]
A peering connection between two VPCs works both ways. Therefore, when an A-to-B peering connection is accepted, any pending B-to-A peering connection is automatically rejected as redundant.

This AWS-compliant method corresponds to AcceptNetPeering in the OUTSCALE API.

Code samples

osc-cli fcu AcceptVpcPeeringConnection --profile "default" \
  --VpcPeeringConnectionId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AcceptVpcPeeringConnection' \
  --data-urlencode 'VpcPeeringConnectionId=string'

Available Parameters

Name Type Description
VpcPeeringConnectionId (required) string The ID of the VPC peering connection you want to accept.

Responses

Status Description Schema
200 The HTTP 200 response (OK). AcceptVpcPeeringConnectionResponse

Example responses

200 Response

{
  "requestId": "string",
  "vpcPeeringConnection": {
    "accepterVpcInfo": {
      "cidrBlock": "string",
      "ownerId": "string",
      "vpcId": "string"
    },
    "expirationTime": "string",
    "requesterVpcInfo": {
      "cidrBlock": "string",
      "ownerId": "string",
      "vpcId": "string"
    },
    "status": {
      "code": "string",
      "message": "string"
    },
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcPeeringConnectionId": "string"
  }
}

CreateVpcPeeringConnection

GET /CreateVpcPeeringConnection

Requests a VPC peering connection between a VPC you own and a peer VPC that belongs to you or another account.
This action creates a VPC peering connection that remains in the pending-acceptance state until it is accepted by the owner of the peer VPC. If the owner of the peer VPC does not accept the request within 7 days, the state of the VPC peering connection becomes expired. For more information, see AcceptVpcPeeringConnection.

[IMPORTANT]

  • Peered VPCs must contain at least one instance each before the creation of the VPC peering connection.
  • The two VPCs must not have overlapping CIDR blocks. Otherwise, the VPC peering connection is in the failed state.
  • A peering connection between two VPCs works both ways. Therefore, you do not need to create a B-to-A connection if an A-to-B connection is created and accepted.

For more information, see About Net Peerings.
This AWS-compliant method corresponds to CreateNetPeering in the OUTSCALE API.

Code samples

osc-cli fcu CreateVpcPeeringConnection --profile "default" \
  --PeerOwnerId "string" \
  --PeerVpcId "string" \
  --VpcId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateVpcPeeringConnection' \
  --data-urlencode 'PeerOwnerId=string' \
  --data-urlencode 'PeerVpcId=string' \
  --data-urlencode 'VpcId=string'

Available Parameters

Name Type Description
PeerOwnerId string The account ID of the owner of the VPC you want to connect with. By default, it is your account ID.
PeerVpcId (required) string The ID of the VPC you want to connect with.
VpcId (required) string The ID of the VPC you send the request from.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateVpcPeeringConnectionResponse

Example responses

200 Response

{
  "requestId": "string",
  "vpcPeeringConnection": {
    "accepterVpcInfo": {
      "cidrBlock": "string",
      "ownerId": "string",
      "vpcId": "string"
    },
    "expirationTime": "string",
    "requesterVpcInfo": {
      "cidrBlock": "string",
      "ownerId": "string",
      "vpcId": "string"
    },
    "status": {
      "code": "string",
      "message": "string"
    },
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcPeeringConnectionId": "string"
  }
}

DeleteVpcPeeringConnection

GET /DeleteVpcPeeringConnection

Deletes a VPC peering connection.
If the VPC peering connection is in the active state, it can be deleted either by the owner of the requester VPC or the owner of the peer VPC.
If it is in the pending-acceptance state, it can be deleted only by the owner of the requester VPC.
If it is in the rejected, failed, or expired states, it cannot be deleted.

This AWS-compliant method corresponds to DeleteNetPeering in the OUTSCALE API.

Code samples

osc-cli fcu DeleteVpcPeeringConnection --profile "default" \
  --VpcPeeringConnectionId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteVpcPeeringConnection' \
  --data-urlencode 'VpcPeeringConnectionId=string'

Available Parameters

Name Type Description
VpcPeeringConnectionId (required) string The ID of the VPC peering connection you want to delete.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteVpcPeeringConnectionResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeVpcPeeringConnections

GET /DescribeVpcPeeringConnections

Describes one or more peering connections between two Virtual Private Clouds (VPCs).
You can use the Filter.N parameter to filter the described VPC peering connections on the following properties:

  • accepter-vpc-info.cidr-block: The CIDR block of the peer VPC.
  • accepter-vpc-info.owner-id: The account ID of the owner of the peer VPC.
  • accepter-vpc-info.vpc-id: The ID of the peer VPC.
  • expiration-time: The date after which the connection expires.
  • requester-vpc-info.cidr-block: The CIDR block of the requester VPC.
  • requester-vpc-info.owner-id: The ID of the owner of the requester VPC.
  • requester-vpc-info.vpc-id: The ID of the requester VPC.
  • status-code: The state of the VPC peering connection (pending-acceptance | active | rejected | failed | expired | deleted).
  • status-message: Additional information about the state of the VPC peering connection.
  • vpc-peering-connection-id: The ID of the VPC peering connection.
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.

    This AWS-compliant method corresponds to ReadNetPeerings in the OUTSCALE API.

Code samples

osc-cli fcu DescribeVpcPeeringConnections --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --VpcPeeringConnectionId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeVpcPeeringConnections' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'VpcPeeringConnectionId.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeVpcPeeringConnections \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
VpcPeeringConnectionId [string] One or more VPC peering connection IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeVpcPeeringConnectionsResponse

Example responses

200 Response

{
  "requestId": "string",
  "vpcPeeringConnectionSet": [
    {
      "accepterVpcInfo": {
        "cidrBlock": "string",
        "ownerId": "string",
        "vpcId": "string"
      },
      "expirationTime": "string",
      "requesterVpcInfo": {
        "cidrBlock": "string",
        "ownerId": "string",
        "vpcId": "string"
      },
      "status": {
        "code": "string",
        "message": "string"
      },
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcPeeringConnectionId": "string"
    }
  ]
}

RejectVpcPeeringConnection

GET /RejectVpcPeeringConnection

Rejects a VPC peering connection request.
The VPC peering connection must be in the pending-acceptance state to be rejected. The rejected VPC peering connection is then in the rejected state.

This AWS-compliant method corresponds to RejectNetPeering in the OUTSCALE API.

Code samples

osc-cli fcu RejectVpcPeeringConnection --profile "default" \
  --VpcPeeringConnectionId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=RejectVpcPeeringConnection' \
  --data-urlencode 'VpcPeeringConnectionId=string'

Available Parameters

Name Type Description
VpcPeeringConnectionId (required) string The ID of the VPC peering connection you want to reject.

Responses

Status Description Schema
200 The HTTP 200 response (OK). RejectVpcPeeringConnectionResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

Prefix Lists

DescribePrefixLists

GET /DescribePrefixLists

Describes one or more prefix lists for available OUTSCALE services.
Each prefix list is composed of an ID, a name to identify the service it is associated with and a list of network prefixes used by this service, in CIDR notation.
You can use prefix list IDs in outbound security group rules to allow traffic from a VPC to access the corresponding service. For more information, see the AuthorizeSecurityGroupEgress method.
You can filter the described prefix lists using the PrefixListId.N parameter.
You can also use the Filter.N parameter to filter the prefix lists on the following properties:

  • prefix-list-id: The ID of a prefix list.
  • prefix-list-name: The name of a prefix list.

    This AWS-compliant method corresponds to ReadNetAccessPointServices in the OUTSCALE API.

Code samples

osc-cli fcu DescribePrefixLists --profile "default" \
  --DryRun False \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --MaxResults 0 \
  --NextToken "string" \
  --PrefixListId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribePrefixLists' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'MaxResults=0' \
  --data-urlencode 'NextToken=string' \
  --data-urlencode 'PrefixListId.1=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribePrefixLists \
  --Filter.1.Name "prefix-list-id" \
  --Filter.1.Value.1 "pl-12345678"
» Name string The name of the filter.
» Value [string] One or more filter values.
MaxResults integer The maximum number of results that can be returned in a single page. You can use NextToken to request the next results pages. This value is between 5 and 1000. If you provide a value larger than 1000, only 1000 results are returned.
NextToken string The token to request the next results page.
PrefixListId [string] One or more prefix list IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribePrefixListsResponse

Example responses

200 Response

{
  "nextToken": "string",
  "prefixListSet": [
    {
      "cidrSet": [
        "string"
      ],
      "prefixListId": "string",
      "prefixListName": "string"
    }
  ],
  "requestId": "string"
}

Product Types

DescribeInstanceTypes

GET /DescribeInstanceTypes

Describes one or more predefined instance types.

You can use the Filter.N parameter to filter the instance types on the following properties:

  • ephemerals-type: The type of ephemeral storage disk.
  • eth: The number of Ethernet interfaces available.
  • gpu: The number of GPUs available.
  • memory: The amount of memory, in bytes.
  • name: The name of the instance type.
  • storage-count: The maximum number of ephemeral storage disks.
  • storage-size: The size of one ephemeral storage disk, in bytes.
  • vcpu: The number of vCPUs.

    This AWS-compliant method corresponds to ReadVmTypes in the OUTSCALE API.

Code samples

osc-cli fcu DescribeInstanceTypes --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeInstanceTypes' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeInstanceTypes \
  --Filter.1.Name "description" \
  --Filter.1.Value.1 "Windows"
» Name string The name of the filter.
» Value [string] One or more filter values.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeInstanceTypesResponse

Example responses

200 Response

{
  "instanceTypeSet": [
    {
      "ebsOptimizedAvailable": true,
      "ephemeralsType": "string",
      "eth": 0,
      "gpu": 0,
      "maxIpAddresses": 0,
      "memory": 0,
      "name": "string",
      "storageCount": 0,
      "storageSize": 0,
      "vcpu": 0
    }
  ],
  "requestId": "string"
}

DescribeProductTypes

GET /DescribeProductTypes

Describes one or more product types.
You can use the Filter.N parameter to filter the product types on the description property:

  • description: The description of the product.

    This AWS-compliant method corresponds to ReadProductTypes in the OUTSCALE API.

Code samples

osc-cli fcu DescribeProductTypes --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeProductTypes' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeProductTypes \
  --Filter.1.Name "description" \
  --Filter.1.Value.1 "Windows"
» Name string The name of the filter.
» Value [string] One or more filter values.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeProductTypesResponse

Example responses

200 Response

{
  "productTypeSet": [
    {
      "description": "string",
      "productTypeId": "string",
      "vendor": "string"
    }
  ],
  "requestId": "string"
}

GetProductType

GET /GetProductType

Gets the product type of a specified OUTSCALE machine image (OMI) or snapshot.

[TIP]
This function is deprecated. Use the GetProductTypes method instead to get the product type of all products installed on an OMI or snapshot.

This AWS-compliant method corresponds to ReadSnapshots in the OUTSCALE API.

Code samples

osc-cli fcu GetProductType --profile "default" \
  --ImageId "string" \
  --SnapshotId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=GetProductType' \
  --data-urlencode 'ImageId=string' \
  --data-urlencode 'SnapshotId=string'

Available Parameters

Name Type Description
ImageId string The ID of the OMI.
SnapshotId string The ID of the snapshot.

Responses

Status Description Schema
200 The HTTP 200 response (OK). GetProductTypeResponse

Example responses

200 Response

{
  "productType": {
    "description": "string",
    "productTypeId": "string",
    "vendor": "string"
  },
  "requestId": "string"
}

GetProductTypes

GET /GetProductTypes

Gets the product types of all products installed on a specified OUTSCALE machine image (OMI) or snapshot.

This AWS-compliant method corresponds to ReadSnapshots in the OUTSCALE API.

Code samples

osc-cli fcu GetProductTypes --profile "default" \
  --ImageId "string" \
  --SnapshotId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=GetProductTypes' \
  --data-urlencode 'ImageId=string' \
  --data-urlencode 'SnapshotId=string'

Available Parameters

Name Type Description
ImageId string The ID of the OMI.
SnapshotId string The ID of the snapshot.

Responses

Status Description Schema
200 The HTTP 200 response (OK). GetProductTypesResponse

Example responses

200 Response

{
  "productTypeSet": [
    {
      "description": "string",
      "productTypeId": "string",
      "vendor": "string"
    }
  ],
  "requestId": "string"
}

Quotas

DescribeQuotas

GET /DescribeQuotas

Describes one or more of your quotas.
You can use the QuotaName.N parameter to filter on the name of one or more quotas.
You can also use the Filter.N parameter to filter the described quotas on the following properties:

  • reference: The reference of the quota.
  • quota.display-name: The display name of the quota.
  • quota.group-name: The group name of the quota.

    For more information, see About Your Accounts.
    This AWS-compliant method corresponds to ReadQuotas in the OUTSCALE API.

Code samples

osc-cli fcu DescribeQuotas --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --MaxResults 0 \
  --NextToken "string" \
  --QuotaName '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeQuotas' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'MaxResults=0' \
  --data-urlencode 'NextToken=string' \
  --data-urlencode 'QuotaName.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeQuotas \
  --Filter.1.Name "quota.display-name" \
  --Filter.1.Value.1 "DisplayName"
» Name string The name of the filter.
» Value [string] One or more filter values.
MaxResults integer The maximum number of items that can be returned in a single page (by default, 100).
NextToken string The token to request the next results page.
QuotaName [string] One or more names of quotas.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeQuotasResponse

Example responses

200 Response

{
  "nextToken": "string",
  "referenceQuotaSet": [
    {
      "quotaSet": [],
      "reference": "string"
    }
  ],
  "requestId": "string"
}

Regions

DescribeAvailabilityZones

GET /DescribeAvailabilityZones

Describes one or more of the enabled Availability Zones that you can access in the current Region.
You can use the ZoneName.N parameter to filter on the name of one or more Availability Zones.
You can also use the Filter.N parameter to filter the described Availability Zones on the following properties:

  • region-name: The name of the Region containing the Availability Zones.
  • state: The state of the Availability Zone.
  • zone-name: The name of the Availability Zone. This filter is similar to the ZoneName.N parameter.

[IMPORTANT]
You can only use this command to get information about Availability Zones in a Region for which you have an account. Otherwise, the AuthFailure error message is returned.

This AWS-compliant method corresponds to ReadSubregions in the OUTSCALE API.

Code samples

osc-cli fcu DescribeAvailabilityZones --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --ZoneName '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeAvailabilityZones' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'ZoneName.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeAvailabilityZones \
  --Filter.1.Name "state" \
  --Filter.1.Value.1 "available"
» Name string The name of the filter.
» Value [string] One or more filter values.
ZoneName [string] Information about one or more Availability Zones.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeAvailabilityZonesResponse

Example responses

200 Response

{
  "availabilityZoneInfo": [
    {
      "regionName": "string",
      "zoneName": "string",
      "zoneState": "string"
    }
  ],
  "requestId": "string"
}

DescribeRegions

GET /DescribeRegions

Describes one or more Regions of the OUTSCALE Cloud.
You can use the RegionName.N parameter to filter on the name of one or more Regions.
You can also use the Filter.N parameter to filter the described Regions on the following properties:

  • region-name: The name of the Region. This filter is similar to the RegionName.N parameter.
  • endpoint: The complete URL of the gateway to access the Region.

    For more information, see About Regions, Endpoints, and Subregions.
    This AWS-compliant method corresponds to ReadRegions in the OUTSCALE API.

Code samples

osc-cli fcu DescribeRegions --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --RegionName '["string"]'

curl https://fcu.$OSC_REGION.outscale.com \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeRegions' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'RegionName.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeRegions \
  --Filter.1.Name "region-name" \
  --Filter.1.Value.1 "eu-west-2"
» Name string The name of the filter.
» Value [string] One or more filter values.
RegionName [string] The name of one or more Regions.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeRegionsResponse

Example responses

200 Response

{
  "regionInfo": [
    {
      "regionEndpoint": "string",
      "regionName": "string"
    }
  ],
  "requestId": "string"
}

ReadPublicIpRanges

GET /ReadPublicIpRanges

Returns the public IPv4 addresses in CIDR notation for the Region specified in the endpoint of the request. For more information, see Regions, Endpoints and Subregions Reference.
This AWS-compliant method corresponds to ReadPublicIpRanges in the OUTSCALE API.

Code samples

osc-cli fcu ReadPublicIpRanges --profile "default"

curl https://fcu.$OSC_REGION.outscale.com \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ReadPublicIpRanges'

Responses

Status Description Schema
200 The HTTP 200 response (OK). ReadPublicIpRangesResponse

Example responses

200 Response

{
  "publicIpSet": [
    "string"
  ],
  "requestId": "string"
}

Route Tables

AssociateRouteTable

GET /AssociateRouteTable

Associates a subnet with a route table.
The subnet and the route table must be in the same VPC. The traffic is routed according to the route table defined within this VPC. You can associate a route table with several subnets.

This AWS-compliant method corresponds to LinkRouteTable in the OUTSCALE API.

Code samples

osc-cli fcu AssociateRouteTable --profile "default" \
  --RouteTableId "string" \
  --SubnetId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AssociateRouteTable' \
  --data-urlencode 'RouteTableId=string' \
  --data-urlencode 'SubnetId=string'

Available Parameters

Name Type Description
RouteTableId (required) string The ID of the route table.
SubnetId (required) string The ID of the subnet.

Responses

Status Description Schema
200 The HTTP 200 response (OK). AssociateRouteTableResponse

Example responses

200 Response

{
  "associationId": "string",
  "requestId": "string"
}

CreateRoute

GET /CreateRoute

Creates a route in a specified route table within a specified VPC.
You must specify one of the following elements as the target:

  • VPC peering connection
  • NAT instance
  • Internet gateway
  • Virtual private gateway
  • NAT gateway
  • Network interface
    The routing algorithm is based on the most specific match.

    For more information, see About Route Tables.
    This AWS-compliant method corresponds to CreateRoute in the OUTSCALE API.

Code samples

osc-cli fcu CreateRoute --profile "default" \
  --DestinationCidrBlock "string" \
  --GatewayId "string" \
  --InstanceId "string" \
  --NatGatewayId "string" \
  --NetworkInterfaceId "string" \
  --RouteTableId "string" \
  --VpcPeeringConnectionId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateRoute' \
  --data-urlencode 'DestinationCidrBlock=string' \
  --data-urlencode 'GatewayId=string' \
  --data-urlencode 'InstanceId=string' \
  --data-urlencode 'NatGatewayId=string' \
  --data-urlencode 'NetworkInterfaceId=string' \
  --data-urlencode 'RouteTableId=string' \
  --data-urlencode 'VpcPeeringConnectionId=string'

Available Parameters

Name Type Description
DestinationCidrBlock (required) string The CIDR block used for the destination match.
GatewayId string The ID of an Internet gateway or virtual private gateway attached to your VPC.
InstanceId string The ID of a NAT instance in your VPC (attached to exactly one network interface).
NatGatewayId string The ID of a NAT gateway.
NetworkInterfaceId string The ID of a network interface.
RouteTableId (required) string The ID of the route table.
VpcPeeringConnectionId string The ID of a VPC peering connection.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateRouteResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

CreateRouteTable

GET /CreateRouteTable

Creates a route table for a specified VPC.
You can then add routes and associate this route table with a subnet.

For more information, see About Route Tables.
This AWS-compliant method corresponds to CreateRouteTable in the OUTSCALE API.

Code samples

osc-cli fcu CreateRouteTable --profile "default" \
  --VpcId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateRouteTable' \
  --data-urlencode 'VpcId=string'

Available Parameters

Name Type Description
VpcId (required) string The ID of the VPC.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateRouteTableResponse

Example responses

200 Response

{
  "requestId": "string",
  "routeTable": {
    "associationSet": [
      {
        "main": true,
        "routeTableAssociationId": "string",
        "routeTableId": "string",
        "subnetId": "string"
      }
    ],
    "propagatingVgwSet": [
      {
        "gatewayId": "string"
      }
    ],
    "routeSet": [
      {
        "destinationCidrBlock": "string",
        "destinationPrefixListId": "string",
        "gatewayId": "string",
        "instanceId": "string",
        "instanceOwnerId": "string",
        "networkInterfaceId": "string",
        "origin": "string",
        "state": "string",
        "vpcPeeringConnectionId": "string"
      }
    ],
    "routeTableId": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcId": "string"
  }
}

DeleteRoute

GET /DeleteRoute

Deletes a route from a specified route table.

This AWS-compliant method corresponds to DeleteRoute in the OUTSCALE API.

Code samples

osc-cli fcu DeleteRoute --profile "default" \
  --DestinationCidrBlock "string" \
  --RouteTableId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteRoute' \
  --data-urlencode 'DestinationCidrBlock=string' \
  --data-urlencode 'RouteTableId=string'

Available Parameters

Name Type Description
DestinationCidrBlock (required) string The exact CIDR range for the route.
RouteTableId (required) string The ID of the route table you want to delete.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteRouteResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DeleteRouteTable

GET /DeleteRouteTable

Deletes a specified route table.
Before deleting a route table, you must disassociate it from any subnet. You cannot delete the main route table.

This AWS-compliant method corresponds to DeleteRouteTable in the OUTSCALE API.

Code samples

osc-cli fcu DeleteRouteTable --profile "default" \
  --RouteTableId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteRouteTable' \
  --data-urlencode 'RouteTableId=string'

Available Parameters

Name Type Description
RouteTableId (required) string The ID of the route table.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteRouteTableResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeRouteTables

GET /DescribeRouteTables

Describes one or more of your route tables.
In your Virtual Private Cloud (VPC), each subnet must be associated with a route table. If a subnet is not explicitly associated with a route table, it is implicitly associated with the main route table of the VPC.
You can use the Filter.N parameter to filter the route tables on the following properties:

  • association.route-table-association-id: The ID of an association ID for the route table.
  • association.route-table-id: The ID of the route table involved in the association.
  • association.subnet-id: The ID of the subnet involved in the association.
  • association.main: Indicates whether the route table is the main route table for the VPC (true | false).
  • route-table-id: The ID of the route table.
  • route.destination-cidr-block: The CIDR range specified in a route in the table.
  • route.destination-prefix-list-id: The prefix ID of the service specified in a route in the table.
  • route.gateway-id: The ID of a gateway specified in a route in the table.
  • route.instance-id: The ID of an instance specified in a route in the table.
  • route.nat-gateway-id: The ID of a NAT gateway specified in a route in the table.
  • route.origin: How the route was created.
  • route.state: The state of a route in the route table (always active).
  • route.vpc-peering-connection-id: The ID of a VPC peering connection specified in a route in the table.
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.
  • vpc-id: The ID of the VPC for the route table.

    This AWS-compliant method corresponds to ReadRouteTables in the OUTSCALE API.

Code samples

osc-cli fcu DescribeRouteTables --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --RouteTableId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeRouteTables' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'RouteTableId.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeRouteTables \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
RouteTableId [string] One or more route table IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeRouteTablesResponse

Example responses

200 Response

{
  "requestId": "string",
  "routeTableSet": [
    {
      "associationSet": [
        {
          "main": true,
          "routeTableAssociationId": "string",
          "routeTableId": "string",
          "subnetId": "string"
        }
      ],
      "propagatingVgwSet": [
        {
          "gatewayId": "string"
        }
      ],
      "routeSet": [
        {
          "destinationCidrBlock": "string",
          "destinationPrefixListId": "string",
          "gatewayId": "string",
          "instanceId": "string",
          "instanceOwnerId": "string",
          "networkInterfaceId": "string",
          "origin": "string",
          "state": "string",
          "vpcPeeringConnectionId": "string"
        }
      ],
      "routeTableId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ]
}

DisassociateRouteTable

GET /DisassociateRouteTable

Disassociates a subnet from a route table.
After disassociation, the subnet can no longer use the routes in this route table, but uses the routes in the main route table of the VPC instead.

This AWS-compliant method corresponds to UnlinkRouteTable in the OUTSCALE API.

Code samples

osc-cli fcu DisassociateRouteTable --profile "default" \
  --AssociationId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DisassociateRouteTable' \
  --data-urlencode 'AssociationId=string'

Available Parameters

Name Type Description
AssociationId (required) string The ID of the current association between the route table and the subnet.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DisassociateRouteTableResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

ReplaceRoute

GET /ReplaceRoute

Replaces an existing route within a route table in a VPC.
You must specify one of the following elements as the target:

  • VPC peering connection
  • NAT instance
  • Internet gateway
  • Virtual private gateway
  • NAT gateway
  • Network interface
    The routing algorithm is based on the most specific match.

    This AWS-compliant method corresponds to UpdateRoute in the OUTSCALE API.

Code samples

osc-cli fcu ReplaceRoute --profile "default" \
  --DestinationCidrBlock "string" \
  --GatewayId "string" \
  --InstanceId "string" \
  --NatGatewayId "string" \
  --NetworkInterfaceId "string" \
  --RouteTableId "string" \
  --VpcPeeringConnectionId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ReplaceRoute' \
  --data-urlencode 'DestinationCidrBlock=string' \
  --data-urlencode 'GatewayId=string' \
  --data-urlencode 'InstanceId=string' \
  --data-urlencode 'NatGatewayId=string' \
  --data-urlencode 'NetworkInterfaceId=string' \
  --data-urlencode 'RouteTableId=string' \
  --data-urlencode 'VpcPeeringConnectionId=string'

Available Parameters

Name Type Description
DestinationCidrBlock (required) string The CIDR block used for the destination match.
GatewayId string The ID of an Internet gateway or virtual private gateway attached to your VPC.
InstanceId string The ID of a NAT instance in your VPC.
NatGatewayId string The ID of a NAT gateway.
NetworkInterfaceId string The ID of a network interface.
RouteTableId (required) string The ID of the route table.
VpcPeeringConnectionId string The ID of a VPC peering connection.

Responses

Status Description Schema
200 The HTTP 200 response (OK). ReplaceRouteResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

ReplaceRouteTableAssociation

GET /ReplaceRouteTableAssociation

Replaces the route table associated with a specific subnet in a VPC with another one.
After the route table is replaced, the subnet uses the routes in the new route table it is associated with.

This AWS-compliant method corresponds to UpdateRouteTableLink in the OUTSCALE API.

Code samples

osc-cli fcu ReplaceRouteTableAssociation --profile "default" \
  --AssociationId "string" \
  --RouteTableId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ReplaceRouteTableAssociation' \
  --data-urlencode 'AssociationId=string' \
  --data-urlencode 'RouteTableId=string'

Available Parameters

Name Type Description
AssociationId (required) string The ID of the current route table association.
RouteTableId (required) string The ID of the new route table to associate with the subnet.

Responses

Status Description Schema
200 The HTTP 200 response (OK). ReplaceRouteTableAssociationResponse

Example responses

200 Response

{
  "newAssociationId": "string",
  "requestId": "string"
}

Security Groups

AuthorizeSecurityGroupEgress

GET /AuthorizeSecurityGroupEgress

Adds one or more egress rules to a security group for use with a Virtual Private Cloud (VPC).
It allows instances to send traffic to either one or more destination CIDR IP ranges or destination security groups for the same VPC.
We recommend using a set of IP permissions to authorize outbound access to a destination security group. We also recommend specifying the protocol in a set of IP permissions.

[NOTE]
By default, traffic between two security groups is allowed through both public and private IPs. To restrict it to private IPs only, contact our Support team: support@outscale.com.

This AWS-compliant method corresponds to CreateSecurityGroupRule in the OUTSCALE API.

Code samples

osc-cli fcu AuthorizeSecurityGroupEgress --profile "default" \
  --CidrIp "string" \
  --FromPort 0 \
  --GroupId "string" \
  --IpPermissions '[
      {
        "FromPort": 0,
        "Groups": [{"GroupId": "string", "GroupName": "string", "UserId": "string"}],
        "IpProtocol": "string",
        "IpRanges": [{"CidrIp": "string"}],
        "PrefixListIds": [{"PrefixListId": "string"}],
        "ToPort": 0,
      },
    ]' \
  --IpProtocol "string" \
  --SourceSecurityGroupName "string" \
  --SourceSecurityGroupOwnerId "string" \
  --ToPort 0

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AuthorizeSecurityGroupEgress' \
  --data-urlencode 'CidrIp=string' \
  --data-urlencode 'FromPort=0' \
  --data-urlencode 'GroupId=string' \
  --data-urlencode 'IpPermissions.1.FromPort=0' \
  --data-urlencode 'IpPermissions.1.Groups.1.GroupId=string' \
  --data-urlencode 'IpPermissions.1.Groups.1.GroupName=string' \
  --data-urlencode 'IpPermissions.1.Groups.1.UserId=string' \
  --data-urlencode 'IpPermissions.1.IpProtocol=string' \
  --data-urlencode 'IpPermissions.1.IpRanges.1.CidrIp=string' \
  --data-urlencode 'IpPermissions.1.PrefixListIds.1.PrefixListId=string' \
  --data-urlencode 'IpPermissions.1.ToPort=0' \
  --data-urlencode 'IpProtocol=string' \
  --data-urlencode 'SourceSecurityGroupName=string' \
  --data-urlencode 'SourceSecurityGroupOwnerId=string' \
  --data-urlencode 'ToPort=0'

Available Parameters

Name Type Description
CidrIp string The CIDR IP range.
FromPort integer The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
GroupId (required) string The ID of the security group.
IpPermissions [IpPermissions_0] One or more IP permissions.
» FromPort integer The beginning of the port range for TCP and UDP protocols, or an ICMP type number.
» Groups [Groups_0] One or more security groups and account ID pairs.
»» GroupId string The ID of the security group (in case of a security group in a nondefault VPC).
»» GroupName string The name of the security group (in case of a security group in FCU or a default VPC).
»» UserId string The ID of the account.
» IpProtocol string The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a VPC, this can also be an IP protocol number. For more information, see the IANA.org website.
» IpRanges [IpRanges_0] One or more IP ranges.
»» CidrIp string The range of IPs.
» PrefixListIds [PrefixListIds_0] One or more prefix list IDs to allow traffic from a VPC to access the corresponding OUTSCALE services. For more information, see DescribePrefixLists.
»» PrefixListId string The ID of the prefix.
» ToPort integer The end of the port range for TCP and UDP protocols, or an ICMP code number.
IpProtocol string The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a VPC, this can also be an IP protocol number. For more information, see the IANA.org website.
SourceSecurityGroupName string The name of a destination security group.
SourceSecurityGroupOwnerId string The account ID of the owner of a destination security group.
ToPort integer The end of port range for the TCP and UDP protocols, or an ICMP code number.

Responses

Status Description Schema
200 The HTTP 200 response (OK). AuthorizeSecurityGroupEgressResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

AuthorizeSecurityGroupIngress

GET /AuthorizeSecurityGroupIngress

Adds one or more ingress rules to a security group.
The modifications are effective at instance level as quickly as possible, but a small delay may occur.
In the public Cloud, this action allows one or more CIDR IP ranges to access a security group for your account, or allows one or more security groups (source groups) to access a security group for your own OUTSCALE account or another one.
In a Virtual Private Cloud (VPC), this action allows one or more CIDR IP ranges to access a security group for your VPC, or allows one or more other security groups (source groups) to access a security group for your VPC. All the security groups must be for the same VPC.
To create a rule with a specific IP protocol and a specific port range, we recommend using a set of IP permissions. We also recommend specifying the protocol in a set of IP permissions.

[NOTE]
By default, traffic between two security groups is allowed through both public and private IPs. To restrict it to private IPs only, contact our Support team: support@outscale.com.

This AWS-compliant method corresponds to CreateSecurityGroupRule in the OUTSCALE API.

Code samples

osc-cli fcu AuthorizeSecurityGroupIngress --profile "default" \
  --CidrIp "string" \
  --FromPort 0 \
  --GroupId "string" \
  --GroupName "string" \
  --IpPermissions '[
      {
        "FromPort": 0,
        "Groups": [{"GroupId": "string", "GroupName": "string", "UserId": "string"}],
        "IpProtocol": "string",
        "IpRanges": [{"CidrIp": "string"}],
        "PrefixListIds": [{"PrefixListId": "string"}],
        "ToPort": 0,
      },
    ]' \
  --IpProtocol "string" \
  --SourceSecurityGroupName "string" \
  --SourceSecurityGroupOwnerId "string" \
  --ToPort 0

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AuthorizeSecurityGroupIngress' \
  --data-urlencode 'CidrIp=string' \
  --data-urlencode 'FromPort=0' \
  --data-urlencode 'GroupId=string' \
  --data-urlencode 'GroupName=string' \
  --data-urlencode 'IpPermissions.1.FromPort=0' \
  --data-urlencode 'IpPermissions.1.Groups.1.GroupId=string' \
  --data-urlencode 'IpPermissions.1.Groups.1.GroupName=string' \
  --data-urlencode 'IpPermissions.1.Groups.1.UserId=string' \
  --data-urlencode 'IpPermissions.1.IpProtocol=string' \
  --data-urlencode 'IpPermissions.1.IpRanges.1.CidrIp=string' \
  --data-urlencode 'IpPermissions.1.PrefixListIds.1.PrefixListId=string' \
  --data-urlencode 'IpPermissions.1.ToPort=0' \
  --data-urlencode 'IpProtocol=string' \
  --data-urlencode 'SourceSecurityGroupName=string' \
  --data-urlencode 'SourceSecurityGroupOwnerId=string' \
  --data-urlencode 'ToPort=0'

Available Parameters

Name Type Description
CidrIp string The CIDR IP range.
FromPort integer The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
GroupId string The ID of the security group.
GroupName string The name of the security group, if you are in the public Cloud.
IpPermissions [IpPermissions_0] Describes a security group rule.
» FromPort integer The beginning of the port range for TCP and UDP protocols, or an ICMP type number.
» Groups [Groups_0] One or more security groups and account ID pairs.
»» GroupId string The ID of the security group (in case of a security group in a nondefault VPC).
»» GroupName string The name of the security group (in case of a security group in FCU or a default VPC).
»» UserId string The ID of the account.
» IpProtocol string The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a VPC, this can also be an IP protocol number. For more information, see the IANA.org website.
» IpRanges [IpRanges_0] One or more IP ranges.
»» CidrIp string The range of IPs.
» PrefixListIds [PrefixListIds_0] One or more prefix list IDs to allow traffic from a VPC to access the corresponding OUTSCALE services. For more information, see DescribePrefixLists.
»» PrefixListId string The ID of the prefix.
» ToPort integer The end of the port range for TCP and UDP protocols, or an ICMP code number.
IpProtocol string The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a VPC, this can also be an IP protocol number. For more information, see the IANA.org website.
SourceSecurityGroupName string The name of the source security group (cannot be combined with the FromPort, ToPort, CidrIp and IpProtocol parameters).
SourceSecurityGroupOwnerId string The OUTSCALE account ID of the owner of the source security group, creating rules that grant full ICMP, UDP, and TCP access (cannot be combined with the FromPort, ToPort, CidrIp and IpProtocol parameters).
ToPort integer The end of port range for the TCP and UDP protocols, or an ICMP code number.

Responses

Status Description Schema
200 The HTTP 200 response (OK). AuthorizeSecurityGroupIngressResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

CreateSecurityGroup

GET /CreateSecurityGroup

Creates a security group.
This action creates a security group either in the public Cloud or in a specified Virtual Private Cloud (VPC). By default, a default security group for use in the public Cloud and a default security group for use in a VPC are created.
When launching an instance, if no security group is explicitly specified, the appropriate default security group is assigned to the instance. Default security groups include a default rule granting instances network access to each other.
When creating a security group, you specify a name. Two security groups for use in the public Cloud or for use in a VPC cannot have the same name.
You can have up to 500 security groups in the public Cloud. You can create up to 500 security groups per VPC.
To add or remove rules, use the AuthorizeSecurityGroupIngress, AuthorizeSecurityGroupEgress, RevokeSecurityGroupIngress or RevokeSecurityGroupEgress methods.

For more information, see About Security Groups.
This AWS-compliant method corresponds to CreateSecurityGroup in the OUTSCALE API.

Code samples

osc-cli fcu CreateSecurityGroup --profile "default" \
  --DryRun False \
  --GroupDescription "string" \
  --GroupName "string" \
  --VpcId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateSecurityGroup' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'GroupDescription=string' \
  --data-urlencode 'GroupName=string' \
  --data-urlencode 'VpcId=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
GroupDescription (required) string A description for the security group.
This description can contain between 1 and 255 characters. Allowed characters are a-z, A-Z, 0-9, spaces, and _.-:/()#,@[]+=&;{}!$*.
GroupName (required) string The name of the security group.
This name must not start with sg-.
This name must be unique and contain between 1 and 255 characters. Allowed characters are a-z, A-Z, 0-9, spaces, and _.-:/()#,@[]+=&;{}!$*.
VpcId string The ID of the VPC.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateSecurityGroupResponse

Example responses

200 Response

{
  "groupId": "string",
  "requestId": "string",
  "return": true
}

DeleteSecurityGroup

GET /DeleteSecurityGroup

Deletes a specified security group.
You can specify either the name of the security group or its ID.
This action fails if the specified group is associated with an instance or referenced by another security group.

This AWS-compliant method corresponds to DeleteSecurityGroup in the OUTSCALE API.

Code samples

osc-cli fcu DeleteSecurityGroup --profile "default" \
  --GroupId "string" \
  --GroupName "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteSecurityGroup' \
  --data-urlencode 'GroupId=string' \
  --data-urlencode 'GroupName=string'

Available Parameters

Name Type Description
GroupId string The ID of the security group. In a Virtual Private Cloud (VPC), this parameter is required.
GroupName string (Public Cloud only) The name of the security group.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteSecurityGroupResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeSecurityGroups

GET /DescribeSecurityGroups

Describes one or more security groups.
You can specify either the name of the security groups or their IDs.
You can use the Filter.N parameter to filter the security groups on the following properties:

  • description: The description of the security group.
  • group-id: The ID of the security group.
  • group-name: The name of the security group.
  • ip-permission.cidr: A CIDR range that has been granted permission.
  • ip-permission.from-port: The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
  • ip-permission.group-id: The ID of a security group that has been granted permission.
  • ip-permission.group-name: The name of a security group that has been granted permission.
  • ip-permission.protocol: The IP protocol for the permission (tcp | udp | icmp, or a protocol number, or -1 for all protocols).
  • ip-permission.to-port: The end of the port range for the TCP and UDP protocols, or an ICMP code number.
  • ip-permission.user-id: The account ID that has been granted permission.
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.
  • vpc-id: The ID of the VPC specified when the security group was created.

    This AWS-compliant method corresponds to ReadSecurityGroups in the OUTSCALE API.

Code samples

osc-cli fcu DescribeSecurityGroups --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --GroupId '["string"]' \
  --GroupName '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeSecurityGroups' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'GroupId.1=string' \
  --data-urlencode 'GroupName.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeSecurityGroups \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
GroupId [string] The ID of one or more security groups.
GroupName [string] The name of one or more security groups. This parameter only matches security groups in the public Cloud. To match security groups in a VPC, use the group-name filter instead.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeSecurityGroupsResponse

Example responses

200 Response

{
  "requestId": "string",
  "securityGroupInfo": [
    {
      "groupDescription": "string",
      "groupId": "string",
      "groupName": "string",
      "ipPermissions": [
        {
          "fromPort": 0,
          "groups": [
            {
              "groupId": "string",
              "groupName": "string",
              "userId": "string"
            }
          ],
          "ipProtocol": "string",
          "ipRanges": [
            {
              "cidrIp": "string"
            }
          ],
          "prefixListIds": [
            {
              "prefixListId": "string"
            }
          ],
          "toPort": 0
        }
      ],
      "ipPermissionsEgress": [
        {
          "fromPort": 0,
          "groups": [
            {
              "groupId": "string",
              "groupName": "string",
              "userId": "string"
            }
          ],
          "ipProtocol": "string",
          "ipRanges": [
            {
              "cidrIp": "string"
            }
          ],
          "prefixListIds": [
            {
              "prefixListId": "string"
            }
          ],
          "toPort": 0
        }
      ],
      "ownerId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ]
}

RevokeSecurityGroupEgress

GET /RevokeSecurityGroupEgress

Removes one or more egress rules from a security group for a VPC.
In case of TCP and UDP protocols, you have to indicate the destination port or range of ports. In case of ICMP protocol, you have to indicate ICMP type and code numbers.
Rules (IP permissions) consist of the protocol, CIDR range or source security group.
To revoke outbound access to a destination security group, we recommand to use a set of IP permissions. We also recommand to specify the protocol in a set of IP permissions.

This AWS-compliant method corresponds to DeleteSecurityGroupRule in the OUTSCALE API.

Code samples

osc-cli fcu RevokeSecurityGroupEgress --profile "default" \
  --CidrIp "string" \
  --FromPort 0 \
  --GroupId "string" \
  --IpPermissions '[
      {
        "FromPort": 0,
        "Groups": [{"GroupId": "string", "GroupName": "string", "UserId": "string"}],
        "IpProtocol": "string",
        "IpRanges": [{"CidrIp": "string"}],
        "PrefixListIds": [{"PrefixListId": "string"}],
        "ToPort": 0,
      },
    ]' \
  --IpProtocol "string" \
  --SourceSecurityGroupName "string" \
  --SourceSecurityGroupOwnerId "string" \
  --ToPort 0

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=RevokeSecurityGroupEgress' \
  --data-urlencode 'CidrIp=string' \
  --data-urlencode 'FromPort=0' \
  --data-urlencode 'GroupId=string' \
  --data-urlencode 'IpPermissions.1.FromPort=0' \
  --data-urlencode 'IpPermissions.1.Groups.1.GroupId=string' \
  --data-urlencode 'IpPermissions.1.Groups.1.GroupName=string' \
  --data-urlencode 'IpPermissions.1.Groups.1.UserId=string' \
  --data-urlencode 'IpPermissions.1.IpProtocol=string' \
  --data-urlencode 'IpPermissions.1.IpRanges.1.CidrIp=string' \
  --data-urlencode 'IpPermissions.1.PrefixListIds.1.PrefixListId=string' \
  --data-urlencode 'IpPermissions.1.ToPort=0' \
  --data-urlencode 'IpProtocol=string' \
  --data-urlencode 'SourceSecurityGroupName=string' \
  --data-urlencode 'SourceSecurityGroupOwnerId=string' \
  --data-urlencode 'ToPort=0'

Available Parameters

Name Type Description
CidrIp string The CIDR IP range.
FromPort integer The beginning of port range for the TCP and UDP protocols, or an ICMP type number.
GroupId (required) string The ID of the security group.
IpPermissions [IpPermissions_0] Information about one or more IP permissions.
» FromPort integer The beginning of the port range for TCP and UDP protocols, or an ICMP type number.
» Groups [Groups_0] One or more security groups and account ID pairs.
»» GroupId string The ID of the security group (in case of a security group in a nondefault VPC).
»» GroupName string The name of the security group (in case of a security group in FCU or a default VPC).
»» UserId string The ID of the account.
» IpProtocol string The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a VPC, this can also be an IP protocol number. For more information, see the IANA.org website.
» IpRanges [IpRanges_0] One or more IP ranges.
»» CidrIp string The range of IPs.
» PrefixListIds [PrefixListIds_0] One or more prefix list IDs to allow traffic from a VPC to access the corresponding OUTSCALE services. For more information, see DescribePrefixLists.
»» PrefixListId string The ID of the prefix.
» ToPort integer The end of the port range for TCP and UDP protocols, or an ICMP code number.
IpProtocol string The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a VPC, this can also be an IP protocol number. For more information, see the IANA.org website.
SourceSecurityGroupName string The name of a destination security group.
SourceSecurityGroupOwnerId string The OUTSCALE account ID of the owner of a destination security group.
ToPort integer The end of port range for the TCP and UDP protocols, or an ICMP code number.

Responses

Status Description Schema
200 The HTTP 200 response (OK). RevokeSecurityGroupEgressResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

RevokeSecurityGroupIngress

GET /RevokeSecurityGroupIngress

Removes one or more ingress rules from a security group. The values specified in the revoke request must exactly match the value of the existing rule for the rule to be removed.
In case of TCP and UDP protocols, you have to indicate the destination port or range of ports. In case of ICMP protocol, you have to specify the ICMP type and code numbers.
Rules (IP permissions) consist of the protocol, the CIDR range and the source security group.

This AWS-compliant method corresponds to DeleteSecurityGroupRule in the OUTSCALE API.

Code samples

osc-cli fcu RevokeSecurityGroupIngress --profile "default" \
  --CidrIp "string" \
  --FromPort 0 \
  --GroupId "string" \
  --GroupName "string" \
  --IpPermissions '[
      {
        "FromPort": 0,
        "Groups": [{"GroupId": "string", "GroupName": "string", "UserId": "string"}],
        "IpProtocol": "string",
        "IpRanges": [{"CidrIp": "string"}],
        "PrefixListIds": [{"PrefixListId": "string"}],
        "ToPort": 0,
      },
    ]' \
  --IpProtocol "string" \
  --SourceSecurityGroupName "string" \
  --SourceSecurityGroupOwnerId "string" \
  --ToPort 0

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=RevokeSecurityGroupIngress' \
  --data-urlencode 'CidrIp=string' \
  --data-urlencode 'FromPort=0' \
  --data-urlencode 'GroupId=string' \
  --data-urlencode 'GroupName=string' \
  --data-urlencode 'IpPermissions.1.FromPort=0' \
  --data-urlencode 'IpPermissions.1.Groups.1.GroupId=string' \
  --data-urlencode 'IpPermissions.1.Groups.1.GroupName=string' \
  --data-urlencode 'IpPermissions.1.Groups.1.UserId=string' \
  --data-urlencode 'IpPermissions.1.IpProtocol=string' \
  --data-urlencode 'IpPermissions.1.IpRanges.1.CidrIp=string' \
  --data-urlencode 'IpPermissions.1.PrefixListIds.1.PrefixListId=string' \
  --data-urlencode 'IpPermissions.1.ToPort=0' \
  --data-urlencode 'IpProtocol=string' \
  --data-urlencode 'SourceSecurityGroupName=string' \
  --data-urlencode 'SourceSecurityGroupOwnerId=string' \
  --data-urlencode 'ToPort=0'

Available Parameters

Name Type Description
CidrIp string The CIDR IP range.
FromPort integer The beginning of the port range for the TCP and UDP protocols, or an ICMP type number.
GroupId string The ID of the security group.
GroupName string The name of the security group, if you are in the public Cloud.
IpPermissions [IpPermissions_0] A set of IP permissions.
» FromPort integer The beginning of the port range for TCP and UDP protocols, or an ICMP type number.
» Groups [Groups_0] One or more security groups and account ID pairs.
»» GroupId string The ID of the security group (in case of a security group in a nondefault VPC).
»» GroupName string The name of the security group (in case of a security group in FCU or a default VPC).
»» UserId string The ID of the account.
» IpProtocol string The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a VPC, this can also be an IP protocol number. For more information, see the IANA.org website.
» IpRanges [IpRanges_0] One or more IP ranges.
»» CidrIp string The range of IPs.
» PrefixListIds [PrefixListIds_0] One or more prefix list IDs to allow traffic from a VPC to access the corresponding OUTSCALE services. For more information, see DescribePrefixLists.
»» PrefixListId string The ID of the prefix.
» ToPort integer The end of the port range for TCP and UDP protocols, or an ICMP code number.
IpProtocol string The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a VPC, this can also be an IP protocol number. For more information, see the IANA.org website.
SourceSecurityGroupName string The name of the source security group (cannot be specified alongside the CIDR IP range, the start of the port range, the IP protocol, and the end of the port range).
SourceSecurityGroupOwnerId string The account ID of the owner of the source security group.
ToPort integer The end of the port range for the TCP and UDP protocols, or an ICMP code number.

Responses

Status Description Schema
200 The HTTP 200 response (OK). RevokeSecurityGroupIngressResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

Snapshots

CopySnapshot

GET /CopySnapshot

Copies a snapshot to your account, from an account in the same Region.
To do so, the owner of the source snapshot must share it with your account. For more information about how to share a snapshot with another account, see ModifySnapshotAttribute.
The copy of the source snapshot is independent and belongs to you.

[IMPORTANT]
To copy a snapshot between accounts in different Regions, the owner of the source snapshot must export it to an OUTSCALE Object Storage (OOS) bucket using the CreateSnapshotExportTask method, and then you need to import it using the ImportSnapshot method. For more information, see CreateSnapshotExportTask and ImportSnapshot.

This AWS-compliant method corresponds to CreateSnapshot in the OUTSCALE API.

Code samples

osc-cli fcu CopySnapshot --profile "default" \
  --Description "string" \
  --DestinationRegion "string" \
  --DryRun False \
  --SourceRegion "string" \
  --SourceSnapshotId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CopySnapshot' \
  --data-urlencode 'Description=string' \
  --data-urlencode 'DestinationRegion=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'SourceRegion=string' \
  --data-urlencode 'SourceSnapshotId=string'

Available Parameters

Name Type Description
Description string A description for the new snapshot (if different from the source snapshot one).
DestinationRegion string The name of the destination Region, which must be the same as the source Region.
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
SourceRegion (required) string The name of the source Region, which must be the same as the Region of your account.
SourceSnapshotId (required) string The ID of the snapshot you want to copy.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CopySnapshotResponse

Example responses

200 Response

{
  "requestId": "string",
  "snapshotId": "string"
}

CreateSnapshot

GET /CreateSnapshot

Creates a snapshot of a BSU volume.
Snapshots are point-in-time images of a volume you can use to back up your data or to create replicas of this volume at the time the snapshot was created.

[NOTE]
In case of excessive use of the snapshot creation feature on the same volume over a short period of time, 3DS OUTSCALE reserves the right to temporarily block the feature.

For more information, see About Snapshots.
This AWS-compliant method corresponds to CreateSnapshot in the OUTSCALE API.

Code samples

osc-cli fcu CreateSnapshot --profile "default" \
  --Description "string" \
  --DryRun False \
  --VolumeId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateSnapshot' \
  --data-urlencode 'Description=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'VolumeId=string'

Available Parameters

Name Type Description
Description string A description for the new snapshot.
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
VolumeId (required) string The ID of the BSU volume you want to create a snapshot of.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateSnapshotResponse

Example responses

200 Response

{
  "description": "string",
  "encrypted": true,
  "ownerId": "string",
  "progress": "string",
  "requestId": "string",
  "snapshotId": "string",
  "startTime": "string",
  "status": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "volumeId": "string",
  "volumeSize": 0
}

CreateSnapshotExportTask

GET /CreateSnapshotExportTask

Exports a snapshot to an OUTSCALE Object Storage (OOS) bucket.
This action enables you to create a backup of your snapshot or to copy it to another account. You or other accounts you send a pre-signed URL to can then download this snapshot from the bucket using the ImportSnapshot method. For more information, see ImportSnapshot.
This procedure enables you to copy a snapshot between accounts within the same Region or in different Regions. To copy a snapshot within the same Region, you can also use the CopySnapshot direct method. For more information, see CopySnapshot.
The copy of the source snapshot is independent and belongs to you.

For more information, see About Snapshots.
This AWS-compliant method corresponds to CreateSnapshotExportTask in the OUTSCALE API.

Code samples

osc-cli fcu CreateSnapshotExportTask --profile "default" \
  --ExportToOsu '{
      "DiskImageFormat": "string",
      "OsuBucket": "string",
      "OsuPrefix": "string",
      "aksk": {
        "AccessKey": "string",
        "SecretKey": "string",
      },
    }' \
  --SnapshotId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateSnapshotExportTask' \
  --data-urlencode 'ExportToOsu.DiskImageFormat=string' \
  --data-urlencode 'ExportToOsu.OsuBucket=string' \
  --data-urlencode 'ExportToOsu.OsuPrefix=string' \
  --data-urlencode 'ExportToOsu.aksk.AccessKey=string' \
  --data-urlencode 'ExportToOsu.aksk.SecretKey=string' \
  --data-urlencode 'SnapshotId=string'

Available Parameters

Name Type Description
ExportToOsu (required) ExportToOsu_1 Information about the snapshot export task.
» DiskImageFormat (required) string The format of the export disk (qcow2 | raw).
» OsuBucket (required) string The name of the OOS bucket where you want to export the snapshot.
» OsuPrefix string The prefix for the key of the OOS object corresponding to the snapshot.
» aksk aksk The access key and secret key of the OOS account used to access the bucket.
»» AccessKey string The access key of the OOS account that enables you to access the bucket.
»» SecretKey string The secret key of the OOS account that enables you to access the bucket.
SnapshotId (required) string The ID of the snapshot to export.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateSnapshotExportTaskResponse

Example responses

200 Response

{
  "requestId": "string",
  "snapshotExportTask": {
    "completion": 0,
    "exportToOsu": {
      "diskImageFormat": "string",
      "osuBucket": "string",
      "osuKey": "string",
      "osuPrefix": "string",
      "aksk": {
        "AccessKey": "string",
        "SecretKey": "string"
      }
    },
    "snapshotExport": {
      "snapshotId": "string"
    },
    "snapshotExportTaskId": "string",
    "state": "string",
    "statusMessage": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ]
  }
}

DeleteSnapshot

GET /DeleteSnapshot

Deletes a specified snapshot.
You cannot delete a snapshot that is currently used by an OUTSCALE machine image (OMI). To do so, you first need to delete the corresponding OMI. For more information, see the DeregisterImage method.

This AWS-compliant method corresponds to DeleteSnapshot in the OUTSCALE API.

Code samples

osc-cli fcu DeleteSnapshot --profile "default" \
  --SnapshotId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteSnapshot' \
  --data-urlencode 'SnapshotId=string'

Available Parameters

Name Type Description
SnapshotId (required) string The ID of the snapshot you want to delete.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteSnapshotResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeSnapshotAttribute

GET /DescribeSnapshotAttribute

Describes the permissions to create a volume from a specified snapshot.

This AWS-compliant method corresponds to ReadSnapshots in the OUTSCALE API.

Code samples

osc-cli fcu DescribeSnapshotAttribute --profile "default" \
  --Attribute "string" \
  --SnapshotId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeSnapshotAttribute' \
  --data-urlencode 'Attribute=string' \
  --data-urlencode 'SnapshotId=string'

Available Parameters

Name Type Description
Attribute (required) string The snapshot attribute (always createVolumePermission).
SnapshotId (required) string The ID of the snapshot.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeSnapshotAttributeResponse

Example responses

200 Response

{
  "createVolumePermission": [
    {
      "Group": "string",
      "UserId": "string"
    }
  ],
  "requestId": "string",
  "snapshotId": "string"
}

DescribeSnapshotExportTasks

GET /DescribeSnapshotExportTasks

Describes one or more snapshot export tasks.

This AWS-compliant method corresponds to ReadSnapshotExportTasks in the OUTSCALE API.

Code samples

osc-cli fcu DescribeSnapshotExportTasks --profile "default" \
  --SnapshotExportTaskId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeSnapshotExportTasks' \
  --data-urlencode 'SnapshotExportTaskId.1=string'

Available Parameters

Name Type Description
SnapshotExportTaskId [string] One or more snapshot export tasks IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeSnapshotExportTasksResponse

Example responses

200 Response

{
  "requestId": "string",
  "snapshotExportTaskSet": [
    {
      "completion": 0,
      "exportToOsu": {
        "diskImageFormat": "string",
        "osuBucket": "string",
        "osuKey": "string",
        "osuPrefix": "string",
        "aksk": {
          "AccessKey": "string",
          "SecretKey": "string"
        }
      },
      "snapshotExport": {
        "snapshotId": "string"
      },
      "snapshotExportTaskId": "string",
      "state": "string",
      "statusMessage": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ]
    }
  ]
}

DescribeSnapshots

GET /DescribeSnapshots

Describes one or more snapshots that are available to you.
You can filter the described snapshots using the SnapshotId.N, the Owner.N and the RestorableBy.N parameters.
You can also use the Filter.N parameter to filter the snapshots on the following properties:

  • description: The description of the snapshot.
  • owner-alias: The account alias of the owner of the snapshot.
  • owner-id: The account ID of the owner of the snapshot.
  • progress: The progress of the snapshot, as a percentage.
  • snapshot-id: The ID of the snapshot.
  • start-time: The time at which the snapshot was initiated.
  • status: The state of the snapshot (in-queue | pending | completed | error | deleting).
  • volume-id: The ID of the volume used to create the snapshot.
  • volume-size: The size of the volume used to create the snapshot, in gibibytes (GiB).
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.

    This AWS-compliant method corresponds to ReadSnapshots in the OUTSCALE API.

Code samples

osc-cli fcu DescribeSnapshots --profile "default" \
  --DryRun False \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --MaxResults 0 \
  --NextToken "string" \
  --Owner '["string"]' \
  --RestorableBy '["string"]' \
  --SnapshotId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeSnapshots' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'MaxResults=0' \
  --data-urlencode 'NextToken=string' \
  --data-urlencode 'Owner.1=string' \
  --data-urlencode 'RestorableBy.1=string' \
  --data-urlencode 'SnapshotId.1=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeSnapshots \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
MaxResults integer The maximum number of results that can be returned in a single page. You can use NextToken to request the next results pages. This value is between 5 and 1000. If you provide a value larger than 1000, only 1000 results are returned.
NextToken string The token to request the next results page.
Owner [string] One or more owners of the snapshots.
RestorableBy [string] One or more accounts IDs that have the permissions to create volumes from the snapshot.
SnapshotId [string] One or more snapshot IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeSnapshotsResponse

Example responses

200 Response

{
  "nextToken": "string",
  "requestId": "string",
  "snapshotSet": [
    {
      "description": "string",
      "encrypted": true,
      "ownerAlias": "string",
      "ownerId": "string",
      "progress": "string",
      "snapshotId": "string",
      "startTime": "string",
      "status": "string",
      "statusMessage": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "volumeId": "string",
      "volumeSize": 0
    }
  ]
}

ImportSnapshot

GET /ImportSnapshot

Imports a snapshot from an S3-compatible bucket to create a copy of this snapshot in your account.
This method enables you to copy a snapshot from another account that is either within the same Region as the bucket, or in a different one. To copy a snapshot within the same Region, you can also use the CopySnapshot direct method. For more information, see CopySnapshot.
The copy of the source snapshot is independent and belongs to you.
You can import a snapshot using a pre-signed URL. You do not need any permission for this snapshot, or the bucket in which it is contained. The pre-signed URL is valid for seven days (you can generate a new one if needed). For more information about how to export a snapshot to an OUTSCALE Object Storage (OOS) bucket, see CreateSnapshotExportTask.

This AWS-compliant method corresponds to CreateSnapshot in the OUTSCALE API.

Code samples

osc-cli fcu ImportSnapshot --profile "default" \
  --description "string" \
  --snapshotLocation "string" \
  --snapshotSize "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ImportSnapshot' \
  --data-urlencode 'description=string' \
  --data-urlencode 'snapshotLocation=string' \
  --data-urlencode 'snapshotSize=string'

Available Parameters

Name Type Description
description string The description for the snapshot you want to create in your account.
snapshotLocation (required) string The pre-signed URL of the snapshot you want to import from the bucket.
snapshotSize (required) string The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.

Responses

Status Description Schema
200 The HTTP 200 response (OK). ImportSnapshotResponse

Example responses

200 Response

{
  "description": "string",
  "encrypted": true,
  "ownerAlias": "string",
  "ownerId": "string",
  "progress": "string",
  "requestId": "string",
  "snapshotId": "string",
  "startTime": "string",
  "status": "string",
  "volumeId": "string",
  "volumeSize": 0
}

ModifySnapshotAttribute

GET /ModifySnapshotAttribute

Modifies the permissions for a specified snapshot.
You can add or remove permissions for specified account IDs or groups. You can share a snapshot with a user that is in the same Region. The user can create a copy of the snapshot you shared, obtaining all the rights for the copy of the snapshot. For more information, see CopySnapshot.

This AWS-compliant method corresponds to UpdateSnapshot in the OUTSCALE API.

Code samples

osc-cli fcu ModifySnapshotAttribute --profile "default" \
  --CreateVolumePermission '{
      "Add": [
        {"Group": "string", "UserId": "string"},
      ],
      "Remove": [
        {"Group": "string", "UserId": "string"},
      ],
    }' \
  --DryRun False \
  --SnapshotId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ModifySnapshotAttribute' \
  --data-urlencode 'CreateVolumePermission.Add.1.Group=string' \
  --data-urlencode 'CreateVolumePermission.Add.1.UserId=string' \
  --data-urlencode 'CreateVolumePermission.Remove.1.Group=string' \
  --data-urlencode 'CreateVolumePermission.Remove.1.UserId=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'SnapshotId=string'

Available Parameters

Name Type Description
CreateVolumePermission CreateVolumePermission_0 Enables you to modify the permissions to create a volume for account IDs or groups. If you specify both Add and Remove attributes in the request, only Add is taken into account.
» Add [Add] The account ID you want to add to the list of permissions for the volume.
»» Group string The name of the group (all if public).
»» UserId string The ID of the account.
» Remove [Remove] The account ID you want to remove from the list of permissions for the volume.
»» Group string The name of the group (all if public).
»» UserId string The ID of the account.
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
SnapshotId (required) string The ID of the snapshot.

Responses

Status Description Schema
200 The HTTP 200 response (OK). ModifySnapshotAttributeResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

Subnets

CreateSubnet

GET /CreateSubnet

Creates a subnet in an existing VPC.
To create a subnet in a VPC, you have to provide the ID of the VPC and the CIDR block for the subnet (its network range). Once the subnet is created, you cannot modify its CIDR block.

For more information, see About Nets.
This AWS-compliant method corresponds to CreateSubnet in the OUTSCALE API.

Code samples

osc-cli fcu CreateSubnet --profile "default" \
  --AvailabilityZone "string" \
  --CidrBlock "string" \
  --VpcId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateSubnet' \
  --data-urlencode 'AvailabilityZone=string' \
  --data-urlencode 'CidrBlock=string' \
  --data-urlencode 'VpcId=string'

Available Parameters

Name Type Description
AvailabilityZone string The name of the Availability Zone in which you want to create the subnet.
CidrBlock (required) string The CIDR block for the subnet (for example, 10.0.0.0/24).
The CIDR block of the subnet can be either the same as the VPC one if you create only a single subnet in this VPC, or a subset of the VPC one. In case of several subnets in a VPC, their CIDR blocks must no overlap. The smallest subnet you can create uses a /29 netmask (eight IPs). For more information, see About Nets.
VpcId (required) string The ID of the VPC.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateSubnetResponse

Example responses

200 Response

{
  "requestId": "string",
  "subnet": {
    "availabilityZone": "string",
    "availableIpAddressCount": 0,
    "cidrBlock": "string",
    "mapPublicIpOnLaunch": true,
    "state": "string",
    "subnetId": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcId": "string"
  }
}

DeleteSubnet

GET /DeleteSubnet

Deletes a specified subnet.
You must terminate all the running instances in the subnet before deleting it.

This AWS-compliant method corresponds to DeleteSubnet in the OUTSCALE API.

Code samples

osc-cli fcu DeleteSubnet --profile "default" \
  --SubnetId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteSubnet' \
  --data-urlencode 'SubnetId=string'

Available Parameters

Name Type Description
SubnetId (required) string The ID of the subnet you want to delete.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteSubnetResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeSubnets

GET /DescribeSubnets

Describes one or more of your subnets.
If you do not specify any subnet ID, this action describes all of your subnets.
You can use the Filter.N parameter to filter the subnets on the following properties:

  • subnet-id: The ID of the subnet.
  • vpc-id: The ID of the VPC in which the subnet is.
  • state: The state of the subnet (pending | available | deleted).
  • cidr: The exact CIDR block of the subnet (similar to cidr-block).
  • cidr-block: The exact CIDR block of the subnet (similar to cidr).
  • available-ip-address-count: The number of available IPs in the subnet.
  • availability-zone: The Availability Zone in which the subnets are located.

    This AWS-compliant method corresponds to ReadSubnets in the OUTSCALE API.

Code samples

osc-cli fcu DescribeSubnets --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --SubnetId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeSubnets' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'SubnetId.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
» Name string The name of the filter.
» Value [string] One or more filter values.
SubnetId [string] One or more subnet IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeSubnetsResponse

Example responses

200 Response

{
  "requestId": "string",
  "subnetSet": [
    {
      "availabilityZone": "string",
      "availableIpAddressCount": 0,
      "cidrBlock": "string",
      "mapPublicIpOnLaunch": true,
      "state": "string",
      "subnetId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ]
}

ModifySubnetAttribute

GET /ModifySubnetAttribute

Modifies the specified attribute of a subnet.

This AWS-compliant method corresponds to UpdateSubnet in the OUTSCALE API.

Code samples

osc-cli fcu ModifySubnetAttribute --profile "default" \
  --MapPublicIpOnLaunch '{
      "Value": True,
    }' \
  --SubnetId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ModifySubnetAttribute' \
  --data-urlencode 'MapPublicIpOnLaunch.Value=true' \
  --data-urlencode 'SubnetId=string'

Available Parameters

Name Type Description
MapPublicIpOnLaunch MapPublicIpOnLaunch If set to true, an External IP (EIP) is automatically assigned to the instance launched with this subnet. The EIP remains assigned to the instance, even when it is stopped, and is released when the instance is terminated.
» Value boolean A boolean value (true or false) that can be used when the resource is of boolean type.
SubnetId (required) string The ID of the subnet.

Responses

Status Description Schema
200 The HTTP 200 response (OK). ModifySubnetAttributeResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

Tags

CreateTags

GET /CreateTags

Adds one or more tags to the specified resources.
If a tag with the same key already exists for the resource, the tag value is replaced.
You can tag the following resources using their IDs:

  • Instances (i-xxxxxxxx)
  • OMIs (ami-xxxxxxxx)
  • Volumes (vol-xxxxxxxx)
  • Snapshots (snap-xxxxxxxx)
  • EIPs (eipalloc-xxxxxxxx)
  • Security groups (sg-xxxxxxxx)
  • Route tables (rtb-xxxxxxxx)
  • Network interfaces (eni-xxxxxxxx)
  • VPCs (vpc-xxxxxxxx)
  • Subnets (subnet-xxxxxxxx)
  • VPC peering connections (vpcx-xxxxxxxx)
  • VPC endpoints (vpce-xxxxxxxx)
  • NAT gateways (nat-xxxxxxxx)
  • Internet gateways (igw-xxxxxxxx)
  • Customer gateways (cgw-xxxxxxxx)
  • Virtual private gateways (vgw-xxxxxxxx)
  • VPN connections (vpn-xxxxxxxx)
  • DHCP options (dopt-xxxxxxxx)
  • OMI export tasks (image-export-xxxxxxxx)
  • Snapshot export tasks (snap-export-xxxxxxxx)

For more information, see About Tags.
This AWS-compliant method corresponds to CreateTags in the OUTSCALE API.

Code samples

osc-cli fcu CreateTags --profile "default" \
  --ResourceId '["string"]' \
  --Tag '[
      {
        "Key": "string",
        "Value": "string",
      },
    ]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateTags' \
  --data-urlencode 'ResourceId.1=string' \
  --data-urlencode 'Tag.1.Key=string' \
  --data-urlencode 'Tag.1.Value=string'

Available Parameters

Name Type Description
ResourceId (required) [string] One or more resource IDs.
Tag (required) [Tag] One or more tags you want to add to the specified resources. Example for an instance:
osc-cli fcu CreateTags \
  --ResourceId i-xxxxxxxx \
  --Tag.1.Key "AAAA" --Tag.1.Value "BBBB"\
  --Tag.2.Key "CCCC" --Tag.2.Value "DDDD"
» Key string The key of the tag, with a minimum of 1 character.
» Value string The value of the tag, between 0 and 255 characters.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateTagsResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DeleteTags

GET /DeleteTags

Deletes one or more tags from the specified resources.

This AWS-compliant method corresponds to DeleteTags in the OUTSCALE API.

Code samples

osc-cli fcu DeleteTags --profile "default" \
  --ResourceId '["string"]' \
  --Tag '[
      {
        "Key": "string",
        "Value": "string",
      },
    ]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteTags' \
  --data-urlencode 'ResourceId.1=string' \
  --data-urlencode 'Tag.1.Key=string' \
  --data-urlencode 'Tag.1.Value=string'

Available Parameters

Name Type Description
ResourceId (required) [string] One or more resource IDs.
Tag [Tag] One or more tags you want to delete from the specified resources. (if you set a tag value, only the tags matching exactly this value are deleted)
» Key string The key of the tag, with a minimum of 1 character.
» Value string The value of the tag, between 0 and 255 characters.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteTagsResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeTags

GET /DescribeTags

Describes one or more tags for your resources.
You can use the Filter.N parameter to filter the tags on the following properties:

  • key: The key of the tag.
  • value: The value of the tag.
  • resource-id: The ID of the resource with which the tag is associated.
  • resource-type: The resource type (instance | image | volume | snapshot | public-ip | security-group | route-table | network-interface | vpc | subnet | network-link | vpc-endpoint | nat-gateway | internet-gateway | customer-gateway | vpn-gateway | vpn-connection | dhcp-options | task).

    This AWS-compliant method corresponds to ReadTags in the OUTSCALE API.

Code samples

osc-cli fcu DescribeTags --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --MaxResults 0 \
  --NextToken "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeTags' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'MaxResults=0' \
  --data-urlencode 'NextToken=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeTags \
  --Filter.1.Name "resource-id" \
  --Filter.1.Value.1 "i-12345678"
» Name string The name of the filter.
» Value [string] One or more filter values.
MaxResults integer The maximum number of results that can be returned in a single page. You can use the NextToken attribute to request the next results pages. This value is between 5 and 1000. If you provide a value larger than 1000, only 1000 results are returned.
NextToken string The token to request the next results page.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeTagsResponse

Example responses

200 Response

{
  "nextToken": "string",
  "requestId": "string",
  "tagSet": [
    {
      "key": "string",
      "resourceId": "string",
      "resourceType": "string",
      "value": "string"
    }
  ]
}

Tasks

CancelExportTask

GET /CancelExportTask

Cancels an export task.
If the export task is not running, the command fails and an error is returned.

This AWS-compliant method corresponds to DeleteExportTask in the OUTSCALE API.

Code samples

osc-cli fcu CancelExportTask --profile "default" \
  --ExportTaskId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CancelExportTask' \
  --data-urlencode 'ExportTaskId=string'

Available Parameters

Name Type Description
ExportTaskId (required) string The ID of the export task to cancel.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CancelExportTaskResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

VPC

CreateVpc

GET /CreateVpc

Creates a Virtual Private Cloud (VPC) with a specified CIDR block.
The CIDR block (network range) of your VPC must be between a /28 netmask (16 IPs) and a /16 netmask (65536 IPs).

For more information, see About Nets.
This AWS-compliant method corresponds to CreateNet in the OUTSCALE API.

Code samples

osc-cli fcu CreateVpc --profile "default" \
  --CidrBlock "string" \
  --InstanceTenancy "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateVpc' \
  --data-urlencode 'CidrBlock=string' \
  --data-urlencode 'InstanceTenancy=string'

Available Parameters

Name Type Description
CidrBlock (required) string The CIDR block for the VPC (for example, 10.0.0.0/16).
InstanceTenancy string The tenancy options of the instances (default if an instance created in a VPC can be lauched with any tenancy, dedicated if it can be launched with dedicated tenancy instances running on single-tenant hardware).

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateVpcResponse

Example responses

200 Response

{
  "requestId": "string",
  "vpc": {
    "cidrBlock": "string",
    "dhcpOptionsId": "string",
    "instanceTenancy": "string",
    "isDefault": true,
    "state": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcId": "string"
  }
}

DeleteVpc

GET /DeleteVpc

Deletes a specified VPC.
Before deleting the VPC, you need to delete or detach all the resources associated with the VPC:

  • Instances
  • VPC peering connections
  • Custom route tables
  • External IPs (EIPs) allocated to resources in the VPC
  • Flexible network interface created in the subnets
  • Gateways (Virtual private gateways, Internet gateways and NAT gateways)
  • Load balancers
  • Security groups
  • VPC subnets

    This AWS-compliant method corresponds to DeleteNet in the OUTSCALE API.

Code samples

osc-cli fcu DeleteVpc --profile "default" \
  --VpcId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteVpc' \
  --data-urlencode 'VpcId=string'

Available Parameters

Name Type Description
VpcId (required) string The ID of the VPC you want to delete.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteVpcResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeVpcAttribute

GET /DescribeVpcAttribute

Describes a specified attribute of a VPC.

You can specify only one attribute at a time. You can get information about the two following attributes:

  • EnableDnsSupport: Whether DNS resolution is supported for the VPC.
  • EnableDnsHostnames: Whether instances launched in the VPC get DNS hostnames.

The description of these attributes always returns true, as the VPCs do not support their deactivation.

This AWS-compliant method corresponds to ReadNets in the OUTSCALE API.

Code samples

osc-cli fcu DescribeVpcAttribute --profile "default" \
  --Attribute "string" \
  --VpcId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeVpcAttribute' \
  --data-urlencode 'Attribute=string' \
  --data-urlencode 'VpcId=string'

Available Parameters

Name Type Description
Attribute (required) string The attribute name (enableDnsSupport or enableDnsHostnames).
VpcId (required) string The ID of the VPC.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeVpcAttributeResponse

Example responses

200 Response

{
  "enableDnsHostnames": {
    "value": true
  },
  "enableDnsSupport": {
    "value": true
  },
  "requestId": "string",
  "vpcId": "string"
}

DescribeVpcs

GET /DescribeVpcs

Describes one or more Virtual Private Clouds (VPCs).
You can use the Filter.N parameter to filter the VPCs on the following properties:

  • vpc-id: The ID of the VPC.
  • state: The state of the VPC (pending | available | deleting).
  • cidr: The exact CIDR block of the VPC.
  • cidr-block: The exact CIDR block of the VPC (similar to cidr and cidrBlock).
  • cidrBlock: The exact CIDR block of the VPC (similar to cidr and cidr-block).
  • dhcp-options-id: The ID of a set of DHCP options.
  • is-default: Indicates whether the VPC is the default one.
  • isDefault: Alias to is-default filter.
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.

    This AWS-compliant method corresponds to ReadNets in the OUTSCALE API.

Code samples

osc-cli fcu DescribeVpcs --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --VpcId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeVpcs' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'VpcId.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeVpcs \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
VpcId [string] One or more VPC IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeVpcsResponse

Example responses

200 Response

{
  "requestId": "string",
  "vpcSet": [
    {
      "cidrBlock": "string",
      "dhcpOptionsId": "string",
      "isDefault": true,
      "instanceTenancy": "string",
      "state": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ]
}

VPC Endpoints

CreateVpcEndpoint

GET /CreateVpcEndpoint

Creates a Virtual Private Cloud (VPC) endpoint to access an OUTSCALE service from this VPC without using the Internet and External IPs (EIPs).
You specify the service using its prefix list name. For more information, see DescribePrefixLists.
To control the routing of traffic between the VPC and the specified service, you can specify one or more route tables. Instances placed in subnets associated with the specified route table thus use the VPC endpoint to access the service. When you specify a route table, a route is automatically added to it with the destination set to the prefix list ID of the service, and the target set to the ID of the endpoint.

For more information, see About Net Access Points.
This AWS-compliant method corresponds to CreateNetAccessPoint in the OUTSCALE API.

Code samples

osc-cli fcu CreateVpcEndpoint --profile "default" \
  --RouteTableId '["string"]' \
  --ServiceName "string" \
  --VpcId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateVpcEndpoint' \
  --data-urlencode 'RouteTableId.1=string' \
  --data-urlencode 'ServiceName=string' \
  --data-urlencode 'VpcId=string'

Available Parameters

Name Type Description
RouteTableId [string] One or more IDs of route tables to use for the connection.
ServiceName (required) string The prefix list name corresponding to the service (for example, com.outscale.eu-west-2.oos for OOS).
VpcId (required) string The ID of the VPC.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateVpcEndpointResponse

Example responses

200 Response

{
  "requestId": "string",
  "vpcEndpoint": {
    "creationTimestamp": "string",
    "routeTableIdSet": [
      "string"
    ],
    "serviceName": "string",
    "state": "string",
    "vpcEndpointId": "string",
    "vpcId": "string"
  }
}

DeleteVpcEndpoints

GET /DeleteVpcEndpoints

Deletes one or more Virtual Private Cloud (VPC) endpoint.
This action also deletes the corresponding routes added to the route tables you specified for the VPC endpoint.

This AWS-compliant method corresponds to DeleteNetAccessPoint in the OUTSCALE API.

Code samples

osc-cli fcu DeleteVpcEndpoints --profile "default" \
  --VpcEndpointId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteVpcEndpoints' \
  --data-urlencode 'VpcEndpointId.1=string'

Available Parameters

Name Type Description
VpcEndpointId (required) [string] One or more IDs of VPC endpoints you want to delete.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteVpcEndpointsResponse

Example responses

200 Response

{
  "requestId": "string",
  "unsuccessful": [
    {
      "error": {
        "code": "string",
        "message": "string"
      },
      "resourceId": "string"
    }
  ]
}

DescribeVpcEndpointServices

GET /DescribeVpcEndpointServices

Describes OUTSCALE services available to create VPC endpoints.
For more information, see CreateVpcEndpoint.

This AWS-compliant method corresponds to ReadNetAccessPointServices in the OUTSCALE API.

Code samples

osc-cli fcu DescribeVpcEndpointServices --profile "default" \
  --DryRun False \
  --MaxResults 0 \
  --NextToken "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeVpcEndpointServices' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'MaxResults=0' \
  --data-urlencode 'NextToken=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
MaxResults integer The maximum number of results that can be returned in a single page. You can use the NextToken attribute to request the next results pages. This value is between 5 and 1000. If you provide a value larger than 1000, only 1000 results are returned.
NextToken string The token to request the next results page.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeVpcEndpointServicesResponse

Example responses

200 Response

{
  "nextToken": "string",
  "requestId": "string",
  "serviceNameSet": [
    "string"
  ]
}

DescribeVpcEndpoints

GET /DescribeVpcEndpoints

Describes one or more Virtual Private Cloud (VPC) endpoints.
You can use the Filter.N parameter to filter the VPCs on the following properties:

  • service-name: The name of the prefix list corresponding to the service. For more information, see DescribePrefixLists.
  • vpc-id: The ID of the VPC.
  • vpc-endpoint-id: The ID of the VPC endpoint.
  • vpc-endpoint-state: The state of the VPC endpoint (pending | available | deleting | deleted).

    This AWS-compliant method corresponds to ReadNetAccessPoints in the OUTSCALE API.

Code samples

osc-cli fcu DescribeVpcEndpoints --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --VpcEndpointId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeVpcEndpoints' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'VpcEndpointId.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeVpcEndpoints \
  --Filter.1.Name "vpc-endpoint-id" \
  --Filter.1.Value.1 "vpce-12345678"
» Name string The name of the filter.
» Value [string] One or more filter values.
VpcEndpointId [string] One or more IDs of VPC endpoints.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeVpcEndpointsResponse

Example responses

200 Response

{
  "requestId": "string",
  "vpcEndpointSet": [
    {
      "creationTimestamp": "string",
      "routeTableIdSet": [
        "string"
      ],
      "serviceName": "string",
      "state": "string",
      "vpcEndpointId": "string",
      "vpcId": "string"
    }
  ]
}

ModifyVpcEndpoint

GET /ModifyVpcEndpoint

Modifies the attributes of a Virtual Private Cloud (VPC) endpoint.
This action enables you to add or remove route tables associated with the specified VPC endpoint.

This AWS-compliant method corresponds to UpdateNetAccessPoint in the OUTSCALE API.

Code samples

osc-cli fcu ModifyVpcEndpoint --profile "default" \
  --AddRouteTableId '["string"]' \
  --RemoveRouteTableId '["string"]' \
  --VpcEndpointId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=ModifyVpcEndpoint' \
  --data-urlencode 'AddRouteTableId.1=string' \
  --data-urlencode 'RemoveRouteTableId.1=string' \
  --data-urlencode 'VpcEndpointId=string'

Available Parameters

Name Type Description
AddRouteTableId [string] One or more IDs of route tables to associate with the specified VPC endpoint.
RemoveRouteTableId [string] One or more IDs of route tables to dissasociate from the specified VPC endpoint.
VpcEndpointId (required) string The ID of the VPC endpoint.

Responses

Status Description Schema
200 The HTTP 200 response (OK). ModifyVpcEndpointResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

VPN Connections

CreateVpnConnection

GET /CreateVpnConnection

Creates a VPN connection between a specified virtual private gateway and a specified customer gateway.
You can create only one VPN connection between a virtual private gateway and a customer gateway.

For more information, see About VPN Connections.
This AWS-compliant method corresponds to CreateVpnConnection in the OUTSCALE API.

Code samples

osc-cli fcu CreateVpnConnection --profile "default" \
  --CustomerGatewayId "string" \
  --DryRun False \
  --Options '{
      "StaticRoutesOnly": True,
    }' \
  --Type "string" \
  --VpnGatewayId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateVpnConnection' \
  --data-urlencode 'CustomerGatewayId=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'Options.StaticRoutesOnly=true' \
  --data-urlencode 'Type=string' \
  --data-urlencode 'VpnGatewayId=string'

Available Parameters

Name Type Description
CustomerGatewayId (required) string The ID of the customer gateway.
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
Options Options_0 Options for a VPN connection.
» StaticRoutesOnly boolean By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.
Type (required) string The type of VPN connection (only ipsec.1 is supported).
VpnGatewayId (required) string The ID of the virtual private gateway.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateVpnConnectionResponse

Example responses

200 Response

{
  "requestId": "string",
  "vpnConnection": {
    "customerGatewayConfiguration": "string",
    "customerGatewayId": "string",
    "options": {
      "staticRoutesOnly": true
    },
    "routes": [
      {
        "destinationCidrBlock": "string",
        "source": "string",
        "state": "string"
      }
    ],
    "state": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "type": "string",
    "vgwTelemetry": [
      {
        "acceptedRouteCount": 0,
        "lastStatusChange": "string",
        "outsideIpAddress": "string",
        "status": "string",
        "statusMessage": "string"
      }
    ],
    "vpnConnectionId": "string",
    "vpnGatewayId": "string"
  }
}

CreateVpnConnectionRoute

GET /CreateVpnConnectionRoute

Creates a static route to a VPN connection.
This enables you to select the network flows sent by the virtual private gateway to the target VPN connection.

This AWS-compliant method corresponds to CreateVpnConnectionRoute in the OUTSCALE API.

Code samples

osc-cli fcu CreateVpnConnectionRoute --profile "default" \
  --DestinationCidrBlock "string" \
  --DryRun False \
  --VpnConnectionId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateVpnConnectionRoute' \
  --data-urlencode 'DestinationCidrBlock=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'VpnConnectionId=string'

Available Parameters

Name Type Description
DestinationCidrBlock (required) string The network prefix of the route, in CIDR notation (for example, 10.12.0.0/16).
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
VpnConnectionId (required) string The ID of target VPN connection of the static route.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateVpnConnectionRouteResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DeleteVpnConnection

GET /DeleteVpnConnection

Deletes a specified VPN connection.
If you want to delete a VPC and all its dependencies, we recommand to detach the virtual private gateway from the VPC and delete the VPC before deleting the VPN connection. This enables you to delete the VPC without waiting for the VPN connection to be deleted.

This AWS-compliant method corresponds to DeleteVpnConnection in the OUTSCALE API.

Code samples

osc-cli fcu DeleteVpnConnection --profile "default" \
  --DryRun False \
  --VpnConnectionId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteVpnConnection' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'VpnConnectionId=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
VpnConnectionId (required) string The ID of the VPN connection you want to delete.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteVpnConnectionResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DeleteVpnConnectionRoute

GET /DeleteVpnConnectionRoute

Deletes a static route to a VPN connection previously created using the CreateVpnConnectionRoute method.

This AWS-compliant method corresponds to DeleteVpnConnectionRoute in the OUTSCALE API.

Code samples

osc-cli fcu DeleteVpnConnectionRoute --profile "default" \
  --DestinationCidrBlock "string" \
  --DryRun False \
  --VpnConnectionId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteVpnConnectionRoute' \
  --data-urlencode 'DestinationCidrBlock=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'VpnConnectionId=string'

Available Parameters

Name Type Description
DestinationCidrBlock (required) string The network prefix of the route to delete, in CIDR notation (for example, 10.12.0.0/16).
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
VpnConnectionId (required) string The ID of the target VPN connection of the static route to delete.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteVpnConnectionRouteResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeVpnConnections

GET /DescribeVpnConnections

Describes one or more VPN connections.
You can use the Filter.N parameter to filter the VPN connections on the following properties:

  • bgp-asn: The Border Gateway Protocol (BGP) Autonomous System Number (ASN) of the connection.
  • customer-gateway-configuration: The example XML configuration for the customer gateway.
  • customer-gateway-id: The ID of the customer gateway.
  • option.static-routes-only: Whether the connection has static routes only.
  • route.destination-cidr-block: The destination CIDR block.
  • state: The state of the connection (pending | available | deleting | deleted).
  • type: The type of connection (only ipsec.1 is supported).
  • vpn-gateway-id: The ID of the virtual private gateway.
  • vpn-connection-id: The ID of the VPN connection.
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.

    This AWS-compliant method corresponds to ReadVpnConnections in the OUTSCALE API.

Code samples

osc-cli fcu DescribeVpnConnections --profile "default" \
  --DryRun False \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --VpnConnectionId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeVpnConnections' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'VpnConnectionId.1=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeVpnConnections \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
VpnConnectionId [string] One or more VPN connections IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeVpnConnectionsResponse

Example responses

200 Response

{
  "requestId": "string",
  "vpnConnectionSet": [
    {
      "customerGatewayConfiguration": "string",
      "customerGatewayId": "string",
      "options": {
        "staticRoutesOnly": true
      },
      "routes": [
        {
          "destinationCidrBlock": "string",
          "source": "string",
          "state": "string"
        }
      ],
      "state": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "type": "string",
      "vgwTelemetry": [
        {
          "acceptedRouteCount": 0,
          "lastStatusChange": "string",
          "outsideIpAddress": "string",
          "status": "string",
          "statusMessage": "string"
        }
      ],
      "vpnConnectionId": "string",
      "vpnGatewayId": "string"
    }
  ]
}

Virtual Private Gateways

AttachVpnGateway

GET /AttachVpnGateway

Attaches a virtual private gateway to a VPC.

[IMPORTANT]
This action can be done only if the virtual private gateway is in the available state.

This AWS-compliant method corresponds to LinkVirtualGateway in the OUTSCALE API.

Code samples

osc-cli fcu AttachVpnGateway --profile "default" \
  --DryRun False \
  --VpcId "string" \
  --VpnGatewayId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AttachVpnGateway' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'VpcId=string' \
  --data-urlencode 'VpnGatewayId=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
VpcId (required) string The ID of the VPC.
VpnGatewayId (required) string The ID of the virtual private gateway.

Responses

Status Description Schema
200 The HTTP 200 response (OK). AttachVpnGatewayResponse

Example responses

200 Response

{
  "attachment": {
    "state": "string",
    "vpcId": "string"
  },
  "requestId": "string"
}

CreateVpnGateway

GET /CreateVpnGateway

Creates a virtual private gateway.
A virtual private gateway is the endpoint on the VPC side of a VPN connection.

For more information, see About Virtual-Gateways.
This AWS-compliant method corresponds to CreateVirtualGateway in the OUTSCALE API.

Code samples

osc-cli fcu CreateVpnGateway --profile "default" \
  --DryRun False \
  --Type "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateVpnGateway' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'Type=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
Type (required) string The type of VPN connection supported by the virtual private gateway (only ipsec.1 is supported).

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateVpnGatewayResponse

Example responses

200 Response

{
  "requestId": "string",
  "vpnGateway": {
    "attachments": [
      {
        "state": "string",
        "vpcId": "string"
      }
    ],
    "state": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "type": "string",
    "vpnGatewayId": "string"
  }
}

DeleteVpnGateway

GET /DeleteVpnGateway

Deletes a specified virtual private gateway.
Before deleting a virtual private gateway, we recommand to detach it from the VPC and delete the VPN connection.

This AWS-compliant method corresponds to DeleteVirtualGateway in the OUTSCALE API.

Code samples

osc-cli fcu DeleteVpnGateway --profile "default" \
  --DryRun False \
  --VpnGatewayId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteVpnGateway' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'VpnGatewayId=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
VpnGatewayId (required) string The ID of the virtual private gateway.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteVpnGatewayResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeVpnGateways

GET /DescribeVpnGateways

Describes one or more virtual private gateways.
You can use the Filter.N parameter to filter the virtual private gateways on the following properties:

  • attachment.state: The current attachment state between the gateway and the VPC (attaching | attached | detaching | detached).
  • attachment.vpc-id: The ID of the VPC the virtual private gateway is attached to.
  • state: The state of the virtual private gateway (pending | available | deleting | deleted).
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.
  • type: The type of virtual private gateway (only ipsec.1 is supported).
  • vpn-gateway-id: The ID of the virtual private gateway.

    This AWS-compliant method corresponds to ReadVirtualGateways in the OUTSCALE API.

Code samples

osc-cli fcu DescribeVpnGateways --profile "default" \
  --DryRun False \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --VpnGatewayId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeVpnGateways' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'VpnGatewayId.1=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeVpnGateways \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
VpnGatewayId [string] One or more virtual private gateways.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeVpnGatewaysResponse

Example responses

200 Response

{
  "requestId": "string",
  "vpnGatewaySet": [
    {
      "attachments": [],
      "state": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "type": "string",
      "vpnGatewayId": "string"
    }
  ]
}

DetachVpnGateway

GET /DetachVpnGateway

Detaches a virtual private gateway from a VPC.
You must wait until the virtual private gateway is in the detached state before you can attach another VPC to it or delete the VPC it was previously attached to.

This AWS-compliant method corresponds to UnlinkVirtualGateway in the OUTSCALE API.

Code samples

osc-cli fcu DetachVpnGateway --profile "default" \
  --DryRun False \
  --VpcId "string" \
  --VpnGatewayId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DetachVpnGateway' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'VpcId=string' \
  --data-urlencode 'VpnGatewayId=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
VpcId (required) string The ID of the VPC.
VpnGatewayId (required) string The ID of the virtual private gateway.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DetachVpnGatewayResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DisableVgwRoutePropagation

GET /DisableVgwRoutePropagation

Disables a virtual private gateway from propagating routes to a specified route table of a VPC.

This AWS-compliant method corresponds to UpdateRoutePropagation in the OUTSCALE API.

Code samples

osc-cli fcu DisableVgwRoutePropagation --profile "default" \
  --GatewayId "string" \
  --RouteTableId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DisableVgwRoutePropagation' \
  --data-urlencode 'GatewayId=string' \
  --data-urlencode 'RouteTableId=string'

Available Parameters

Name Type Description
GatewayId (required) string The ID of the virtual private gateway.
RouteTableId (required) string The ID of the route table.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DisableVgwRoutePropagationResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

EnableVgwRoutePropagation

GET /EnableVgwRoutePropagation

Enables a virtual private gateway to propagate routes to a specified route table of a VPC.

This AWS-compliant method corresponds to UpdateRoutePropagation in the OUTSCALE API.

Code samples

osc-cli fcu EnableVgwRoutePropagation --profile "default" \
  --GatewayId "string" \
  --RouteTableId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=EnableVgwRoutePropagation' \
  --data-urlencode 'GatewayId=string' \
  --data-urlencode 'RouteTableId=string'

Available Parameters

Name Type Description
GatewayId (required) string The ID of the virtual private gateway.
RouteTableId (required) string The ID of the route table.

Responses

Status Description Schema
200 The HTTP 200 response (OK). EnableVgwRoutePropagationResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

Volumes

AttachVolume

GET /AttachVolume

Attaches a BSU volume to an instance.
The volume and the instance must be in the same Availability Zone. The instance can be running or stopped. The volume is attached to the specified instance device.

This AWS-compliant method corresponds to LinkVolume in the OUTSCALE API.

Code samples

osc-cli fcu AttachVolume --profile "default" \
  --Device "string" \
  --DryRun False \
  --InstanceId "string" \
  --VolumeId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=AttachVolume' \
  --data-urlencode 'Device=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'InstanceId=string' \
  --data-urlencode 'VolumeId=string'

Available Parameters

Name Type Description
Device (required) string The instance device name. For a root device, you must use /dev/sda1. For other volumes, you must use /dev/sdX, /dev/sdXX, /dev/xvdX, or /dev/xvdXX (where the first X is a letter between b and z, and the second X is a letter between a and z).
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
InstanceId (required) string The ID of the instance you want to attach the volume to.
VolumeId (required) string The ID of the volume you want to attach.

Responses

Status Description Schema
200 The HTTP 200 response (OK). AttachVolumeResponse

Example responses

200 Response

{
  "attachTime": "string",
  "deleteOnTermination": true,
  "device": "string",
  "instanceId": "string",
  "requestId": "string",
  "status": "string",
  "volumeId": "string"
}

CreateVolume

GET /CreateVolume

Creates a BSU volume in a specified Region.
BSU volumes can be attached to an instance in the same Availability Zone. You can create an empty volume or restore a volume from an existing snapshot.
You can create the following volume types: Enterprise (io1) for provisioned IOPS SSD volumes, Performance (gp2) for general purpose SSD volumes, or Magnetic (standard) volumes.

For more information, see About Volumes.
This AWS-compliant method corresponds to CreateVolume in the OUTSCALE API.

Code samples

osc-cli fcu CreateVolume --profile "default" \
  --AvailabilityZone "string" \
  --DryRun False \
  --Iops 0 \
  --Size 0 \
  --SnapshotId "string" \
  --VolumeType "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=CreateVolume' \
  --data-urlencode 'AvailabilityZone=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'Iops=0' \
  --data-urlencode 'Size=0' \
  --data-urlencode 'SnapshotId=string' \
  --data-urlencode 'VolumeType=string'

Available Parameters

Name Type Description
AvailabilityZone (required) string The Availability Zone in which you want to create the volume.
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
Iops integer The number of I/O operations per second (only for io1 volumes). The maximum number of IOPS allowed for io1 volumes is 13000 with a maximum performance ratio of 300 IOPS per gibibyte.
Size integer The size of the volume, in gibibytes (GiB). The maximum allowed size for a volume is 14901 GiB. This parameter is required if the volume is not created from a snapshot (SnapshotId unspecified).
SnapshotId string The ID of the snapshot from which you want to create the volume.
VolumeType string The type of volume you want to create (io1 | gp2 | standard). If not specified, a standard volume is created. For more information about volumes types, see Volume Types and IOPS.

Responses

Status Description Schema
200 The HTTP 200 response (OK). CreateVolumeResponse

Example responses

200 Response

{
  "availabilityZone": "string",
  "createTime": "string",
  "iops": 0,
  "requestId": "string",
  "size": 0,
  "snapshotId": "string",
  "status": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "volumeId": "string",
  "volumeType": "string"
}

DeleteVolume

GET /DeleteVolume

Deletes a specified BSU volume.
You can delete available volumes only, that is, volumes that are not attached to an instance.

This AWS-compliant method corresponds to DeleteVolume in the OUTSCALE API.

Code samples

osc-cli fcu DeleteVolume --profile "default" \
  --DryRun False \
  --VolumeId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DeleteVolume' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'VolumeId=string'

Available Parameters

Name Type Description
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
VolumeId (required) string The ID of the volume.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DeleteVolumeResponse

Example responses

200 Response

{
  "requestId": "string",
  "return": true
}

DescribeVolumes

GET /DescribeVolumes

Describes one or more specified Block Storage Unit (BSU) volume.
You can use the Filter.N parameter to filter the described volumes on the following properties:

  • attachment.attach-time: The time at which the attachment was initiated.
  • attachment.delete-on-termination: Whether the volume is deleted when terminating the instance.
  • attachment.device: The device to which the volume is plugged in.
  • attachment.instance-id: The ID of the instance the volume is attached to.
  • attachment.status: The attachment state (attaching | attached | detaching | detached).
  • availability-zone: The Availability Zone in which the volume was created.
  • create-time: The time at which the volume was created.
  • tag-key: The key of a tag associated with the resource.
  • tag-value: The value of a tag associated with the resource.
  • tag:XXXX: The value of a tag associated with the resource, where XXXX is the key of the tag.
  • volume-id: The ID of the volume.
  • volume-type: The type of the volume (standard | gp2 | io1).
  • snapshot-id: The snapshot from which the volume was created.
  • size: The size of the volume, in gibibytes (GiB).
  • status: The state of the volume (creating | available | in-use | deleting | error).

    This AWS-compliant method corresponds to ReadVolumes in the OUTSCALE API.

Code samples

osc-cli fcu DescribeVolumes --profile "default" \
  --Filter '[
      {
        "Name": "string",
        "Value": ["string"],
      },
    ]' \
  --MaxResults 0 \
  --NextToken "string" \
  --VolumeId '["string"]'

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DescribeVolumes' \
  --data-urlencode 'Filter.1.Name=string' \
  --data-urlencode 'Filter.1.Value.1=string' \
  --data-urlencode 'MaxResults=0' \
  --data-urlencode 'NextToken=string' \
  --data-urlencode 'VolumeId.1=string'

Available Parameters

Name Type Description
Filter [Filter] One or more filters.
Example:
osc-cli fcu DescribeVolumes \
  --Filter.1.Name "tag:KEYOFTHETAG" \
  --Filter.1.Value.1 "VALUEOFTHETAG"
» Name string The name of the filter.
» Value [string] One or more filter values.
MaxResults integer The maximum number of results that can be returned in a single page. You can use the NextToken attribute to request the next results pages. This value is between 5 and 1000. If you provide a value larger than 1000, only 1000 results are returned.
NextToken string The token to request the next results page.
VolumeId [string] One or more volume IDs.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DescribeVolumesResponse

Example responses

200 Response

{
  "nextToken": "string",
  "requestId": "string",
  "volumeSet": [
    {
      "attachmentSet": [
        {
          "attachTime": "string",
          "deleteOnTermination": true,
          "device": "string",
          "instanceId": "string",
          "status": "string",
          "volumeId": "string"
        }
      ],
      "availabilityZone": "string",
      "createTime": "string",
      "iops": 0,
      "size": 0,
      "snapshotId": "string",
      "status": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "volumeId": "string",
      "volumeType": "string"
    }
  ]
}

DetachVolume

GET /DetachVolume

Detaches a BSU volume from an instance.
To detach the root device of an instance, this instance must be stopped.

This AWS-compliant method corresponds to UnlinkVolume in the OUTSCALE API.

Code samples

osc-cli fcu DetachVolume --profile "default" \
  --Device "string" \
  --DryRun False \
  --Force True \
  --InstanceId "string" \
  --VolumeId "string"

# You need Curl version 7.75 or later to use the --aws-sigv4 option

curl https://fcu.$OSC_REGION.outscale.com \
  --user $OSC_ACCESS_KEY:$OSC_SECRET_KEY \
  --aws-sigv4 'aws:amz' \
  --data-urlencode 'Version=2016-09-15' \
  --data-urlencode 'Action=DetachVolume' \
  --data-urlencode 'Device=string' \
  --data-urlencode 'DryRun=false' \
  --data-urlencode 'Force=true' \
  --data-urlencode 'InstanceId=string' \
  --data-urlencode 'VolumeId=string'

Available Parameters

Name Type Description
Device string The name of the device.
DryRun boolean If set to true, checks whether you have the required permissions to perform the action.
Force boolean Forces the detachment of the volume in case of previous failure (this action may damage your data or file systems).
InstanceId string The ID of the instance.
VolumeId (required) string The ID of the volume.

Responses

Status Description Schema
200 The HTTP 200 response (OK). DetachVolumeResponse

Example responses

200 Response

{
  "attachTime": "string",
  "deleteOnTermination": true,
  "device": "string",
  "instanceId": "string",
  "requestId": "string",
  "status": "string",
  "volumeId": "string"
}

Schemas

AcceptVpcPeeringConnectionResponse

Properties

Name Type Description
requestId string The ID of the request.
vpcPeeringConnection vpcPeeringConnection Information about the created VPC peering connection.

Schema

{
  "requestId": "string",
  "vpcPeeringConnection": {
    "accepterVpcInfo": {
      "cidrBlock": "string",
      "ownerId": "string",
      "vpcId": "string"
    },
    "expirationTime": "string",
    "requesterVpcInfo": {
      "cidrBlock": "string",
      "ownerId": "string",
      "vpcId": "string"
    },
    "status": {
      "code": "string",
      "message": "string"
    },
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcPeeringConnectionId": "string"
  }
}

Add

The account ID you want to add to the list of permissions for the volume.

Properties

Name Type Description
Group string The name of the group (all if public).
UserId string The ID of the account.

Schema

{
  "Group": "string",
  "UserId": "string"
}

AllocateAddressResponse

Properties

Name Type Description
allocationId string The ID that represents the allocation of the EIP for use with instances in a VPC.
domain string The type of platform in which you can use the EIP.
publicIp string The EIP.
requestId string The ID of the request.

Schema

{
  "allocationId": "string",
  "domain": "string",
  "publicIp": "string",
  "requestId": "string"
}

AssignPrivateIpAddressesResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

AssociateAddressResponse

Properties

Name Type Description
associationId string (VPC only) The ID that represents the association of the EIP with the instance or the network interface.
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "associationId": "string",
  "requestId": "string",
  "return": true
}

AssociateDhcpOptionsResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

AssociateRouteTableResponse

Properties

Name Type Description
associationId string The ID of the route table association.
requestId string The ID of the request.

Schema

{
  "associationId": "string",
  "requestId": "string"
}

AttachInternetGatewayResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

AttachNetworkInterfaceResponse

Properties

Name Type Description
attachmentId string The ID of the attachment operation.
requestId string The ID of the request.

Schema

{
  "attachmentId": "string",
  "requestId": "string"
}

AttachVolumeResponse

Properties

Name Type Description
attachTime string The time at which the attachment was initiated.
deleteOnTermination boolean If true, the volume is deleted when terminating the instance. If false, the volume is not deleted when terminating the instance.
device string The instance device name.
instanceId string The ID of the instance the volume is attached to.
requestId string The ID of the request.
status string The attachment state of the volume (attaching | detaching | attached | detached).
volumeId string The ID of the attached volume.

Schema

{
  "attachTime": "string",
  "deleteOnTermination": true,
  "device": "string",
  "instanceId": "string",
  "requestId": "string",
  "status": "string",
  "volumeId": "string"
}

AttachVpnGatewayResponse

Properties

Name Type Description
attachment attachment_0 Information about the attachment.
requestId string The ID of the request.

Schema

{
  "attachment": {
    "state": "string",
    "vpcId": "string"
  },
  "requestId": "string"
}

Attachment

A new configuration for the attachment.

Properties

Name Type Description
AttachmentId string The ID of the FNI attachment.
DeleteOnTermination boolean By default or if set to false, the FNI is detached from the instance when the instance is terminated. If true, the FNI is deleted.

Schema

{
  "AttachmentId": "string",
  "DeleteOnTermination": true
}

attachments

The VPC to which the virtual private gateway is attached.

Properties

Name Type Description
state string The current state of the attachment (attaching | attached | detaching | detached).
vpcId string The ID of the Virtual Private Cloud (VPC).

Schema

{
  "state": "string",
  "vpcId": "string"
}

AuthorizeSecurityGroupEgressResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

AuthorizeSecurityGroupIngressResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

BlockDeviceMapping_0

The block device mapping of the instance. This parameter modifies the DeleteOnTermination attribute for volumes attached to the instance.

Properties

Name Type Description
DeviceName string The device name for the volume. For a root device, you must use /dev/sda1. For other volumes, you must use /dev/sdX, /dev/sdXX, /dev/xvdX, or /dev/xvdXX (where the first X is a letter between b and z, and the second X is a letter between a and z).
Ebs Ebs_1 One or more parameters used to automatically set up volumes when you launch the instance.
NoDevice string Removes the specified device included in the block device mapping.
VirtualName string The name of the virtual device.

Schema

{
  "DeviceName": "string",
  "Ebs": {
    "DeleteOnTermination": true,
    "VolumeId": "string"
  },
  "NoDevice": "string",
  "VirtualName": "string"
}

BlockDeviceMapping_1

One or more block device mappings of the instance.

Properties

Name Type Description
DeviceName string The device name for the volume. For a root device, you must use /dev/sda1. For other volumes, you must use /dev/sdX, /dev/sdXX, /dev/xvdX, or /dev/xvdXX (where the first X is a letter between b and z, and the second X is a letter between a and z).
Ebs Ebs_0 One or more parameters to map a volume to DeviceName at launch.
You can specify either Ebs or VirtualName, but not both.
NoDevice string Prevents a device from being mapped to DeviceName at launch, if the OMI used contains a mapping for DeviceName.

To use this parameter, specify any value other than null, for example an empty string. Example with OSC CLI:
  --BlockDeviceMapping.1.DeviceName "/dev/xvdb" \

  --BlockDeviceMapping.1.NoDevice ""
VirtualName string The name of an ephemeral storage disk (ephemeralN) to map to DeviceName at launch.

You can specify either Ebs or VirtualName, but not both.

Schema

{
  "DeviceName": "string",
  "Ebs": {
    "DeleteOnTermination": true,
    "Iops": 0,
    "SnapshotId": "string",
    "VolumeSize": 0,
    "VolumeType": "string"
  },
  "NoDevice": "string",
  "VirtualName": "string"
}

BlockDeviceMapping_2

One or more entries of block device mapping.

Properties

Name Type Description
deviceName string The name of the device.
ebs Ebs_2 One or more parameters used to automatically set up volumes when you launch the instance.
noDevice string Prevents a device from being mapped to DeviceName at launch, if the OMI used contains a mapping for DeviceName.

To use this parameter, specify any value other than null, for example an empty string. Example with OSC CLI:

  --BlockDeviceMapping.1.DeviceName "/dev/xvdb" \

  --BlockDeviceMapping.1.NoDevice ""
virtualName string The name of an ephemeral storage disk (ephemeralN) to map to DeviceName at launch.

You can specify either Ebs or VirtualName, but not both.

Schema

{
  "deviceName": "string",
  "ebs": {
    "deleteOnTermination": true,
    "iops": 0,
    "snapshotId": "string",
    "volumeSize": 0,
    "volumeType": "string"
  },
  "noDevice": "string",
  "virtualName": "string"
}

BlockDeviceMapping_3

One or more entries of block device mapping.

Properties

Name Type Description
deviceName string The name of the instance device name.
ebs ebs One or more parameters used to automatically set up volumes when the instance is launched.

Schema

{
  "deviceName": "string",
  "ebs": {
    "attachTime": "string",
    "deleteOnTermination": true,
    "status": "string",
    "volumeId": "string"
  }
}

CancelExportTaskResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

CopyImageResponse

Properties

Name Type Description
imageId string The ID of the new OMI.
requestId string The ID of the request.

Schema

{
  "imageId": "string",
  "requestId": "string"
}

CopySnapshotResponse

Properties

Name Type Description
requestId string The ID of the request.
snapshotId string The ID of the new snapshot.

Schema

{
  "requestId": "string",
  "snapshotId": "string"
}

CreateCustomerGatewayResponse

Properties

Name Type Description
customerGateway customerGateway Information about the newly created customer gateway.
requestId string The ID of the request.

Schema

{
  "customerGateway": {
    "bgpAsn": 0,
    "customerGatewayId": "string",
    "ipAddress": "string",
    "state": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "type": "string"
  },
  "requestId": "string"
}

CreateDhcpOptionsResponse

Properties

Name Type Description
dhcpOptions dhcpOptions A set of DHCP options.
requestId string The ID of the request.

Schema

{
  "dhcpOptions": {
    "dhcpConfigurationSet": [
      {
        "key": "string",
        "valueSet": [
          {
            "value": "string"
          }
        ]
      }
    ],
    "dhcpOptionsId": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ]
  },
  "requestId": "string"
}

CreateImageExportTaskResponse

Properties

Name Type Description
imageExportTask imageExportTask Information about one or more image export tasks.
requestId string The ID of the request.

Schema

{
  "imageExportTask": {
    "exportToOsu": {
      "diskImageFormat": "string",
      "osuAkSk": {
        "AccessKey": "string",
        "SecretKey": "string"
      },
      "osuBucket": "string",
      "osuManifestUrl": "string",
      "osuPrefix": "string"
    },
    "imageExport": {
      "imageId": "string"
    },
    "imageExportTaskId": "string",
    "state": "string",
    "statusMessage": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ]
  },
  "requestId": "string"
}

CreateImageResponse

Properties

Name Type Description
imageId string The ID of the new OMI.
requestId string The ID of the request.

Schema

{
  "imageId": "string",
  "requestId": "string"
}

CreateInternetGatewayResponse

Properties

Name Type Description
internetGateway internetGateway Information about the newly created Internet gateway.
requestId string The ID of the request.

Schema

{
  "internetGateway": {
    "internetGatewayId": "string",
    "attachmentSet": [
      {
        "state": "string",
        "vpcId": "string"
      }
    ],
    "tagSet": [
      {
        "Key": "string",
        "Value": "string"
      }
    ]
  },
  "requestId": "string"
}

CreateKeyPairResponse

Properties

Name Type Description
keyFingerprint string The MD5 public key fingerprint as specified in section 4 of RFC 4716.
keyMaterial string The private key. When saving the private key in a .rsa file, replace the \n escape sequences with line breaks.
keyName string A unique name for the keypair.
requestId string The ID of the request.

Schema

{
  "keyFingerprint": "string",
  "keyMaterial": "string",
  "keyName": "string",
  "requestId": "string"
}

CreateNatGatewayResponse

Properties

Name Type Description
clientToken string A unique identifier to manage the idempotency.
natGateway natGateway Information about the newly created NAT gateway.
requestId string The ID of the request.

Schema

{
  "clientToken": "string",
  "natGateway": {
    "createTime": "string",
    "deleteTime": "string",
    "natGatewayAddressSet": [
      {
        "allocationId": "string",
        "networkInterfaceId": "string",
        "privateIp": "string",
        "publicIp": "string"
      }
    ],
    "natGatewayId": "string",
    "state": "string",
    "subnetId": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcId": "string"
  },
  "requestId": "string"
}

CreateNetworkInterfaceResponse

Properties

Name Type Description
networkInterface NetworkInterface_1 Information about the newly created FNI.
requestId string The ID of the request.

Schema

{
  "networkInterface": {
    "association": {
      "allocationId": "string",
      "associationId": "string",
      "ipOwnerId": "string",
      "publicDnsName": "string",
      "publicIp": "string"
    },
    "attachment": {
      "attachTime": "string",
      "attachmentId": "string",
      "deleteOnTermination": true,
      "deviceIndex": 0,
      "instanceId": "string",
      "instanceOwnerId": "string",
      "status": "string"
    },
    "availabilityZone": "string",
    "description": "string",
    "groupSet": [
      {
        "groupId": "string",
        "groupName": "string"
      }
    ],
    "macAddress": "string",
    "networkInterfaceId": "string",
    "ownerId": "string",
    "privateDnsName": "string",
    "privateIpAddress": "string",
    "privateIpAddressesSet": [
      {
        "association": {
          "allocationId": "string",
          "associationId": "string",
          "ipOwnerId": "string",
          "publicDnsName": "string",
          "publicIp": "string"
        },
        "primary": true,
        "privateDnsName": "string",
        "privateIpAddress": "string"
      }
    ],
    "sourceDestCheck": true,
    "status": "string",
    "subnetId": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcId": "string"
  },
  "requestId": "string"
}

CreateRouteResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

CreateRouteTableResponse

Properties

Name Type Description
requestId string The ID of the request.
routeTable routeTable Information about the newly created route table.

Schema

{
  "requestId": "string",
  "routeTable": {
    "associationSet": [
      {
        "main": true,
        "routeTableAssociationId": "string",
        "routeTableId": "string",
        "subnetId": "string"
      }
    ],
    "propagatingVgwSet": [
      {
        "gatewayId": "string"
      }
    ],
    "routeSet": [
      {
        "destinationCidrBlock": "string",
        "destinationPrefixListId": "string",
        "gatewayId": "string",
        "instanceId": "string",
        "instanceOwnerId": "string",
        "networkInterfaceId": "string",
        "origin": "string",
        "state": "string",
        "vpcPeeringConnectionId": "string"
      }
    ],
    "routeTableId": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcId": "string"
  }
}

CreateSecurityGroupResponse

Properties

Name Type Description
groupId string The ID of the security group.
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "groupId": "string",
  "requestId": "string",
  "return": true
}

CreateSnapshotExportTaskResponse

Properties

Name Type Description
requestId string The ID of the request.
snapshotExportTask snapshotExportTask Information about one or more snapshot export tasks.

Schema

{
  "requestId": "string",
  "snapshotExportTask": {
    "completion": 0,
    "exportToOsu": {
      "diskImageFormat": "string",
      "osuBucket": "string",
      "osuKey": "string",
      "osuPrefix": "string",
      "aksk": {
        "AccessKey": "string",
        "SecretKey": "string"
      }
    },
    "snapshotExport": {
      "snapshotId": "string"
    },
    "snapshotExportTaskId": "string",
    "state": "string",
    "statusMessage": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ]
  }
}

CreateSnapshotResponse

Properties

Name Type Description
description string A description of the snapshot, if provided in the request.
encrypted boolean Indicates whether the snapshot is encrypted or not (always false).
ownerId string The account ID of the owner of the snapshot.
progress string The progress of the snapshot (a percentage).
requestId string The ID of the request.
snapshotId string The ID of the newly created snapshot.
startTime string The time at which the snapshot was initiated.
status string The state of the snapshot (in-queue | pending | completed).
tagSet [tagSet_0] One or more tags associated with the snapshot.
volumeId string The ID of the volume used to create the snapshot.
volumeSize integer The size of the volume, in gibibytes (GiB).

Schema

{
  "description": "string",
  "encrypted": true,
  "ownerId": "string",
  "progress": "string",
  "requestId": "string",
  "snapshotId": "string",
  "startTime": "string",
  "status": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "volumeId": "string",
  "volumeSize": 0
}

CreateSubnetResponse

Properties

Name Type Description
requestId string The ID of the request.
subnet subnet Information about the newly created subnet.

Schema

{
  "requestId": "string",
  "subnet": {
    "availabilityZone": "string",
    "availableIpAddressCount": 0,
    "cidrBlock": "string",
    "mapPublicIpOnLaunch": true,
    "state": "string",
    "subnetId": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcId": "string"
  }
}

CreateTagsResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

CreateVolumePermission_0

Enables you to modify the permissions to create a volume for account IDs or groups. If you specify both Add and Remove attributes in the request, only Add is taken into account.

Properties

Name Type Description
Add [Add] The account ID you want to add to the list of permissions for the volume.
Remove [Remove] The account ID you want to remove from the list of permissions for the volume.

Schema

{
  "Add": [
    {
      "Group": "string",
      "UserId": "string"
    }
  ],
  "Remove": [
    {
      "Group": "string",
      "UserId": "string"
    }
  ]
}

CreateVolumePermission_1

A list of permissions for creating volumes from the snapshot.

Properties

Name Type Description
Group string The name of the group (all if public).
UserId string The ID of the account.

Schema

{
  "Group": "string",
  "UserId": "string"
}

CreateVolumeResponse

Properties

Name Type Description
availabilityZone string The Availability Zone of the volume.
createTime string The time at which the volume was created.
iops integer The number of I/O operations per second (only for io1 and gp2 volumes).
requestId string The ID of the request.
size integer The size of the volume, in GiB.
snapshotId string The ID of the snapshot from which the volume was created.
status string The state of the volume (always creating when creating a volume).
tagSet [tagSet_0] The tags associated with the volume.
volumeId string The ID of the newly created volume.
volumeType string The type of the volume.

Schema

{
  "availabilityZone": "string",
  "createTime": "string",
  "iops": 0,
  "requestId": "string",
  "size": 0,
  "snapshotId": "string",
  "status": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "volumeId": "string",
  "volumeType": "string"
}

CreateVpcEndpointResponse

Properties

Name Type Description
requestId string The ID of the request.
vpcEndpoint vpcEndpoint Information about the newly created VPC endpoint.

Schema

{
  "requestId": "string",
  "vpcEndpoint": {
    "creationTimestamp": "string",
    "routeTableIdSet": [
      "string"
    ],
    "serviceName": "string",
    "state": "string",
    "vpcEndpointId": "string",
    "vpcId": "string"
  }
}

CreateVpcPeeringConnectionResponse

Properties

Name Type Description
requestId string The ID of the request.
vpcPeeringConnection vpcPeeringConnection Information about the created VPC peering connection.

Schema

{
  "requestId": "string",
  "vpcPeeringConnection": {
    "accepterVpcInfo": {
      "cidrBlock": "string",
      "ownerId": "string",
      "vpcId": "string"
    },
    "expirationTime": "string",
    "requesterVpcInfo": {
      "cidrBlock": "string",
      "ownerId": "string",
      "vpcId": "string"
    },
    "status": {
      "code": "string",
      "message": "string"
    },
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcPeeringConnectionId": "string"
  }
}

CreateVpcResponse

Properties

Name Type Description
requestId string The ID of the request.
vpc vpc Information about the newly created VPC.

Schema

{
  "requestId": "string",
  "vpc": {
    "cidrBlock": "string",
    "dhcpOptionsId": "string",
    "instanceTenancy": "string",
    "isDefault": true,
    "state": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "vpcId": "string"
  }
}

CreateVpnConnectionResponse

Properties

Name Type Description
requestId string The ID of the request.
vpnConnection vpnConnection Information about the VPN connection.

Schema

{
  "requestId": "string",
  "vpnConnection": {
    "customerGatewayConfiguration": "string",
    "customerGatewayId": "string",
    "options": {
      "staticRoutesOnly": true
    },
    "routes": [
      {
        "destinationCidrBlock": "string",
        "source": "string",
        "state": "string"
      }
    ],
    "state": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "type": "string",
    "vgwTelemetry": [
      {
        "acceptedRouteCount": 0,
        "lastStatusChange": "string",
        "outsideIpAddress": "string",
        "status": "string",
        "statusMessage": "string"
      }
    ],
    "vpnConnectionId": "string",
    "vpnGatewayId": "string"
  }
}

CreateVpnConnectionRouteResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

CreateVpnGatewayResponse

Properties

Name Type Description
requestId string The ID of the request.
vpnGateway vpnGateway Information about the newly created virtual private gateway.

Schema

{
  "requestId": "string",
  "vpnGateway": {
    "attachments": [
      {
        "state": "string",
        "vpcId": "string"
      }
    ],
    "state": "string",
    "tagSet": [
      {
        "key": "string",
        "value": "string"
      }
    ],
    "type": "string",
    "vpnGatewayId": "string"
  }
}

DeleteCustomerGatewayResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteDhcpOptionsResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteInternetGatewayResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteKeyPairResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteNatGatewayResponse

Properties

Name Type Description
natGatewayId string The ID of the deleted NAT gateway.
requestId string The ID if the request.

Schema

{
  "natGatewayId": "string",
  "requestId": "string"
}

DeleteNetworkInterfaceResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteRouteResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteRouteTableResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteSecurityGroupResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteSnapshotResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteSubnetResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteTagsResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteVolumeResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteVpcEndpointsResponse

Properties

Name Type Description
requestId string The ID of the request.
unsuccessful [unsuccessful] Information about one or more unsuccessfully deleted VPC endpoints.

Schema

{
  "requestId": "string",
  "unsuccessful": [
    {
      "error": {
        "code": "string",
        "message": "string"
      },
      "resourceId": "string"
    }
  ]
}

DeleteVpcPeeringConnectionResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteVpcResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteVpnConnectionResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteVpnConnectionRouteResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeleteVpnGatewayResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DeregisterImageResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DescribeAddressesResponse

Properties

Name Type Description
addressesSet [addressesSet] Information about one or more EIPs.
requestId string The ID of the request.

Schema

{
  "addressesSet": [
    {
      "allocationId": "string",
      "associationId": "string",
      "domain": "string",
      "instanceId": "string",
      "networkInterfaceId": "string",
      "networkInterfaceOwnerId": "string",
      "privateIpAddress": "string",
      "publicIp": "string"
    }
  ],
  "requestId": "string"
}

DescribeAvailabilityZonesResponse

Properties

Name Type Description
availabilityZoneInfo [availabilityZoneInfo] Information about the Availability Zones.
requestId string The ID of the request.

Schema

{
  "availabilityZoneInfo": [
    {
      "regionName": "string",
      "zoneName": "string",
      "zoneState": "string"
    }
  ],
  "requestId": "string"
}

DescribeCustomerGatewaysResponse

Properties

Name Type Description
customerGatewaySet [customerGatewaySet] One or more customer gateways.
requestId string The ID of the request.

Schema

{
  "customerGatewaySet": [
    {
      "bgpAsn": 0,
      "customerGatewayId": "string",
      "ipAddress": "string",
      "state": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "type": "string"
    }
  ],
  "requestId": "string"
}

DescribeDhcpOptionsResponse

Properties

Name Type Description
dhcpOptionsSet [dhcpOptionsSet] One or more DHCP options sets.
requestId string The ID of the request.

Schema

{
  "dhcpOptionsSet": [
    {
      "dhcpConfigurationSet": [
        {
          "key": "string",
          "valueSet": [
            {
              "value": "string"
            }
          ]
        }
      ],
      "dhcpOptionsId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ]
    }
  ],
  "requestId": "string"
}

DescribeImageAttributeResponse

Properties

Name Type Description
description Description_1 The description of the resource.
imageId string The ID of the OMI.
launchPermission [launchPermission_1] One or more launch permissions.
productCodes [productCodes] One or more product codes associated with the OMI.
requestId string The ID of the request.

Schema

{
  "description": {
    "value": "string"
  },
  "imageId": "string",
  "launchPermission": [
    {
      "group": "string",
      "userId": "string"
    }
  ],
  "productCodes": [
    {
      "productCode": "string",
      "type": "string"
    }
  ],
  "requestId": "string"
}

DescribeImageExportTasksResponse

Properties

Name Type Description
imageExportTaskSet [imageExportTask] Information about one or more image export tasks.
requestId string The ID of the request.

Schema

{
  "imageExportTaskSet": [
    {
      "exportToOsu": {
        "diskImageFormat": "string",
        "osuAkSk": {
          "AccessKey": "string",
          "SecretKey": "string"
        },
        "osuBucket": "string",
        "osuManifestUrl": "string",
        "osuPrefix": "string"
      },
      "imageExport": {
        "imageId": "string"
      },
      "imageExportTaskId": "string",
      "state": "string",
      "statusMessage": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ]
    }
  ],
  "requestId": "string"
}

DescribeImagesResponse

Properties

Name Type Description
imagesSet [imagesSet] Information about one or more OMIs.
requestId string The ID of the request.

Schema

{
  "imagesSet": [
    {
      "architecture": "string",
      "blockDeviceMapping": [
        {
          "deviceName": "string",
          "ebs": {
            "deleteOnTermination": true,
            "iops": 0,
            "snapshotId": "string",
            "volumeSize": 0,
            "volumeType": "string"
          },
          "noDevice": "string",
          "virtualName": "string"
        }
      ],
      "description": "string",
      "hypervisor": "string",
      "imageId": "string",
      "imageLocation": "string",
      "imageOwnerAlias": "string",
      "imageOwnerId": "string",
      "imageState": "string",
      "imageType": "string",
      "isPublic": true,
      "name": "string",
      "platform": "string",
      "productCodes": [
        {
          "productCode": "string",
          "type": "string"
        }
      ],
      "rootDeviceName": "string",
      "rootDeviceType": "string",
      "stateReason": {
        "code": "string",
        "message": "string"
      },
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "virtualizationType": "string"
    }
  ],
  "requestId": "string"
}

DescribeInstanceAttributeResponse

Properties

Name Type Description
blockDeviceMapping [BlockDeviceMapping_3] The block device mapping of the instance.
disableApiTermination DisableApiTermination_1 If true, you cannot terminate the instance unless you change this parameter back to false.
ebsOptimized EbsOptimized_1 This parameter is not available. It is present in our API for the sake of historical compatiblity with AWS.
groupSet [groupSet] The security groups associated with the instance.
instanceId string The ID of the instance.
instanceInitiatedShutdownBehavior InstanceInitiatedShutdownBehavior_1 Indicates whether the instance stops, terminates or restarts when you stop or terminate it.
instanceType InstanceType_1 The type of instance. For more information, see VM Types.
ramdisk ramdisk The ID of the RAM disk.
requestId string The ID of the request.
rootDeviceName rootDeviceName The name of the root device.
sourceDestCheck SourceDestCheck_1 (VPC only)
If true, the source/destination check is enabled. If false, it is disabled.
This value must be false for a NAT instance to perform Network Address Translation (NAT) in a VPC.
userData UserData_1 The Base64-encoded MIME user data.

Schema

{
  "blockDeviceMapping": [
    {
      "deviceName": "string",
      "ebs": {
        "attachTime": "string",
        "deleteOnTermination": true,
        "status": "string",
        "volumeId": "string"
      }
    }
  ],
  "disableApiTermination": {
    "value": true
  },
  "ebsOptimized": {
    "value": true
  },
  "groupSet": [
    {
      "groupId": "string",
      "groupName": "string"
    }
  ],
  "instanceId": "string",
  "instanceInitiatedShutdownBehavior": {
    "value": "string"
  },
  "instanceType": {
    "value": "string"
  },
  "ramdisk": {
    "Value": "string"
  },
  "requestId": "string",
  "rootDeviceName": {
    "Value": "string"
  },
  "sourceDestCheck": {
    "value": true
  },
  "userData": {
    "value": "string"
  }
}

DescribeInstanceStatusResponse

Properties

Name Type Description
instanceStatusSet [instanceStatusSet] One or more instance status descriptions.
nextToken string The token to request the next results page. If the value is null, there is no results left to be returned.
requestId string The ID of the request.

Schema

{
  "instanceStatusSet": [
    {
      "availabilityZone": "string",
      "eventsSet": [
        {
          "code": "string",
          "description": "string",
          "notAfter": "string",
          "notBefore": "string"
        }
      ],
      "instanceId": "string",
      "instanceState": {
        "code": 0,
        "name": "string"
      },
      "instanceStatus": {
        "details": [
          {
            "impairedSince": "string",
            "name": "string",
            "status": "string"
          }
        ],
        "status": "string"
      },
      "systemStatus": {
        "details": [
          {
            "impairedSince": "string",
            "name": "string",
            "status": "string"
          }
        ],
        "status": "string"
      }
    }
  ],
  "nextToken": "string",
  "requestId": "string"
}

DescribeInstanceTypesResponse

Properties

Name Type Description
instanceTypeSet [instanceTypeSet] One or more instance types.
requestId string The ID of the request.

Schema

{
  "instanceTypeSet": [
    {
      "ebsOptimizedAvailable": true,
      "ephemeralsType": "string",
      "eth": 0,
      "gpu": 0,
      "maxIpAddresses": 0,
      "memory": 0,
      "name": "string",
      "storageCount": 0,
      "storageSize": 0,
      "vcpu": 0
    }
  ],
  "requestId": "string"
}

DescribeInstancesResponse

Properties

Name Type Description
nextToken string The token to specify to request the next results page. If the value is null, there is no results left to be returned.
requestId string The ID of the request.
reservationSet [reservationSet] Zero or more reservations.

Schema

{
  "nextToken": "string",
  "requestId": "string",
  "reservationSet": [
    {
      "groupSet": [
        {
          "groupId": "string",
          "groupName": "string"
        }
      ],
      "instancesSet": [
        {
          "amiLaunchIndex": 0,
          "architecture": "string",
          "blockDeviceMapping": [
            {
              "deviceName": "string",
              "ebs": {
                "attachTime": "string",
                "deleteOnTermination": true,
                "status": "string",
                "volumeId": "string"
              }
            }
          ],
          "clientToken": "string",
          "dnsName": "string",
          "ebsOptimized": true,
          "groupSet": [
            {
              "groupId": "string",
              "groupName": "string"
            }
          ],
          "hypervisor": "string",
          "iamInstanceProfile": {
            "arn": "string",
            "id": "string"
          },
          "imageId": "string",
          "instanceId": "string",
          "instanceLifecycle": "string",
          "instanceState": {
            "code": 0,
            "name": "string"
          },
          "instanceType": "string",
          "ipAddress": "string",
          "kernelId": "string",
          "keyName": "string",
          "launchTime": "string",
          "monitoring": {
            "state": "string"
          },
          "networkInterfaceSet": [
            {
              "association": {
                "ipOwnerId": "string",
                "publicDnsName": "string",
                "publicIp": "string"
              },
              "attachment": {
                "attachTime": "string",
                "attachmentId": "string",
                "deleteOnTermination": true,
                "deviceIndex": 0,
                "status": "string"
              },
              "description": "string",
              "groupSet": [
                {
                  "groupId": "string",
                  "groupName": "string"
                }
              ],
              "macAddress": "string",
              "networkInterfaceId": "string",
              "ownerId": "string",
              "privateDnsName": "string",
              "privateIpAddress": "string",
              "privateIpAddressesSet": [
                {
                  "association": {
                    "ipOwnerId": "string",
                    "publicDnsName": "string",
                    "publicIp": "string"
                  },
                  "primary": true,
                  "privateDnsName": "string",
                  "privateIpAddress": "string"
                }
              ],
              "sourceDestCheck": true,
              "status": "string",
              "subnetId": "string",
              "vpcId": "string"
            }
          ],
          "placement": {
            "availabilityZone": "string",
            "groupName": "string",
            "tenancy": "string"
          },
          "platform": "string",
          "privateDnsName": "string",
          "privateIpAddress": "string",
          "productCodes": [
            {
              "productCode": "string",
              "type": "string"
            }
          ],
          "ramdiskId": "string",
          "reason": "string",
          "rootDeviceName": "string",
          "rootDeviceType": "string",
          "sourceDestCheck": true,
          "spotInstanceRequestId": "string",
          "sriovNetSupport": "string",
          "stateReason": {
            "code": "string",
            "message": "string"
          },
          "subnetId": "string",
          "tagSet": [
            {
              "key": "string",
              "value": "string"
            }
          ],
          "virtualizationType": "string",
          "vpcId": "string"
        }
      ],
      "ownerId": "string",
      "requesterId": "string",
      "reservationId": "string"
    }
  ]
}

DescribeInternetGatewaysResponse

Properties

Name Type Description
internetGatewaySet [internetGatewaySet] Information about one or more Internet gateways.
requestId string The ID of the request.

Schema

{
  "internetGatewaySet": [
    {
      "attachmentSet": [
        {
          "state": "string",
          "vpcId": "string"
        }
      ],
      "internetGatewayId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ]
    }
  ],
  "requestId": "string"
}

DescribeKeyPairsResponse

Properties

Name Type Description
keySet [keySet] Information about one or more keypairs.
requestId string The ID of the request.

Schema

{
  "keySet": [
    {
      "keyFingerprint": "string",
      "keyName": "string"
    }
  ],
  "requestId": "string"
}

DescribeNatGatewaysResponse

Properties

Name Type Description
natGatewaySet [natGatewaySet] Information about one or more NAT gateways.
nextToken string The token to request the next results page. If the value is null, there is no results left to be returned.
requestId string The ID of the request.

Schema

{
  "natGatewaySet": [
    {
      "createTime": "string",
      "deleteTime": "string",
      "natGatewayAddressSet": [
        {
          "allocationId": "string",
          "networkInterfaceId": "string",
          "privateIp": "string",
          "publicIp": "string"
        }
      ],
      "natGatewayId": "string",
      "state": "string",
      "subnetId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ],
  "nextToken": "string",
  "requestId": "string"
}

DescribeNetworkInterfacesResponse

Properties

Name Type Description
networkInterfaceSet [networkInterfaceSet_1] Information about the FNIs.
requestId string The ID of the request.

Schema

{
  "networkInterfaceSet": [
    {
      "association": {
        "allocationId": "string",
        "associationId": "string",
        "ipOwnerId": "string",
        "publicDnsName": "string",
        "publicIp": "string"
      },
      "attachment": {
        "attachTime": "string",
        "attachmentId": "string",
        "deleteOnTermination": true,
        "deviceIndex": 0,
        "instanceId": "string",
        "instanceOwnerId": "string",
        "status": "string"
      },
      "availabilityZone": "string",
      "description": "string",
      "groupSet": [
        {
          "groupId": "string",
          "groupName": "string"
        }
      ],
      "macAddress": "string",
      "networkInterfaceId": "string",
      "ownerId": "string",
      "privateDnsName": "string",
      "privateIpAddress": "string",
      "privateIpAddressesSet": [
        {
          "association": {
            "allocationId": "string",
            "associationId": "string",
            "ipOwnerId": "string",
            "publicDnsName": "string",
            "publicIp": "string"
          },
          "primary": true,
          "privateDnsName": "string",
          "privateIpAddress": "string"
        }
      ],
      "sourceDestCheck": true,
      "status": "string",
      "subnetId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ],
  "requestId": "string"
}

DescribePrefixListsResponse

Properties

Name Type Description
nextToken string The token to request the next results page. If the value is null, there is no results left to be returned.
prefixListSet [prefixListSet] Information about one or more prefix lists.
requestId string The ID of the request.

Schema

{
  "nextToken": "string",
  "prefixListSet": [
    {
      "cidrSet": [
        "string"
      ],
      "prefixListId": "string",
      "prefixListName": "string"
    }
  ],
  "requestId": "string"
}

DescribeProductTypesResponse

Properties

Name Type Description
productTypeSet [productTypeSet] One or more product types.
requestId string The ID of the request.

Schema

{
  "productTypeSet": [
    {
      "description": "string",
      "productTypeId": "string",
      "vendor": "string"
    }
  ],
  "requestId": "string"
}

DescribeQuotasResponse

Properties

Name Type Description
nextToken string The token to request the next results page. If the value is null, there are no results left to be returned.
referenceQuotaSet [referenceQuotaSet] One or more reference quotas.
requestId string The ID of the request.

Schema

{
  "nextToken": "string",
  "referenceQuotaSet": [
    {
      "quotaSet": [],
      "reference": "string"
    }
  ],
  "requestId": "string"
}

DescribeRegionsResponse

Properties

Name Type Description
regionInfo [regionInfo] Information about one or more Regions.
requestId string The ID of the request.

Schema

{
  "regionInfo": [
    {
      "regionEndpoint": "string",
      "regionName": "string"
    }
  ],
  "requestId": "string"
}

DescribeRouteTablesResponse

Properties

Name Type Description
requestId string The ID of the request.
routeTableSet [routeTableSet] Information about one or more route tables.

Schema

{
  "requestId": "string",
  "routeTableSet": [
    {
      "associationSet": [
        {
          "main": true,
          "routeTableAssociationId": "string",
          "routeTableId": "string",
          "subnetId": "string"
        }
      ],
      "propagatingVgwSet": [
        {
          "gatewayId": "string"
        }
      ],
      "routeSet": [
        {
          "destinationCidrBlock": "string",
          "destinationPrefixListId": "string",
          "gatewayId": "string",
          "instanceId": "string",
          "instanceOwnerId": "string",
          "networkInterfaceId": "string",
          "origin": "string",
          "state": "string",
          "vpcPeeringConnectionId": "string"
        }
      ],
      "routeTableId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ]
}

DescribeSecurityGroupsResponse

Properties

Name Type Description
requestId string The ID of the request.
securityGroupInfo [securityGroupInfo] Information about one or more security groups.

Schema

{
  "requestId": "string",
  "securityGroupInfo": [
    {
      "groupDescription": "string",
      "groupId": "string",
      "groupName": "string",
      "ipPermissions": [
        {
          "fromPort": 0,
          "groups": [
            {
              "groupId": "string",
              "groupName": "string",
              "userId": "string"
            }
          ],
          "ipProtocol": "string",
          "ipRanges": [
            {
              "cidrIp": "string"
            }
          ],
          "prefixListIds": [
            {
              "prefixListId": "string"
            }
          ],
          "toPort": 0
        }
      ],
      "ipPermissionsEgress": [
        {
          "fromPort": 0,
          "groups": [
            {
              "groupId": "string",
              "groupName": "string",
              "userId": "string"
            }
          ],
          "ipProtocol": "string",
          "ipRanges": [
            {
              "cidrIp": "string"
            }
          ],
          "prefixListIds": [
            {
              "prefixListId": "string"
            }
          ],
          "toPort": 0
        }
      ],
      "ownerId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ]
}

DescribeSnapshotAttributeResponse

Properties

Name Type Description
createVolumePermission [CreateVolumePermission_1] A list of permissions for creating volumes from the snapshot.
requestId string The ID of the request.
snapshotId string The ID of the snapshot.

Schema

{
  "createVolumePermission": [
    {
      "Group": "string",
      "UserId": "string"
    }
  ],
  "requestId": "string",
  "snapshotId": "string"
}

DescribeSnapshotExportTasksResponse

Properties

Name Type Description
requestId string The ID of the request.
snapshotExportTaskSet [snapshotExportTask] Information about one or more snapshot export tasks.

Schema

{
  "requestId": "string",
  "snapshotExportTaskSet": [
    {
      "completion": 0,
      "exportToOsu": {
        "diskImageFormat": "string",
        "osuBucket": "string",
        "osuKey": "string",
        "osuPrefix": "string",
        "aksk": {
          "AccessKey": "string",
          "SecretKey": "string"
        }
      },
      "snapshotExport": {
        "snapshotId": "string"
      },
      "snapshotExportTaskId": "string",
      "state": "string",
      "statusMessage": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ]
    }
  ]
}

DescribeSnapshotsResponse

Properties

Name Type Description
nextToken string The token to request the next results page. If the value is null, there is no results left to be returned.
requestId string The ID of the request.
snapshotSet [snapshotSet] Information about one or more snapshots.

Schema

{
  "nextToken": "string",
  "requestId": "string",
  "snapshotSet": [
    {
      "description": "string",
      "encrypted": true,
      "ownerAlias": "string",
      "ownerId": "string",
      "progress": "string",
      "snapshotId": "string",
      "startTime": "string",
      "status": "string",
      "statusMessage": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "volumeId": "string",
      "volumeSize": 0
    }
  ]
}

DescribeSubnetsResponse

Properties

Name Type Description
requestId string The ID of the request.
subnetSet [subnetSet] Information about one or more of your subnets.

Schema

{
  "requestId": "string",
  "subnetSet": [
    {
      "availabilityZone": "string",
      "availableIpAddressCount": 0,
      "cidrBlock": "string",
      "mapPublicIpOnLaunch": true,
      "state": "string",
      "subnetId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ]
}

DescribeTagsResponse

Properties

Name Type Description
nextToken string The token to request the next results page. If the value is null, there is no results left to be returned.
requestId string The ID of the request.
tagSet [tagSet_1] Information about one or more tags.

Schema

{
  "nextToken": "string",
  "requestId": "string",
  "tagSet": [
    {
      "key": "string",
      "resourceId": "string",
      "resourceType": "string",
      "value": "string"
    }
  ]
}

DescribeVolumesResponse

Properties

Name Type Description
nextToken string The token to request the next results page. If the value is null, there is no results left to be returned.
requestId string The ID of the request.
volumeSet [volumeSet] Information about one or more volumes.

Schema

{
  "nextToken": "string",
  "requestId": "string",
  "volumeSet": [
    {
      "attachmentSet": [
        {
          "attachTime": "string",
          "deleteOnTermination": true,
          "device": "string",
          "instanceId": "string",
          "status": "string",
          "volumeId": "string"
        }
      ],
      "availabilityZone": "string",
      "createTime": "string",
      "iops": 0,
      "size": 0,
      "snapshotId": "string",
      "status": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "volumeId": "string",
      "volumeType": "string"
    }
  ]
}

DescribeVpcAttributeResponse

Properties

Name Type Description
enableDnsHostnames EnableDnsHostnames_1 The state of the enableDnsHostnames attribute.
enableDnsSupport EnableDnsSupport_1 The state of the enableDnsSupport attribute.
requestId string The ID of the request.
vpcId string The ID of the VPC.

Schema

{
  "enableDnsHostnames": {
    "value": true
  },
  "enableDnsSupport": {
    "value": true
  },
  "requestId": "string",
  "vpcId": "string"
}

DescribeVpcEndpointServicesResponse

Properties

Name Type Description
nextToken string The token to request the next results page. If the value is null, there is no results left to be returned.
requestId string The ID of the request.
serviceNameSet [string] The names of the services you can use for VPC endpoints.

Schema

{
  "nextToken": "string",
  "requestId": "string",
  "serviceNameSet": [
    "string"
  ]
}

DescribeVpcEndpointsResponse

Properties

Name Type Description
requestId string The ID of the request.
vpcEndpointSet [vpcEndpointSet] Information about one or more VPC endpoints.

Schema

{
  "requestId": "string",
  "vpcEndpointSet": [
    {
      "creationTimestamp": "string",
      "routeTableIdSet": [
        "string"
      ],
      "serviceName": "string",
      "state": "string",
      "vpcEndpointId": "string",
      "vpcId": "string"
    }
  ]
}

DescribeVpcPeeringConnectionsResponse

Properties

Name Type Description
requestId string The ID of the request.
vpcPeeringConnectionSet [vpcPeeringConnectionSet] Information about one or more VPC peering connections.

Schema

{
  "requestId": "string",
  "vpcPeeringConnectionSet": [
    {
      "accepterVpcInfo": {
        "cidrBlock": "string",
        "ownerId": "string",
        "vpcId": "string"
      },
      "expirationTime": "string",
      "requesterVpcInfo": {
        "cidrBlock": "string",
        "ownerId": "string",
        "vpcId": "string"
      },
      "status": {
        "code": "string",
        "message": "string"
      },
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcPeeringConnectionId": "string"
    }
  ]
}

DescribeVpcsResponse

Properties

Name Type Description
requestId string The ID of the request.
vpcSet [vpcSet] Information about one or more VPCs.

Schema

{
  "requestId": "string",
  "vpcSet": [
    {
      "cidrBlock": "string",
      "dhcpOptionsId": "string",
      "isDefault": true,
      "instanceTenancy": "string",
      "state": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "vpcId": "string"
    }
  ]
}

DescribeVpnConnectionsResponse

Properties

Name Type Description
requestId string The ID of the request.
vpnConnectionSet [vpnConnectionSet] Information about one or more VPN connections.

Schema

{
  "requestId": "string",
  "vpnConnectionSet": [
    {
      "customerGatewayConfiguration": "string",
      "customerGatewayId": "string",
      "options": {
        "staticRoutesOnly": true
      },
      "routes": [
        {
          "destinationCidrBlock": "string",
          "source": "string",
          "state": "string"
        }
      ],
      "state": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "type": "string",
      "vgwTelemetry": [
        {
          "acceptedRouteCount": 0,
          "lastStatusChange": "string",
          "outsideIpAddress": "string",
          "status": "string",
          "statusMessage": "string"
        }
      ],
      "vpnConnectionId": "string",
      "vpnGatewayId": "string"
    }
  ]
}

DescribeVpnGatewaysResponse

Properties

Name Type Description
requestId string The ID of the request.
vpnGatewaySet [vpnGatewaySet] Information about one or more virtual private gateways.

Schema

{
  "requestId": "string",
  "vpnGatewaySet": [
    {
      "attachments": [],
      "state": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "type": "string",
      "vpnGatewayId": "string"
    }
  ]
}

Description_0

A new description of the resource.

Properties

Name Type Description
Value string The value specified for the resource attribute.

Schema

{
  "Value": "string"
}

Description_1

The description of the resource.

Properties

Name Type Description
value string The value specified for the resource attribute.

Schema

{
  "value": "string"
}

DetachInternetGatewayResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DetachNetworkInterfaceResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DetachVolumeResponse

Properties

Name Type Description
attachTime string The time at which the attachment was initiated.
deleteOnTermination boolean If true, the volume is deleted when terminating the instance. If false, the volume is not deleted when terminating the instance.
device string The name of the device.
instanceId string The ID of the instance.
requestId string The ID of the request.
status string The attachment state of the volume (attaching | detaching | attached | detached).
volumeId string The ID of the volume.

Schema

{
  "attachTime": "string",
  "deleteOnTermination": true,
  "device": "string",
  "instanceId": "string",
  "requestId": "string",
  "status": "string",
  "volumeId": "string"
}

DetachVpnGatewayResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

details

The system instance health or application instance health.

Properties

Name Type Description
impairedSince string The time at which a state check failed (for an instance that was launched and impaired, the time at which the instance was launched).
name string The type of instance state (always reachability).
status string The state of the instance.

Schema

{
  "impairedSince": "string",
  "name": "string",
  "status": "string"
}

DhcpConfiguration

A DHCP configuration option.

Properties

Name Type Description
Key string The type of DHCP option (domain-name-servers | domain-name | ntp-servers | log-servers). For more information, see About DHCP Options.
Value [string] The values for the DHCP option (one to four IPs for the domain-name-servers, ntp-servers and log-servers options, or a domain name for the domain-name option). For more information, see About DHCP Options.

Schema

{
  "Key": "string",
  "Value": [
    "string"
  ]
}

DisableApiTermination_0

If true, you cannot terminate the instance unless you change this parameter back to false.

Properties

Name Type Description
Value boolean A boolean value (true or false) that can be used when the resource is of boolean type.

Schema

{
  "Value": true
}

DisableApiTermination_1

If true, you cannot terminate the instance unless you change this parameter back to false.

Properties

Name Type Description
value boolean A boolean value (true or false) that can be used when the resource is of boolean type.

Schema

{
  "value": true
}

DisableVgwRoutePropagationResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DisassociateAddressResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

DisassociateRouteTableResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

EbsOptimized_0

This parameter is not available. It is present in our API for the sake of historical compatiblity with AWS.

Properties

Name Type Description
Value boolean A boolean value (true or false) that can be used when the resource is of boolean type.

Schema

{
  "Value": true
}

EbsOptimized_1

This parameter is not available. It is present in our API for the sake of historical compatiblity with AWS.

Properties

Name Type Description
value boolean A boolean value (true or false) that can be used when the resource is of boolean type.

Schema

{
  "value": true
}

Ebs_0

One or more parameters to map a volume to DeviceName at launch. You can specify either Ebs or VirtualName, but not both.

Properties

Name Type Description
DeleteOnTermination boolean By default or if set to true, the volume is deleted when terminating the instance. If false, the volume is not deleted when terminating the instance.
Iops integer The number of I/O operations per second. This parameter must be specified only if you create an io1 volume. The maximum number of IOPS allowed for io1 volumes is 13000 with a maximum performance ratio of 300 IOPS per gibibyte.
SnapshotId string The ID of the snapshot used to create the volume.
VolumeSize integer The size of the volume, in gibibytes (GiB).

If you specify a snapshot ID, the volume size must be at least equal to the snapshot size.

If you specify a snapshot ID but no volume size, the volume is created with a size similar to the snapshot one.
VolumeType string The type of the volume (standard | io1 | gp2). If not specified in the request, a standard volume is created. For more information about volumes types, see Volume Types and IOPS.

Schema

{
  "DeleteOnTermination": true,
  "Iops": 0,
  "SnapshotId": "string",
  "VolumeSize": 0,
  "VolumeType": "string"
}

Ebs_1

One or more parameters used to automatically set up volumes when you launch the instance.

Properties

Name Type Description
DeleteOnTermination boolean By default or if set to true, the volume is deleted when terminating the instance. If false, the volume is not deleted when terminating the instance.
VolumeId string The ID of the volume.

Schema

{
  "DeleteOnTermination": true,
  "VolumeId": "string"
}

Ebs_2

One or more parameters used to automatically set up volumes when you launch the instance.

Properties

Name Type Description
deleteOnTermination boolean If true, the volume is deleted when terminating the instance. If false, the volume is not deleted when terminating the instance.
iops integer The number of I/O operations per second. This parameter must be specified only if you create an io1 volume. The maximum number of IOPS allowed for io1 volumes is 13000 with a maximum performance ratio of 300 IOPS per gibibyte.
snapshotId string The ID of the snapshot used to create the volume.
volumeSize integer The size of the volume, in gibibytes (GiB).

If you specify a snapshot ID, the volume size must be at least equal to the snapshot size.

If you specify a snapshot ID but no volume size, the volume is created with a size similar to the snapshot one.
volumeType string The type of the volume (standard | io1 | gp2). If not specified in the request, a standard volume is created. For more information about volumes types, see Volume Types and IOPS.

Schema

{
  "deleteOnTermination": true,
  "iops": 0,
  "snapshotId": "string",
  "volumeSize": 0,
  "volumeType": "string"
}

EnableDnsHostnames_0

If set to true, instances launched in the VPC get DNS hostnames (by default, true).

Properties

Name Type Description
Value boolean A boolean value (true or false) that can be used when the resource is of boolean type.

Schema

{
  "Value": true
}

EnableDnsHostnames_1

The state of the enableDnsHostnames attribute.

Properties

Name Type Description
value boolean A boolean value (true or false) that can be used when the resource is of boolean type.

Schema

{
  "value": true
}

EnableDnsSupport_0

If set to true, DNS resolution is supported for the VPC (by default, true).

Properties

Name Type Description
Value boolean A boolean value (true or false) that can be used when the resource is of boolean type.

Schema

{
  "Value": true
}

EnableDnsSupport_1

The state of the enableDnsSupport attribute.

Properties

Name Type Description
value boolean A boolean value (true or false) that can be used when the resource is of boolean type.

Schema

{
  "value": true
}

EnableVgwRoutePropagationResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

ExportToOsu_0

Information about the OMI export task.

Properties

Name Type Description
DiskImageFormat string The format of the export disk (qcow2 | raw).
OsuAkSk OsuAkSk The access key and secret key of the OOS account used to access the bucket.
OsuBucket string The name of the OOS bucket where you want to export the OMI.
OsuPrefix string The prefix for the key of the OOS object corresponding to the image.

Schema

{
  "DiskImageFormat": "string",
  "OsuAkSk": {
    "AccessKey": "string",
    "SecretKey": "string"
  },
  "OsuBucket": "string",
  "OsuPrefix": "string"
}

ExportToOsu_1

Information about the snapshot export task.

Properties

Name Type Description
DiskImageFormat string The format of the export disk (qcow2 | raw).
OsuBucket string The name of the OOS bucket where you want to export the snapshot.
OsuPrefix string The prefix for the key of the OOS object corresponding to the snapshot.
aksk aksk The access key and secret key of the OOS account used to access the bucket.

Schema

{
  "DiskImageFormat": "string",
  "OsuBucket": "string",
  "OsuPrefix": "string",
  "aksk": {
    "AccessKey": "string",
    "SecretKey": "string"
  }
}

exportToOsu_2

Information about the OMI export task.

Properties

Name Type Description
diskImageFormat string The format of the export disk (qcow2 | raw).
osuAkSk OsuAkSk The access key and secret key of the OOS account used to access the bucket.
osuBucket string The name of the OOS bucket where the OMI is exported.
osuManifestUrl string The URL of the manifest file.
osuPrefix string The prefix for the key of the OOS object corresponding to the image.

Schema

{
  "diskImageFormat": "string",
  "osuAkSk": {
    "AccessKey": "string",
    "SecretKey": "string"
  },
  "osuBucket": "string",
  "osuManifestUrl": "string",
  "osuPrefix": "string"
}

exportToOsu_3

Information about the snapshot export task.

Properties

Name Type Description
diskImageFormat string The format of the export disk (qcow2 | raw).
osuBucket string The name of the OOS bucket where the snapshot is exported.
osuKey string The key of the OOS object corresponding to the snapshot.
osuPrefix string The prefix for the key of the OOS object corresponding to the snapshot.
aksk aksk The access key and secret key of the OOS account used to access the bucket.

Schema

{
  "diskImageFormat": "string",
  "osuBucket": "string",
  "osuKey": "string",
  "osuPrefix": "string",
  "aksk": {
    "AccessKey": "string",
    "SecretKey": "string"
  }
}

Filter

One or more filters.

Properties

Name Type Description
Name string The name of the filter.
Value [string] One or more filter values.

Schema

{
  "Name": "string",
  "Value": [
    "string"
  ]
}

GetConsoleOutputResponse

Properties

Name Type Description
instanceId string The ID of the instance.
output string The Base64 encoded output of the console. If a command line tool is used, the output is decoded by the tools.
requestId string The ID of the request.
timestamp string The date and time the output was last updated, in ISO 8601 format.

Schema

{
  "instanceId": "string",
  "output": "string",
  "requestId": "string",
  "timestamp": "string"
}

GetPasswordDataResponse

Properties

Name Type Description
instanceId string The ID of the instance.
passwordData string The password of the instance. After the first boot, returns an empty string.
requestId string The ID of the request.
timestamp string The date and time the output was last updated, in ISO 8601 format.

Schema

{
  "instanceId": "string",
  "passwordData": "string",
  "requestId": "string",
  "timestamp": "string"
}

GetProductTypeResponse

Properties

Name Type Description
productType productType Information about the product type of the specified OMI or snapshot.
requestId string The ID of the request.

Schema

{
  "productType": {
    "description": "string",
    "productTypeId": "string",
    "vendor": "string"
  },
  "requestId": "string"
}

GetProductTypesResponse

Properties

Name Type Description
productTypeSet [productTypeSet] Information about one or more product types.
requestId string The ID of the request.

Schema

{
  "productTypeSet": [
    {
      "description": "string",
      "productTypeId": "string",
      "vendor": "string"
    }
  ],
  "requestId": "string"
}

Groups_0

One or more security groups and account ID pairs.

Properties

Name Type Description
GroupId string The ID of the security group (in case of a security group in a nondefault VPC).
GroupName string The name of the security group (in case of a security group in FCU or a default VPC).
UserId string The ID of the account.

Schema

{
  "GroupId": "string",
  "GroupName": "string",
  "UserId": "string"
}

Groups_1

Information about one or more security groups associated with the FNI.

Properties

Name Type Description
groupId string The ID of the security group.xx
groupName string The name of the security group.

Schema

{
  "groupId": "string",
  "groupName": "string"
}

groups_2

One or more security groups and account ID pairs.

Properties

Name Type Description
groupId string The ID of the security group (in case of a security group in a nondefault VPC).
groupName string The name of the security group (in case of a security group in FCU or a default VPC).
userId string The ID of the account.

Schema

{
  "groupId": "string",
  "groupName": "string",
  "userId": "string"
}

ImportKeyPairResponse

Properties

Name Type Description
keyFingerprint string The MD5 public key fingerprint as specified in section 4 of RFC 4716.
keyName string The keypair name you specified.
requestId string The ID of the request.

Schema

{
  "keyFingerprint": "string",
  "keyName": "string",
  "requestId": "string"
}

ImportSnapshotResponse

Properties

Name Type Description
description string The description of the snapshot created in your account.
encrypted boolean Indicates whether the snapshot is encrypted or not (always false).
ownerAlias string The alias of the owner of the snapshot created in your account.
ownerId string The ID of the owner of the snapshot created in your account.
progress string The percentage of the task completed.
requestId string The ID of the request.
snapshotId string The ID of the snapshot created in your account.
startTime string The date and time at which the import task started.
status string The state of the snapshot created in your account (error | completed).
volumeId string The ID of the volume.
volumeSize integer The size of the volume, in gibibytes (GiB).

Schema

{
  "description": "string",
  "encrypted": true,
  "ownerAlias": "string",
  "ownerId": "string",
  "progress": "string",
  "requestId": "string",
  "snapshotId": "string",
  "startTime": "string",
  "status": "string",
  "volumeId": "string",
  "volumeSize": 0
}

InstanceInitiatedShutdownBehavior_0

The instance behavior when you stop it. By default or if set to stop, the instance stops. If set to restart, the instance stops then automatically restarts. If set to terminate, the instance stops and is terminated.

Properties

Name Type Description
Value string The value specified for the resource attribute.

Schema

{
  "Value": "string"
}

InstanceInitiatedShutdownBehavior_1

Indicates whether the instance stops, terminates or restarts when you stop or terminate it.

Properties

Name Type Description
value string The value specified for the resource attribute.

Schema

{
  "value": "string"
}

InstanceType_0

The type of instance. For more information, see VM Types.

Properties

Name Type Description
Value string The value specified for the resource attribute.

Schema

{
  "Value": "string"
}

InstanceType_1

The type of instance. For more information, see VM Types.

Properties

Name Type Description
value string The value specified for the resource attribute.

Schema

{
  "value": "string"
}

internetGateway

Information about the newly created Internet gateway.

Properties

Name Type Description
internetGatewayId string The ID of the Internet gateway.
attachmentSet [attachmentSet_1] One or more VPCs attached to the Internet gateway.
tagSet [Tag] One or more tags associated with the Internet gateway.

Schema

{
  "internetGatewayId": "string",
  "attachmentSet": [
    {
      "state": "string",
      "vpcId": "string"
    }
  ],
  "tagSet": [
    {
      "Key": "string",
      "Value": "string"
    }
  ]
}

IpPermissions_0

Information about one or more IP permissions.

Properties

Name Type Description
FromPort integer The beginning of the port range for TCP and UDP protocols, or an ICMP type number.
Groups [Groups_0] One or more security groups and account ID pairs.
IpProtocol string The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a VPC, this can also be an IP protocol number. For more information, see the IANA.org website.
IpRanges [IpRanges_0] One or more IP ranges.
PrefixListIds [PrefixListIds_0] One or more prefix list IDs to allow traffic from a VPC to access the corresponding OUTSCALE services. For more information, see DescribePrefixLists.
ToPort integer The end of the port range for TCP and UDP protocols, or an ICMP code number.

Schema

{
  "FromPort": 0,
  "Groups": [
    {
      "GroupId": "string",
      "GroupName": "string",
      "UserId": "string"
    }
  ],
  "IpProtocol": "string",
  "IpRanges": [
    {
      "CidrIp": "string"
    }
  ],
  "PrefixListIds": [
    {
      "PrefixListId": "string"
    }
  ],
  "ToPort": 0
}

IpPermissions_1

The inbound rules associated with the security group.

Properties

Name Type Description
fromPort integer The beginning of the port range for TCP and UDP protocols, or an ICMP type number.
groups [groups_2] One or more security groups and account ID pairs.
ipProtocol string The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a VPC, this can also be an IP protocol number. For more information, see the IANA.org website.
ipRanges [ipRanges_1] One or more IP ranges.
prefixListIds [PrefixListIds_1] One or more prefix list IDs to allow traffic from a VPC to access the corresponding OUTSCALE services. For more information, see DescribePrefixLists.
toPort integer The end of the port range for TCP and UDP protocols, or an ICMP code number.

Schema

{
  "fromPort": 0,
  "groups": [
    {
      "groupId": "string",
      "groupName": "string",
      "userId": "string"
    }
  ],
  "ipProtocol": "string",
  "ipRanges": [
    {
      "cidrIp": "string"
    }
  ],
  "prefixListIds": [
    {
      "prefixListId": "string"
    }
  ],
  "toPort": 0
}

IpRanges_0

One or more IP ranges.

Properties

Name Type Description
CidrIp string The range of IPs.

Schema

{
  "CidrIp": "string"
}

ipRanges_1

One or more IP ranges.

Properties

Name Type Description
cidrIp string The range of IPs.

Schema

{
  "cidrIp": "string"
}

LaunchPermission_0

Permissions to access the OMI. If you specify both Add and Remove attributes in the request, only Add is taken into account.

Properties

Name Type Description
Add [Add] The account ID you want to add to the list of launch permissions for the OMI.
Remove [Remove] The account ID you want to remove from the list of launch permissions for the OMI.

Schema

{
  "Add": [
    {
      "Group": "string",
      "UserId": "string"
    }
  ],
  "Remove": [
    {
      "Group": "string",
      "UserId": "string"
    }
  ]
}

MapPublicIpOnLaunch

If set to true, an External IP (EIP) is automatically assigned to the instance launched with this subnet. The EIP remains assigned to the instance, even when it is stopped, and is released when the instance is terminated.

Properties

Name Type Description
Value boolean A boolean value (true or false) that can be used when the resource is of boolean type.

Schema

{
  "Value": true
}

ModifyImageAttributeResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

ModifyInstanceAttributeResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

ModifyInstanceKeypairResponse

Properties

Name Type Description
requestId string The ID of the request.

Schema

{
  "requestId": "string"
}

ModifyNetworkInterfaceAttributeResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

ModifySnapshotAttributeResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

ModifySubnetAttributeResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

ModifyVpcEndpointResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

NetworkInterface_0

One or more network interfaces. If you specify this parameter, you must define one network interface as the primary one of the instance with 0 as its device index.

Properties

Name Type Description
DeleteOnTermination boolean By default or if set to true, the network interface is deleted when the instance is terminated. You can specify this parameter only for a new network interface. To modify this value for an existing network interface, see ModifyNetworkInterfaceAttribute.
Description string The description of the network interface, if you are creating a network interface when launching an instance.
DeviceIndex integer The index of the instance device for the network interface attachment (between 0 and 7, both included). This parameter is required if you create a network interface when launching an instance.
NetworkInterfaceId string The ID of the network interface, if you are attaching an existing network interface when launching an instance.
PrivateIpAddress string The private IP of the network interface, if you are creating a network interface when launching an instance.
PrivateIpAddressesSet [PrivateIpAddressesSet] One or more private IPs to assign to the network interface (only one can be primary), if you are creating a network interface when launching an instance.
SecondaryPrivateIpAddressCount integer The number of secondary private IPs (cannot be specified if you specified more than one private IP in the PrivateIPAddressesSet.N parameter), if you are creating a network interface when launching an instance.
SecurityGroupId [string] One or more IDs of the security groups of the network interface, if you are creating a network interface when launching an instance.
SubnetId string The ID of the subnet associated with the network string, if you are creating a network interface when launching an instance.

Schema

{
  "DeleteOnTermination": true,
  "Description": "string",
  "DeviceIndex": 0,
  "NetworkInterfaceId": "string",
  "PrivateIpAddress": "string",
  "PrivateIpAddressesSet": [
    {
      "Primary": true,
      "PrivateIpAddress": "string"
    }
  ],
  "SecondaryPrivateIpAddressCount": 0,
  "SecurityGroupId": [
    "string"
  ],
  "SubnetId": "string"
}

NetworkInterface_1

Information about the newly created FNI.

Properties

Name Type Description
association association_0 Information about the association between the FNI and an EIP.
attachment attachment_1 Information about the FNI attachment.
availabilityZone string The AZ where the FNI is located.
description string The description of the FNI.
groupSet [groupSet] One or more security groups for the instance.
macAddress string The Media Access Control (MAC) address of the FNI.
networkInterfaceId string The ID of the FNI.
ownerId string The account ID of the FNI owner.
privateDnsName string The private DNS name associated with the primary private IP of the FNI.
privateIpAddress string The primary private IP of the FNI.
privateIpAddressesSet [privateIpAddressesSet_0] Information about the EIP and the private IPs assigned to the FNI.
sourceDestCheck boolean If true, the traffic to or from the instance is validated. If false, it is not.
status string The state of the FNI.
subnetId string The ID of the subnet where the FNI is located.
tagSet [tagSet_0] One or more tags associated with the FNI.
vpcId string The ID of the VPC where the FNI is located.

Schema

{
  "association": {
    "allocationId": "string",
    "associationId": "string",
    "ipOwnerId": "string",
    "publicDnsName": "string",
    "publicIp": "string"
  },
  "attachment": {
    "attachTime": "string",
    "attachmentId": "string",
    "deleteOnTermination": true,
    "deviceIndex": 0,
    "instanceId": "string",
    "instanceOwnerId": "string",
    "status": "string"
  },
  "availabilityZone": "string",
  "description": "string",
  "groupSet": [
    {
      "groupId": "string",
      "groupName": "string"
    }
  ],
  "macAddress": "string",
  "networkInterfaceId": "string",
  "ownerId": "string",
  "privateDnsName": "string",
  "privateIpAddress": "string",
  "privateIpAddressesSet": [
    {
      "association": {
        "allocationId": "string",
        "associationId": "string",
        "ipOwnerId": "string",
        "publicDnsName": "string",
        "publicIp": "string"
      },
      "primary": true,
      "privateDnsName": "string",
      "privateIpAddress": "string"
    }
  ],
  "sourceDestCheck": true,
  "status": "string",
  "subnetId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcId": "string"
}

Options_0

Options for a VPN connection.

Properties

Name Type Description
StaticRoutesOnly boolean By default or if false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.

Schema

{
  "StaticRoutesOnly": true
}

Options_1

Options for a VPN connection.

Properties

Name Type Description
staticRoutesOnly boolean If false, the VPN connection uses dynamic routing with Border Gateway Protocol (BGP). If true, routing is controlled using static routes. For more information about how to create and delete static routes, see CreateVpnConnectionRoute and DeleteVpnConnectionRoute.

Schema

{
  "staticRoutesOnly": true
}

OsuAkSk

The access key and secret key of the OOS account used to access the bucket.

Properties

Name Type Description
AccessKey string The access key of the OOS account that enables you to access the bucket.
SecretKey string The secret key of the OOS account that enables you to access the bucket.

Schema

{
  "AccessKey": "string",
  "SecretKey": "string"
}

Placement_0

A specific placement where you want to create the instances (tenancy options).

Properties

Name Type Description
AvailabilityZone string The Availability Zone of the instance.
Tenancy string The tenancy of the instance (default | dedicated).

Schema

{
  "AvailabilityZone": "string",
  "Tenancy": "string"
}

Placement_1

A specific placement where you want to create the instances.

Properties

Name Type Description
availabilityZone string The Availability Zone of the instance.
groupName string The name of the placement group of the instance (always null).
tenancy string The tenancy of the instance (default | dedicated).

Schema

{
  "availabilityZone": "string",
  "groupName": "string",
  "tenancy": "string"
}

PrefixListIds_0

One or more prefix list IDs to allow traffic from a VPC to access the corresponding OUTSCALE services. For more information, see DescribePrefixLists.

Properties

Name Type Description
PrefixListId string The ID of the prefix.

Schema

{
  "PrefixListId": "string"
}

PrefixListIds_1

One or more prefix list IDs to allow traffic from a VPC to access the corresponding OUTSCALE services. For more information, see DescribePrefixLists.

Properties

Name Type Description
prefixListId string The ID of the prefix.

Schema

{
  "prefixListId": "string"
}

PrivateIpAddressesSet

One or more private IPs to assign to the network interface (only one can be primary), if you are creating a network interface when launching an instance.

Properties

Name Type Description
Primary boolean Indicates whether it is the primary private IP.
PrivateIpAddress string The private IPs.

Schema

{
  "Primary": true,
  "PrivateIpAddress": "string"
}

QuotaSet

One or more quotas associated with the account.

Properties

Name Type Description
description string The description of the quota.
displayName string The display name of the quota.
groupName string The group name the quota belongs to.
maxQuotaValue integer The maximum value of the quota for the account (if there is no limit, 0).
name string The unique name of the quota.
ownerId string The account ID of owner of the quota.
usedQuotaValue integer The limit value currently used by the account.

Schema

{
  "description": "string",
  "displayName": "string",
  "groupName": "string",
  "maxQuotaValue": 0,
  "name": "string",
  "ownerId": "string",
  "usedQuotaValue": 0
}

ReadPublicIpRangesResponse

Properties

Name Type Description
publicIpSet [string] The list of public IPv4 addresses used in the Region, in CIDR notation.
requestId string The ID of the request.

Schema

{
  "publicIpSet": [
    "string"
  ],
  "requestId": "string"
}

RebootInstancesResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

RegisterImageResponse

Properties

Name Type Description
imageId string The ID of the newly registered OMI.
requestId string The ID of the request.

Schema

{
  "imageId": "string",
  "requestId": "string"
}

RejectVpcPeeringConnectionResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

ReleaseAddressResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

Remove

The account ID you want to remove from the list of permissions for the volume.

Properties

Name Type Description
Group string The name of the group (all if public).
UserId string The ID of the account.

Schema

{
  "Group": "string",
  "UserId": "string"
}

ReplaceRouteResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

ReplaceRouteTableAssociationResponse

Properties

Name Type Description
newAssociationId string The ID of the new route table association.
requestId string The ID of the request.

Schema

{
  "newAssociationId": "string",
  "requestId": "string"
}

RevokeSecurityGroupEgressResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

RevokeSecurityGroupIngressResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

RunInstancesResponse

Properties

Name Type Description
groupSet [groupSet] One or more security groups.
instancesSet [instancesSet_0] One or more instances.
ownerId string The ID of the account which has reserved the instances.
requestId string The ID of the request.
requesterId string The ID of the requester.
reservationId string Zero or more reservations, giving you information about your request.

Schema

{
  "groupSet": [
    {
      "groupId": "string",
      "groupName": "string"
    }
  ],
  "instancesSet": [
    {
      "amiLaunchIndex": 0,
      "architecture": "string",
      "blockDeviceMapping": [
        {
          "deviceName": "string",
          "ebs": {
            "attachTime": "string",
            "deleteOnTermination": true,
            "status": "string",
            "volumeId": "string"
          }
        }
      ],
      "clientToken": "string",
      "dnsName": "string",
      "ebsOptimized": true,
      "groupSet": [
        {
          "groupId": "string",
          "groupName": "string"
        }
      ],
      "hypervisor": "string",
      "iamInstanceProfile": {
        "arn": "string",
        "id": "string"
      },
      "imageId": "string",
      "instanceId": "string",
      "instanceLifecycle": "string",
      "instanceState": {
        "code": 0,
        "name": "string"
      },
      "instanceType": "string",
      "ipAddress": "string",
      "kernelId": "string",
      "keyName": "string",
      "launchTime": "string",
      "monitoring": {
        "state": "string"
      },
      "networkInterfaceSet": [
        {
          "association": {
            "ipOwnerId": "string",
            "publicDnsName": "string",
            "publicIp": "string"
          },
          "attachment": {
            "attachTime": "string",
            "attachmentId": "string",
            "deleteOnTermination": true,
            "deviceIndex": 0,
            "status": "string"
          },
          "description": "string",
          "groupSet": [
            {
              "groupId": "string",
              "groupName": "string"
            }
          ],
          "macAddress": "string",
          "networkInterfaceId": "string",
          "ownerId": "string",
          "privateDnsName": "string",
          "privateIpAddress": "string",
          "privateIpAddressesSet": [
            {
              "association": {
                "ipOwnerId": "string",
                "publicDnsName": "string",
                "publicIp": "string"
              },
              "primary": true,
              "privateDnsName": "string",
              "privateIpAddress": "string"
            }
          ],
          "sourceDestCheck": true,
          "status": "string",
          "subnetId": "string",
          "vpcId": "string"
        }
      ],
      "placement": {
        "availabilityZone": "string",
        "groupName": "string",
        "tenancy": "string"
      },
      "platform": "string",
      "privateDnsName": "string",
      "privateIpAddress": "string",
      "productCodes": [
        {
          "productCode": "string",
          "type": "string"
        }
      ],
      "ramdiskId": "string",
      "reason": "string",
      "rootDeviceName": "string",
      "rootDeviceType": "string",
      "sourceDestCheck": true,
      "spotInstanceRequestId": "string",
      "sriovNetSupport": "string",
      "stateReason": {
        "code": "string",
        "message": "string"
      },
      "subnetId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "virtualizationType": "string",
      "vpcId": "string"
    }
  ],
  "ownerId": "string",
  "requestId": "string",
  "requesterId": "string",
  "reservationId": "string"
}

SourceDestCheck_0

(VPC only) If true, the source/destination check is enabled. If false, it is disabled. This value must be false for a NAT instance to perform Network Address Translation (NAT) in a VPC.

Properties

Name Type Description
Value boolean A boolean value (true or false) that can be used when the resource is of boolean type.

Schema

{
  "Value": true
}

SourceDestCheck_1

(VPC only) If true, the source/destination check is enabled. If false, it is disabled. This value must be false for a NAT instance to perform Network Address Translation (NAT) in a VPC.

Properties

Name Type Description
value boolean A boolean value (true or false) that can be used when the resource is of boolean type.

Schema

{
  "value": true
}

StartInstancesResponse

Properties

Name Type Description
instancesSet [instancesSet_1] Information about the started instances.
requestId string The ID of the request.

Schema

{
  "instancesSet": [
    {
      "currentState": {
        "code": 0,
        "name": "string"
      },
      "instanceId": "string",
      "previousState": {
        "code": 0,
        "name": "string"
      }
    }
  ],
  "requestId": "string"
}

StopInstancesResponse

Properties

Name Type Description
instancesSet [instancesSet_1] Information about one or more stopped instances.
requestId string The ID of the request.

Schema

{
  "instancesSet": [
    {
      "currentState": {
        "code": 0,
        "name": "string"
      },
      "instanceId": "string",
      "previousState": {
        "code": 0,
        "name": "string"
      }
    }
  ],
  "requestId": "string"
}

Tag

One or more tags you want to add to the specified resources.
Example for an instance:
osc-cli fcu CreateTags \
  --ResourceId i-xxxxxxxx \
  --Tag.1.Key "AAAA" --Tag.1.Value "BBBB" \
  --Tag.2.Key "CCCC" --Tag.2.Value "DDDD"

Properties

Name Type Description
Key string The key of the tag, with a minimum of 1 character.
Value string The value of the tag, between 0 and 255 characters.

Schema

{
  "Key": "string",
  "Value": "string"
}

tagSet

One or more tags associated with the OMI export task.

Properties

Name Type Description
key string The key of the tag, with a minimum of 1 character.
value string The value of the tag, between 0 and 255 characters.

Schema

{
  "key": "string",
  "value": "string"
}

TerminateInstancesResponse

Properties

Name Type Description
instancesSet [instancesSet_1] Information about one or more terminated instances.
requestId string The ID of the request.

Schema

{
  "instancesSet": [
    {
      "currentState": {
        "code": 0,
        "name": "string"
      },
      "instanceId": "string",
      "previousState": {
        "code": 0,
        "name": "string"
      }
    }
  ],
  "requestId": "string"
}

UnassignPrivateIpAddressesResponse

Properties

Name Type Description
requestId string The ID of the request.
return boolean Always true when the request succeeds.

Schema

{
  "requestId": "string",
  "return": true
}

UserData_0

The Base64-encoded MIME user data, limited to 500 kibibytes (KiB).

Properties

Name Type Description
Value string The value to use for the resource attribute.

Schema

{
  "Value": "string"
}

UserData_1

The Base64-encoded MIME user data.

Properties

Name Type Description
value string The value specified for the resource attribute.

Schema

{
  "value": "string"
}

accepterVpcInfo

Information about the peer VPC of the VPC peering connection.

Properties

Name Type Description
cidrBlock string The CIDR block of the VPC.
ownerId string The account ID of the owner of the VPC.
vpcId string The ID of the VPC.

Schema

{
  "cidrBlock": "string",
  "ownerId": "string",
  "vpcId": "string"
}

addressesSet

Information about one or more External IPs.

Properties

Name Type Description
allocationId string The ID of the address allocation for use with a VPC.
associationId string The ID of the address association with an instance in a VPC.
domain string Indicates whether the External IP is for use with instances in the public Cloud or in a VPC.
instanceId string The ID of the instance the address is associated with.
networkInterfaceId string The ID of the network interface.
networkInterfaceOwnerId string The account ID of the owner of the network interface.
privateIpAddress string The private IP associated with the External IP.
publicIp string The External IP.

Schema

{
  "allocationId": "string",
  "associationId": "string",
  "domain": "string",
  "instanceId": "string",
  "networkInterfaceId": "string",
  "networkInterfaceOwnerId": "string",
  "privateIpAddress": "string",
  "publicIp": "string"
}

aksk

The access key and secret key of the OOS account used to access the bucket.

Properties

Name Type Description
AccessKey string The access key of the OOS account that enables you to access the bucket.
SecretKey string The secret key of the OOS account that enables you to access the bucket.

Schema

{
  "AccessKey": "string",
  "SecretKey": "string"
}

associationSet

One or more associations between the route table and the subnets.

Properties

Name Type Description
main boolean If true, the route table is the main one.
routeTableAssociationId string The ID of the association between a route table and a subnet.
routeTableId string The ID of the route table.
subnetId string The ID of the subnet.

Schema

{
  "main": true,
  "routeTableAssociationId": "string",
  "routeTableId": "string",
  "subnetId": "string"
}

association_0

Information about the association between the FNI and an EIP.

Properties

Name Type Description
allocationId string The allocation ID returned when you allocated the EIP to your account.
associationId string The association ID returned when the FNI was associated with an EIP.
ipOwnerId string The account ID of the owner of the EIP associated with the FNI.
publicDnsName string The public DNS name associated with the EIP.
publicIp string The EIP associated with the FNI.

Schema

{
  "allocationId": "string",
  "associationId": "string",
  "ipOwnerId": "string",
  "publicDnsName": "string",
  "publicIp": "string"
}

association_1

Information about an External IP associated with the interface.

Properties

Name Type Description
ipOwnerId string The account ID of the owner of the External IP.
publicDnsName string The name of the public DNS.
publicIp string The External IP (EIP) associated with the network interface.

Schema

{
  "ipOwnerId": "string",
  "publicDnsName": "string",
  "publicIp": "string"
}

attachmentSet_0

Information about the attachment.

Properties

Name Type Description
attachTime string The time at which the attachment was initiated.
deleteOnTermination boolean If true, the volume is deleted when terminating the instance. If false, the volume is not deleted when terminating the instance.
device string The name of the device.
instanceId string The ID of the instance.
status string The attachment state of the volume (attaching | detaching | attached | detached).
volumeId string The ID of the volume.

Schema

{
  "attachTime": "string",
  "deleteOnTermination": true,
  "device": "string",
  "instanceId": "string",
  "status": "string",
  "volumeId": "string"
}

attachmentSet_1

One or more VPCs attached to the Internet gateway.

Properties

Name Type Description
state string The state of the attachment (always available).
vpcId string The ID of the VPC.

Schema

{
  "state": "string",
  "vpcId": "string"
}

attachment_0

Information about the attachment.

Properties

Name Type Description
state string The current state of the attachment (attaching | attached | detaching | detached).
vpcId string The ID of the Virtual Private Cloud (VPC).

Schema

{
  "state": "string",
  "vpcId": "string"
}

attachment_1

Information about the FNI attachment.

Properties

Name Type Description
attachTime string The time at which the FNI was attached to an instance.
attachmentId string The attachment ID of the FNI.
deleteOnTermination boolean If true, the FNI is deleted when terminating the instance. If false, it is only detached.
deviceIndex integer The device index used for the FNI attachment.
instanceId string The ID of the instance the FNI is attached to.
instanceOwnerId string The account ID of the owner of the instance the FNI is attached to.
status string The state of the attachment.

Schema

{
  "attachTime": "string",
  "attachmentId": "string",
  "deleteOnTermination": true,
  "deviceIndex": 0,
  "instanceId": "string",
  "instanceOwnerId": "string",
  "status": "string"
}

attachment_2

The attachment of the network interface.

Properties

Name Type Description
attachTime string The time at which the attachment was initiated.
attachmentId string The ID of the network interface attachment.
deleteOnTermination boolean If true, the network interface is deleted when the instance is terminated.
deviceIndex integer The index of the instance device for the attachment.
status string The state of the netowrk interface (attaching | attached | detaching | detached).

Schema

{
  "attachTime": "string",
  "attachmentId": "string",
  "deleteOnTermination": true,
  "deviceIndex": 0,
  "status": "string"
}

availabilityZoneInfo

Information about the Availability Zones.

Properties

Name Type Description
regionName string The name of the Region containing the Availability Zone.
zoneName string The name of the Availability Zone.
zoneState string The state of the Availability Zone.

Schema

{
  "regionName": "string",
  "zoneName": "string",
  "zoneState": "string"
}

currentState

The current state of the instance.

Properties

Name Type Description
code integer The code of the state of the instance: -1 (quarantine), 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped).
name string The state of the instance (pending | running | stopping | stopped | shutting-down | terminated | quarantine).

Schema

{
  "code": 0,
  "name": "string"
}

customerGateway

Information about the newly created customer gateway.

Properties

Name Type Description
bgpAsn integer (int64) The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your customer gateway through the Internet.
customerGatewayId string The ID of the customer gateway.
ipAddress string The public IPv4 address of the customer gateway (must be a fixed address into a NATed network).
state string The state of the customer gateway (pending | available | deleting | deleted).
tagSet [tagSet_0] One or more tags associated with the customer gateway.
type string The type of communication tunnel used by the customer gateway (only ipsec.1 is supported).

Schema

{
  "bgpAsn": 0,
  "customerGatewayId": "string",
  "ipAddress": "string",
  "state": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "type": "string"
}

customerGatewaySet

Information about one or more customer gateways.

Properties

Name Type Description
bgpAsn integer (int64) The Autonomous System Number (ASN) used by the Border Gateway Protocol (BGP) to find the path to your customer gateway through the Internet.
customerGatewayId string The ID of the customer gateway.
ipAddress string The public IPv4 address of the customer gateway (must be a fixed address into a NATed network).
state string The state of the customer gateway (pending | available | deleting | deleted).
tagSet [tagSet_0] One or more tags associated with the customer gateway.
type string The type of communication tunnel used by the customer gateway (only ipsec.1 is supported).

Schema

{
  "bgpAsn": 0,
  "customerGatewayId": "string",
  "ipAddress": "string",
  "state": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "type": "string"
}

dhcpConfigurationSet

One or more DHCP options in the set.

Properties

Name Type Description
key string The name of an option in the DHCP configuration.
valueSet [valueSet] The value for the option in the DHCP configuration.

Schema

{
  "key": "string",
  "valueSet": [
    {
      "value": "string"
    }
  ]
}

dhcpOptions

A set of DHCP options.

Properties

Name Type Description
dhcpConfigurationSet [dhcpConfigurationSet] One or more DHCP options in the set.
dhcpOptionsId string The ID of the DHCP options set.
tagSet [tagSet_0] One or more tags associated with the DHCP options set.

Schema

{
  "dhcpConfigurationSet": [
    {
      "key": "string",
      "valueSet": [
        {
          "value": "string"
        }
      ]
    }
  ],
  "dhcpOptionsId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ]
}

dhcpOptionsSet

Information about one or more DHCP options sets.

Properties

Name Type Description
dhcpConfigurationSet [dhcpConfigurationSet] One or more DHCP options in the set.
dhcpOptionsId string The ID of the DHCP options set.
tagSet [tagSet_0] One or more tags associated with the DHCP options set.

Schema

{
  "dhcpConfigurationSet": [
    {
      "key": "string",
      "valueSet": [
        {
          "value": "string"
        }
      ]
    }
  ],
  "dhcpOptionsId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ]
}

ebs

One or more parameters used to automatically set up volumes when the instance is launched.

Properties

Name Type Description
attachTime string The time at which the attachment was initiated.
deleteOnTermination boolean If true, the volume is deleted when terminating the instance. If false, the volume is not deleted when terminating the instance.
status string The attachment state (attaching | attached | detaching | detached).
volumeId string The ID of the volume.

Schema

{
  "attachTime": "string",
  "deleteOnTermination": true,
  "status": "string",
  "volumeId": "string"
}

error

Information about the error.

Properties

Name Type Description
code string The error code.
message string The error message corresponding to the error code.

Schema

{
  "code": "string",
  "message": "string"
}

eventsSet

One or more scheduled events associated with the instance.

Properties

Name Type Description
code string The event code (system-reboot | system-maintenance).
description string A description of the event.
notAfter string The latest scheduled end time for the event.
notBefore string The earliest scheduled start time for the event.

Schema

{
  "code": "string",
  "description": "string",
  "notAfter": "string",
  "notBefore": "string"
}

groupSet

One or more security groups for the instance.

Properties

Name Type Description
groupId string The ID of the security group.
groupName string The name of the security group.

Schema

{
  "groupId": "string",
  "groupName": "string"
}

iamInstanceProfile

The EIM instance profile associated with the instance.

Properties

Name Type Description
arn string The unique identifier of the ressource (between 20 and 2048 characters).
id string The ID of the instance profile.

Schema

{
  "arn": "string",
  "id": "string"
}

imageExport

Information about the OMI you want to export.

Properties

Name Type Description
imageId string The ID of the OMI to be exported.

Schema

{
  "imageId": "string"
}

imageExportTask

Information about one or more image export tasks.

Properties

Name Type Description
exportToOsu exportToOsu_2 Information about the OMI export task.
imageExport imageExport Information about the OMI you want to export.
imageExportTaskId string The ID of the OMI export task.
state string The state of the OMI export task (pending/queued | pending | completed | failed | cancelled).
statusMessage string If the OMI export task fails, an error message appears.
tagSet [tagSet_0] One or more tags associated with the OMI export task.

Schema

{
  "exportToOsu": {
    "diskImageFormat": "string",
    "osuAkSk": {
      "AccessKey": "string",
      "SecretKey": "string"
    },
    "osuBucket": "string",
    "osuManifestUrl": "string",
    "osuPrefix": "string"
  },
  "imageExport": {
    "imageId": "string"
  },
  "imageExportTaskId": "string",
  "state": "string",
  "statusMessage": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ]
}

imagesSet

Information about one or more OMIs.

Properties

Name Type Description
architecture string The architecture of the OMI.
blockDeviceMapping [BlockDeviceMapping_2] One or more block device mapping entries.
description string The description of the OMI, provided when it was created.
hypervisor string The hypervisor type of the instance (always xen).
imageId string The ID of OUTSCALE machine image (OMI).
imageLocation string The location of the bucket where the OMI files are stored.
imageOwnerAlias string The account alias of the owner of the OMI.
imageOwnerId string The account ID of the owner of the OMI.
imageState string The current state of the OMI (pending | available | failed).
imageType string The type of the OMI.
isPublic boolean If true, the OMI has public launch permissions.
name string The name of the OMI, provided when it was created.
platform string The value is Windows for Windows OMIs, or blank otherwise.
productCodes [productCodes] One or more product codes associated with the OMI.
rootDeviceName string The name of the device to which the root device is plugged in (for example, /dev/sda1).
rootDeviceType string The type of root device used by the OMI.
stateReason stateReason The reason for the OMI state change.
tagSet [tagSet_0] One or more tags associated with the OMI.
virtualizationType string The virtualization type.

Schema

{
  "architecture": "string",
  "blockDeviceMapping": [
    {
      "deviceName": "string",
      "ebs": {
        "deleteOnTermination": true,
        "iops": 0,
        "snapshotId": "string",
        "volumeSize": 0,
        "volumeType": "string"
      },
      "noDevice": "string",
      "virtualName": "string"
    }
  ],
  "description": "string",
  "hypervisor": "string",
  "imageId": "string",
  "imageLocation": "string",
  "imageOwnerAlias": "string",
  "imageOwnerId": "string",
  "imageState": "string",
  "imageType": "string",
  "isPublic": true,
  "name": "string",
  "platform": "string",
  "productCodes": [
    {
      "productCode": "string",
      "type": "string"
    }
  ],
  "rootDeviceName": "string",
  "rootDeviceType": "string",
  "stateReason": {
    "code": "string",
    "message": "string"
  },
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "virtualizationType": "string"
}

instanceState

The state of the instance.

Properties

Name Type Description
code integer The code of the state of the instance: -1 (quarantine), 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped).
name string The state of the instance (pending | running | stopping | stopped | shutting-down | terminated | quarantine).

Schema

{
  "code": 0,
  "name": "string"
}

instanceStatus

Impaired functionality that stems from issues internal to the instance (for example, impaired reachability).

Properties

Name Type Description
details [details] The system instance health or application instance health.
status string The state of the instance.

Schema

{
  "details": [
    {
      "impairedSince": "string",
      "name": "string",
      "status": "string"
    }
  ],
  "status": "string"
}

instanceStatusSet

One or more instance status descriptions.

Properties

Name Type Description
availabilityZone string The Availability Zone in which the instance is located.
eventsSet [eventsSet] One or more scheduled events associated with the instance.
instanceId string The ID of the instance.
instanceState instanceState The state of the instance.
instanceStatus instanceStatus Impaired functionality that stems from issues internal to the instance (for example, impaired reachability).
systemStatus systemStatus Impaired functionality that stems from issues related to the systems supporting an instance (for example, hardware failures or network connectivity problems).

Schema

{
  "availabilityZone": "string",
  "eventsSet": [
    {
      "code": "string",
      "description": "string",
      "notAfter": "string",
      "notBefore": "string"
    }
  ],
  "instanceId": "string",
  "instanceState": {
    "code": 0,
    "name": "string"
  },
  "instanceStatus": {
    "details": [
      {
        "impairedSince": "string",
        "name": "string",
        "status": "string"
      }
    ],
    "status": "string"
  },
  "systemStatus": {
    "details": [
      {
        "impairedSince": "string",
        "name": "string",
        "status": "string"
      }
    ],
    "status": "string"
  }
}

instanceTypeSet

Information about one or more instance types.

Properties

Name Type Description
ebsOptimizedAvailable boolean This parameter is not available. It is present in our API for the sake of historical compatiblity with AWS.
ephemeralsType string The type of ephemeral storage disk.
eth integer The number of Ethernet interfaces available.
gpu integer The number of GPUs available.
maxIpAddresses integer The maximum number of private IPs per network interface.
memory integer The amount of memory, in bytes.
name string The name of the instance type.
storageCount integer The maximum number of ephemeral storage disks.
storageSize integer The size of one ephemeral storage disk, in bytes.
vcpu integer The number of vCPUs.

Schema

{
  "ebsOptimizedAvailable": true,
  "ephemeralsType": "string",
  "eth": 0,
  "gpu": 0,
  "maxIpAddresses": 0,
  "memory": 0,
  "name": "string",
  "storageCount": 0,
  "storageSize": 0,
  "vcpu": 0
}

instancesSet_0

One or more instances.

Properties

Name Type Description
amiLaunchIndex integer The launch index of the OMI.
architecture string The architecture of the image.
blockDeviceMapping [BlockDeviceMapping_3] One or more entries of block device mapping.
clientToken string A unique identifier which enables you to manage the idempotency.
dnsName string The name of the public DNS assigned to the instance.
ebsOptimized boolean This parameter is not available. It is present in our API for the sake of historical compatiblity with AWS.
groupSet [groupSet] One or more security groups for the instance.
hypervisor string The hypervisor type of the instance.
iamInstanceProfile iamInstanceProfile The EIM instance profile associated with the instance.
imageId string The ID of the OMI.
instanceId string The ID of the instance.
instanceLifecycle string Indicates whether it is a spot instance.
instanceState instanceState The state of the instance.
instanceType string The type of instance. For more information, see VM Types.
ipAddress string The External IP (EIP) assigned to the instance.
kernelId string The ID of the kernel (always null).
keyName string The name of the keypair.
launchTime string The time at which the instance was launched.
monitoring monitoring The monitoring information for the instance.
networkInterfaceSet [networkInterfaceSet_0] In a VPC, one or more network interfaces for the instance.
placement Placement_1 A specific placement where you want to create the instances.
platform string Indicates whether it is a Windows instance.
privateDnsName string The name of the private DNS assigned to the instance.
privateIpAddress string The private IP assigned to the instance.
productCodes [productCodes] The product codes attached to the instance.
ramdiskId string The ID of the associated RAM disk.
reason string Information about the latest state change.
rootDeviceName string The name of the root device.
rootDeviceType string The type of root device used by the OMI.
sourceDestCheck boolean If true in a VPC, the check to perform NAT is enabled.
spotInstanceRequestId string The ID of the spot instance request.
sriovNetSupport string If true, the enhanced networking is enabled.
stateReason stateReason The reason for the OMI state change.
subnetId string In a VPC, the ID of the subnet in which you want to launch the instance.
tagSet [tagSet_0] One or more tags associated with the instance.
virtualizationType string The virtualization type.
vpcId string The ID of the VPC in which the instance is launched.

Schema

{
  "amiLaunchIndex": 0,
  "architecture": "string",
  "blockDeviceMapping": [
    {
      "deviceName": "string",
      "ebs": {
        "attachTime": "string",
        "deleteOnTermination": true,
        "status": "string",
        "volumeId": "string"
      }
    }
  ],
  "clientToken": "string",
  "dnsName": "string",
  "ebsOptimized": true,
  "groupSet": [
    {
      "groupId": "string",
      "groupName": "string"
    }
  ],
  "hypervisor": "string",
  "iamInstanceProfile": {
    "arn": "string",
    "id": "string"
  },
  "imageId": "string",
  "instanceId": "string",
  "instanceLifecycle": "string",
  "instanceState": {
    "code": 0,
    "name": "string"
  },
  "instanceType": "string",
  "ipAddress": "string",
  "kernelId": "string",
  "keyName": "string",
  "launchTime": "string",
  "monitoring": {
    "state": "string"
  },
  "networkInterfaceSet": [
    {
      "association": {
        "ipOwnerId": "string",
        "publicDnsName": "string",
        "publicIp": "string"
      },
      "attachment": {
        "attachTime": "string",
        "attachmentId": "string",
        "deleteOnTermination": true,
        "deviceIndex": 0,
        "status": "string"
      },
      "description": "string",
      "groupSet": [
        {
          "groupId": "string",
          "groupName": "string"
        }
      ],
      "macAddress": "string",
      "networkInterfaceId": "string",
      "ownerId": "string",
      "privateDnsName": "string",
      "privateIpAddress": "string",
      "privateIpAddressesSet": [
        {
          "association": {
            "ipOwnerId": "string",
            "publicDnsName": "string",
            "publicIp": "string"
          },
          "primary": true,
          "privateDnsName": "string",
          "privateIpAddress": "string"
        }
      ],
      "sourceDestCheck": true,
      "status": "string",
      "subnetId": "string",
      "vpcId": "string"
    }
  ],
  "placement": {
    "availabilityZone": "string",
    "groupName": "string",
    "tenancy": "string"
  },
  "platform": "string",
  "privateDnsName": "string",
  "privateIpAddress": "string",
  "productCodes": [
    {
      "productCode": "string",
      "type": "string"
    }
  ],
  "ramdiskId": "string",
  "reason": "string",
  "rootDeviceName": "string",
  "rootDeviceType": "string",
  "sourceDestCheck": true,
  "spotInstanceRequestId": "string",
  "sriovNetSupport": "string",
  "stateReason": {
    "code": "string",
    "message": "string"
  },
  "subnetId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "virtualizationType": "string",
  "vpcId": "string"
}

instancesSet_1

One or more instances.

Properties

Name Type Description
currentState currentState The current state of the instance.
instanceId string The ID of the instance.
previousState previousState The previous state of the instance.

Schema

{
  "currentState": {
    "code": 0,
    "name": "string"
  },
  "instanceId": "string",
  "previousState": {
    "code": 0,
    "name": "string"
  }
}

internetGatewaySet

Information about the newly created Internet gateway.

Properties

Name Type Description
attachmentSet [attachmentSet_1] One or more VPCs attached to the Internet gateway.
internetGatewayId string The ID of the Internet gateway.
tagSet [tagSet_0] One or more tags associated with the Internet gateway.

Schema

{
  "attachmentSet": [
    {
      "state": "string",
      "vpcId": "string"
    }
  ],
  "internetGatewayId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ]
}

ipPermissionsEgress

The outbound rules associated with the security group.

Properties

Name Type Description
fromPort integer The beginning of the port range for TCP and UDP protocols, or an ICMP type number.
groups [groups_2] One or more security groups and account ID pairs.
ipProtocol string The IP protocol name (tcp, udp, icmp, or -1 for all protocols). By default, -1. In a VPC, this can also be an IP protocol number. For more information, see the IANA.org website.
ipRanges [ipRanges_1] One or more IP ranges.
prefixListIds [PrefixListIds_1] One or more prefix list IDs to allow traffic from a VPC to access the corresponding OUTSCALE services. For more information, see DescribePrefixLists.
toPort integer The end of the port range for TCP and UDP protocols, or an ICMP code number.

Schema

{
  "fromPort": 0,
  "groups": [
    {
      "groupId": "string",
      "groupName": "string",
      "userId": "string"
    }
  ],
  "ipProtocol": "string",
  "ipRanges": [
    {
      "cidrIp": "string"
    }
  ],
  "prefixListIds": [
    {
      "prefixListId": "string"
    }
  ],
  "toPort": 0
}

keySet

Information about one or more keypairs.

Properties

Name Type Description
keyFingerprint string The MD5 public key fingerprint as specified in section 4 of RFC 4716.
keyName string The name of the keypair.

Schema

{
  "keyFingerprint": "string",
  "keyName": "string"
}

launchPermission_1

One or more launch permissions.

Properties

Name Type Description
group string The name of the group (all if public).
userId string The ID of the account.

Schema

{
  "group": "string",
  "userId": "string"
}

monitoring

The monitoring information for the instance.

Properties

Name Type Description
state string The state of detail monitoring (enabled | disabled | disabling | pending).

Schema

{
  "state": "string"
}

natGateway

Information about the newly created NAT gateway.

Properties

Name Type Description
createTime string The date and time when the NAT gateway was created.
deleteTime string The date and time when the NAT gateway was deleted, if applicable.
natGatewayAddressSet [natGatewayAddressSet] Information about the External IP (EIP) associated with the NAT gateway.
natGatewayId string The ID of the NAT gateway.
state string The state of the NAT gateway (pending | available | deleting | deleted).
subnetId string The ID of the public subnet in which the NAT gateway is.
tagSet [tagSet_0] One or more tags associated with the NAT gateway.
vpcId string The ID of the VPC in which the NAT gateway is.

Schema

{
  "createTime": "string",
  "deleteTime": "string",
  "natGatewayAddressSet": [
    {
      "allocationId": "string",
      "networkInterfaceId": "string",
      "privateIp": "string",
      "publicIp": "string"
    }
  ],
  "natGatewayId": "string",
  "state": "string",
  "subnetId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcId": "string"
}

natGatewayAddressSet

Information about the External IP (EIP) associated with the NAT gateway.

Properties

Name Type Description
allocationId string The allocation ID of the External IP (EIP) associated with the NAT gateway.
networkInterfaceId string The ID of the network interface associated with the NAT gateway.
privateIp string The private IP associated with the EIP.
publicIp string The EIP associated with the NAT gateway.

Schema

{
  "allocationId": "string",
  "networkInterfaceId": "string",
  "privateIp": "string",
  "publicIp": "string"
}

natGatewaySet

Information about one or more NAT gateways.

Properties

Name Type Description
createTime string The date and time when the NAT gateway was created.
deleteTime string The date and time when the NAT gateway was deleted, if applicable.
natGatewayAddressSet [natGatewayAddressSet] Information about the External IP (EIP) associated with the NAT gateway.
natGatewayId string The ID of the NAT gateway.
state string The state of the NAT gateway (pending | available | deleting | deleted).
subnetId string The ID of the public subnet in which the NAT gateway is.
tagSet [tagSet_0] One or more tags associated with the NAT gateway.
vpcId string The ID of the VPC in which the NAT gateway is.

Schema

{
  "createTime": "string",
  "deleteTime": "string",
  "natGatewayAddressSet": [
    {
      "allocationId": "string",
      "networkInterfaceId": "string",
      "privateIp": "string",
      "publicIp": "string"
    }
  ],
  "natGatewayId": "string",
  "state": "string",
  "subnetId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcId": "string"
}

networkInterfaceSet_0

In a VPC, one or more network interfaces for the instance.

Properties

Name Type Description
association association_1 Information about an External IP associated with the interface.
attachment attachment_2 The attachment of the network interface.
description string The description of the network interface.
groupSet [groupSet] One or more security groups for the FNI.
macAddress string The MAC address of the interface.
networkInterfaceId string The ID of the network interface.
ownerId string The account ID of the owner of the instance reservation.
privateDnsName string The name of the private DNS assigned to the instance.
privateIpAddress string The private IP assigned to the instance.
privateIpAddressesSet [privateIpAddressesSet_1] The private IPs assigned to the network interface.
sourceDestCheck boolean If true in a VPC, the check to perform NAT is enabled.
status string The state of the interface.
subnetId string In a VPC, the ID of the subnet in which to launch the instance.
vpcId string The ID of the VPC in which the instance is launched.

Schema

{
  "association": {
    "ipOwnerId": "string",
    "publicDnsName": "string",
    "publicIp": "string"
  },
  "attachment": {
    "attachTime": "string",
    "attachmentId": "string",
    "deleteOnTermination": true,
    "deviceIndex": 0,
    "status": "string"
  },
  "description": "string",
  "groupSet": [
    {
      "groupId": "string",
      "groupName": "string"
    }
  ],
  "macAddress": "string",
  "networkInterfaceId": "string",
  "ownerId": "string",
  "privateDnsName": "string",
  "privateIpAddress": "string",
  "privateIpAddressesSet": [
    {
      "association": {
        "ipOwnerId": "string",
        "publicDnsName": "string",
        "publicIp": "string"
      },
      "primary": true,
      "privateDnsName": "string",
      "privateIpAddress": "string"
    }
  ],
  "sourceDestCheck": true,
  "status": "string",
  "subnetId": "string",
  "vpcId": "string"
}

networkInterfaceSet_1

Information about the FNIs.

Properties

Name Type Description
association association_0 Information about the association between the FNI and an EIP.
attachment attachment_1 Information about the FNI attachment.
availabilityZone string The AZ where the FNI is located.
description string The description of the FNI.
groupSet [groupSet] One or more security groups for the FNI.
macAddress string The Media Access Control (MAC) address of the FNI.
networkInterfaceId string The ID of the FNI.
ownerId string The account ID of the FNI owner.
privateDnsName string The private DNS name associated with the primary private IP of the FNI.
privateIpAddress string The primary private IP of the FNI.
privateIpAddressesSet [privateIpAddressesSet_0] Information about the EIP and the private IPs assigned to the FNI.
sourceDestCheck boolean If true, the traffic to or from the instance is validated. If false, it is not.
status string The state of the FNI.
subnetId string The ID of the subnet where the FNI is located.
tagSet [tagSet_0] One or more tags associated with the FNI.
vpcId string The ID of the VPC where the FNI is located.

Schema

{
  "association": {
    "allocationId": "string",
    "associationId": "string",
    "ipOwnerId": "string",
    "publicDnsName": "string",
    "publicIp": "string"
  },
  "attachment": {
    "attachTime": "string",
    "attachmentId": "string",
    "deleteOnTermination": true,
    "deviceIndex": 0,
    "instanceId": "string",
    "instanceOwnerId": "string",
    "status": "string"
  },
  "availabilityZone": "string",
  "description": "string",
  "groupSet": [
    {
      "groupId": "string",
      "groupName": "string"
    }
  ],
  "macAddress": "string",
  "networkInterfaceId": "string",
  "ownerId": "string",
  "privateDnsName": "string",
  "privateIpAddress": "string",
  "privateIpAddressesSet": [
    {
      "association": {
        "allocationId": "string",
        "associationId": "string",
        "ipOwnerId": "string",
        "publicDnsName": "string",
        "publicIp": "string"
      },
      "primary": true,
      "privateDnsName": "string",
      "privateIpAddress": "string"
    }
  ],
  "sourceDestCheck": true,
  "status": "string",
  "subnetId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcId": "string"
}

prefixListSet

Information about one or more prefix lists.

Properties

Name Type Description
cidrSet [string] The list of network prefixes used by the service, in CIDR notation.
prefixListId string The ID of the prefix list.
prefixListName string The name of the prefix list, which identifies the OUTSCALE service it is associated with.

Schema

{
  "cidrSet": [
    "string"
  ],
  "prefixListId": "string",
  "prefixListName": "string"
}

previousState

The previous state of the instance.

Properties

Name Type Description
code integer The code of the state of the instance: -1 (quarantine), 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped).
name string The state of the instance (pending | running | stopping | stopped | shutting-down | terminated | quarantine).

Schema

{
  "code": 0,
  "name": "string"
}

privateIpAddressesSet_0

Information about the EIP and the private IPs assigned to the FNI.

Properties

Name Type Description
association association_0 Information about the association between the FNI and an EIP.
primary boolean If true, the following private IP is the primary one. If false, it is a secondary one.
privateDnsName string The private DNS name associated with the primary private IP of the FNI.
privateIpAddress string A private IP assigned to the FNI.

Schema

{
  "association": {
    "allocationId": "string",
    "associationId": "string",
    "ipOwnerId": "string",
    "publicDnsName": "string",
    "publicIp": "string"
  },
  "primary": true,
  "privateDnsName": "string",
  "privateIpAddress": "string"
}

privateIpAddressesSet_1

The private IPs assigned to the network interface.

Properties

Name Type Description
association association_1 Information about an External IP associated with the interface.
primary boolean If true, the IP is the primary address of the network interface.
privateDnsName string The name of the private DNS.
privateIpAddress string The private IP of the network interface.

Schema

{
  "association": {
    "ipOwnerId": "string",
    "publicDnsName": "string",
    "publicIp": "string"
  },
  "primary": true,
  "privateDnsName": "string",
  "privateIpAddress": "string"
}

productCodes

Information about one or more product codes.

Properties

Name Type Description
productCode string The product code associated with the OMI.
type string The type of the product code associated with the OMI.

Schema

{
  "productCode": "string",
  "type": "string"
}

productType

Information about the product type of the specified OMI or snapshot.

Properties

Name Type Description
description string The description of the product type.
productTypeId string The ID of the product type.
vendor string The vendor of the product type.

Schema

{
  "description": "string",
  "productTypeId": "string",
  "vendor": "string"
}

productTypeSet

Information about one or more product types.

Properties

Name Type Description
description string The description of the product type.
productTypeId string The ID of the product type.
vendor string The vendor of the product type.

Schema

{
  "description": "string",
  "productTypeId": "string",
  "vendor": "string"
}

propagatingVgwSet

Information about virtual private gateways propagating routes.

Properties

Name Type Description
gatewayId string The ID of the virtual private gateway.

Schema

{
  "gatewayId": "string"
}

ramdisk

The ID of the RAM disk.

Properties

Name Type Description
Value string The value specified for the resource attribute.

Schema

{
  "Value": "string"
}

referenceQuotaSet

One or more reference quotas.

Properties

Name Type Description
quotaSet [quotaSet] One or more quotas associated with the account.
reference string The resource ID if it is a resource-specific quota, global if it is not.

Schema

{
  "quotaSet": [],
  "reference": "string"
}

regionInfo

Information about one or more Regions.

Properties

Name Type Description
regionEndpoint string The hostname of the gateway to access the Region.
regionName string The administrative name of the Region.

Schema

{
  "regionEndpoint": "string",
  "regionName": "string"
}

requesterVpcInfo

Information about the source VPC of the VPC peering connection.

Properties

Name Type Description
cidrBlock string The CIDR block of the VPC.
ownerId string The account ID of the owner of the VPC.
vpcId string The ID of the VPC.

Schema

{
  "cidrBlock": "string",
  "ownerId": "string",
  "vpcId": "string"
}

reservationSet

Zero or more reservations.

Properties

Name Type Description
groupSet [groupSet] One or more security groups.
instancesSet [instancesSet_0] One or more instances.
ownerId string The account ID of the owner of the reservation.
requesterId string The ID of the requester that launched the instances on your behalf.
reservationId string The ID of the reservation.

Schema

{
  "groupSet": [
    {
      "groupId": "string",
      "groupName": "string"
    }
  ],
  "instancesSet": [
    {
      "amiLaunchIndex": 0,
      "architecture": "string",
      "blockDeviceMapping": [
        {
          "deviceName": "string",
          "ebs": {
            "attachTime": "string",
            "deleteOnTermination": true,
            "status": "string",
            "volumeId": "string"
          }
        }
      ],
      "clientToken": "string",
      "dnsName": "string",
      "ebsOptimized": true,
      "groupSet": [
        {
          "groupId": "string",
          "groupName": "string"
        }
      ],
      "hypervisor": "string",
      "iamInstanceProfile": {
        "arn": "string",
        "id": "string"
      },
      "imageId": "string",
      "instanceId": "string",
      "instanceLifecycle": "string",
      "instanceState": {
        "code": 0,
        "name": "string"
      },
      "instanceType": "string",
      "ipAddress": "string",
      "kernelId": "string",
      "keyName": "string",
      "launchTime": "string",
      "monitoring": {
        "state": "string"
      },
      "networkInterfaceSet": [
        {
          "association": {
            "ipOwnerId": "string",
            "publicDnsName": "string",
            "publicIp": "string"
          },
          "attachment": {
            "attachTime": "string",
            "attachmentId": "string",
            "deleteOnTermination": true,
            "deviceIndex": 0,
            "status": "string"
          },
          "description": "string",
          "groupSet": [
            {
              "groupId": "string",
              "groupName": "string"
            }
          ],
          "macAddress": "string",
          "networkInterfaceId": "string",
          "ownerId": "string",
          "privateDnsName": "string",
          "privateIpAddress": "string",
          "privateIpAddressesSet": [
            {
              "association": {
                "ipOwnerId": "string",
                "publicDnsName": "string",
                "publicIp": "string"
              },
              "primary": true,
              "privateDnsName": "string",
              "privateIpAddress": "string"
            }
          ],
          "sourceDestCheck": true,
          "status": "string",
          "subnetId": "string",
          "vpcId": "string"
        }
      ],
      "placement": {
        "availabilityZone": "string",
        "groupName": "string",
        "tenancy": "string"
      },
      "platform": "string",
      "privateDnsName": "string",
      "privateIpAddress": "string",
      "productCodes": [
        {
          "productCode": "string",
          "type": "string"
        }
      ],
      "ramdiskId": "string",
      "reason": "string",
      "rootDeviceName": "string",
      "rootDeviceType": "string",
      "sourceDestCheck": true,
      "spotInstanceRequestId": "string",
      "sriovNetSupport": "string",
      "stateReason": {
        "code": "string",
        "message": "string"
      },
      "subnetId": "string",
      "tagSet": [
        {
          "key": "string",
          "value": "string"
        }
      ],
      "virtualizationType": "string",
      "vpcId": "string"
    }
  ],
  "ownerId": "string",
  "requesterId": "string",
  "reservationId": "string"
}

rootDeviceName

The name of the root device.

Properties

Name Type Description
Value string The value specified for the resource attribute.

Schema

{
  "Value": "string"
}

routeSet

One or more routes in the route table.

Properties

Name Type Description
destinationCidrBlock string The CIDR block used to match the destination.
destinationPrefixListId string The prefix of the OUTSCALE service.
gatewayId string The ID of a gateway attached to the VPC.
instanceId string The ID of a NAT instance in your VPC.
instanceOwnerId string The account ID of the owner of the instance.
networkInterfaceId string The ID of the network interface.
origin string The method used to create the route.
state string The state of the route.
vpcPeeringConnectionId string The ID of the VPC peering connection.

Schema

{
  "destinationCidrBlock": "string",
  "destinationPrefixListId": "string",
  "gatewayId": "string",
  "instanceId": "string",
  "instanceOwnerId": "string",
  "networkInterfaceId": "string",
  "origin": "string",
  "state": "string",
  "vpcPeeringConnectionId": "string"
}

routeTable

Information about the newly created route table.

Properties

Name Type Description
associationSet [associationSet] One or more associations between the route table and the subnets.
propagatingVgwSet [propagatingVgwSet] Information about virtual private gateways propagating routes.
routeSet [routeSet] One or more routes in the route table.
routeTableId string The ID of the route table.
tagSet [tagSet_0] One or more tags associated with the route table.
vpcId string The ID of the VPC.

Schema

{
  "associationSet": [
    {
      "main": true,
      "routeTableAssociationId": "string",
      "routeTableId": "string",
      "subnetId": "string"
    }
  ],
  "propagatingVgwSet": [
    {
      "gatewayId": "string"
    }
  ],
  "routeSet": [
    {
      "destinationCidrBlock": "string",
      "destinationPrefixListId": "string",
      "gatewayId": "string",
      "instanceId": "string",
      "instanceOwnerId": "string",
      "networkInterfaceId": "string",
      "origin": "string",
      "state": "string",
      "vpcPeeringConnectionId": "string"
    }
  ],
  "routeTableId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcId": "string"
}

routeTableSet

Information about one or more route tables.

Properties

Name Type Description
associationSet [associationSet] One or more associations between the route table and the subnets.
propagatingVgwSet [propagatingVgwSet] Information about virtual private gateways propagating routes.
routeSet [routeSet] One or more routes in the route table.
routeTableId string The ID of the route table.
tagSet [tagSet_0] One or more tags associated with the route table.
vpcId string The ID of the VPC.

Schema

{
  "associationSet": [
    {
      "main": true,
      "routeTableAssociationId": "string",
      "routeTableId": "string",
      "subnetId": "string"
    }
  ],
  "propagatingVgwSet": [
    {
      "gatewayId": "string"
    }
  ],
  "routeSet": [
    {
      "destinationCidrBlock": "string",
      "destinationPrefixListId": "string",
      "gatewayId": "string",
      "instanceId": "string",
      "instanceOwnerId": "string",
      "networkInterfaceId": "string",
      "origin": "string",
      "state": "string",
      "vpcPeeringConnectionId": "string"
    }
  ],
  "routeTableId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcId": "string"
}

routes

Information about one or more static routes associated with the VPN connection, if any.

Properties

Name Type Description
destinationCidrBlock string The destination range of IPs of the route corresponding to your local network, in CIDR notation.
source string The type of route (always static).
state string The current state of the static route (pending | available | deleting | deleted).

Schema

{
  "destinationCidrBlock": "string",
  "source": "string",
  "state": "string"
}

securityGroupInfo

Information about one or more security groups.

Properties

Name Type Description
groupDescription string A description of the security group.
groupId string The ID of the security group.
groupName string The name of the security group.
ipPermissions [IpPermissions_1] The inbound rules associated with the security group.
ipPermissionsEgress [ipPermissionsEgress] The outbound rules associated with the security group.
ownerId string The account ID of the owner of the security group.
tagSet [tagSet_0] One or more tags associated with the security group.
vpcId string The ID of the VPC for the security group.

Schema

{
  "groupDescription": "string",
  "groupId": "string",
  "groupName": "string",
  "ipPermissions": [
    {
      "fromPort": 0,
      "groups": [
        {
          "groupId": "string",
          "groupName": "string",
          "userId": "string"
        }
      ],
      "ipProtocol": "string",
      "ipRanges": [
        {
          "cidrIp": "string"
        }
      ],
      "prefixListIds": [
        {
          "prefixListId": "string"
        }
      ],
      "toPort": 0
    }
  ],
  "ipPermissionsEgress": [
    {
      "fromPort": 0,
      "groups": [
        {
          "groupId": "string",
          "groupName": "string",
          "userId": "string"
        }
      ],
      "ipProtocol": "string",
      "ipRanges": [
        {
          "cidrIp": "string"
        }
      ],
      "prefixListIds": [
        {
          "prefixListId": "string"
        }
      ],
      "toPort": 0
    }
  ],
  "ownerId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcId": "string"
}

snapshotExport

Information about the snapshot you want to export.

Properties

Name Type Description
snapshotId string The ID of snapshot to be exported.

Schema

{
  "snapshotId": "string"
}

snapshotExportTask

Information about one or more snapshot export tasks.

Properties

Name Type Description
completion integer The percentage of the task completed.
exportToOsu exportToOsu_3 Information about the snapshot export task.
snapshotExport snapshotExport Information about the snapshot you want to export.
snapshotExportTaskId string The ID of the snapshot export task.
state string The state of the snapshot export task (pending | active | completed | failed).
statusMessage string If the snapshot export task fails, an error message.
tagSet [tagSet_0] One or more tags associated with the snapshot export task.

Schema

{
  "completion": 0,
  "exportToOsu": {
    "diskImageFormat": "string",
    "osuBucket": "string",
    "osuKey": "string",
    "osuPrefix": "string",
    "aksk": {
      "AccessKey": "string",
      "SecretKey": "string"
    }
  },
  "snapshotExport": {
    "snapshotId": "string"
  },
  "snapshotExportTaskId": "string",
  "state": "string",
  "statusMessage": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ]
}

snapshotSet

Information about one or more snapshots.

Properties

Name Type Description
description string The description of the snapshot.
encrypted boolean Indicates whether the snapshot is encrypted or not (always false).
ownerAlias string The account alias of the owner of the snapshot.
ownerId string The account ID of owner of the snapshot.
progress string The progress of the snapshot, as a percentage.
snapshotId string The unique ID of the snapshot.
startTime string The time at which the snapshot was initiated.
status string The state of the snapshot (in-queue | pending | completed | error | deleting).
statusMessage string The error message in case of snapshot copy operation failure.
tagSet [tagSet_0] One or more tags associated with the snapshot.
volumeId string The ID of the volume used to create the snapshot.
volumeSize integer The size of the volume used to create the snapshot, in gibibytes (GiB).

Schema

{
  "description": "string",
  "encrypted": true,
  "ownerAlias": "string",
  "ownerId": "string",
  "progress": "string",
  "snapshotId": "string",
  "startTime": "string",
  "status": "string",
  "statusMessage": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "volumeId": "string",
  "volumeSize": 0
}

stateReason

The reason for the OMI state change.

Properties

Name Type Description
code string The code of the change of state.
message string The message explaining the change of state.

Schema

{
  "code": "string",
  "message": "string"
}

status

The state of the VPC peering connection.

Properties

Name Type Description
code string The state of the VPC peering connection (pending-acceptance | active | rejected | failed | expired | deleted).
message string Additional information about the state of the VPC peering connection.

Schema

{
  "code": "string",
  "message": "string"
}

subnet

Information about the newly created subnet.

Properties

Name Type Description
availabilityZone string The name of the Availability Zone in which the subnet is located.
availableIpAddressCount integer The number of unused IPs in the subnet.
cidrBlock string The CIDR block of the subnet (for example, 10.84.7.0/24).
mapPublicIpOnLaunch boolean Specifies whether an External IP (EIP) is assigned to the instances launched in this subnet.
state string The state of the subnet (pending | available | deleted).
subnetId string The ID of the subnet.
tagSet [tagSet_0] One or more tags associated with the VPC.
vpcId string The ID of the VPC where the subnet is.

Schema

{
  "availabilityZone": "string",
  "availableIpAddressCount": 0,
  "cidrBlock": "string",
  "mapPublicIpOnLaunch": true,
  "state": "string",
  "subnetId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcId": "string"
}

subnetSet

Information about one or more of your subnets.

Properties

Name Type Description
availabilityZone string The name of the Availability Zone in which the subnet is located.
availableIpAddressCount integer The number of unused IPs in the subnet.
cidrBlock string The CIDR block of the subnet (for example, 10.84.7.0/24).
mapPublicIpOnLaunch boolean Specifies whether an External IP (EIP) is assigned to the instances launched in this subnet.
state string The state of the subnet (pending | available | deleted).
subnetId string The ID of the subnet.
tagSet [tagSet_0] One or more tags associated with the VPC.
vpcId string The ID of the VPC where the subnet is.

Schema

{
  "availabilityZone": "string",
  "availableIpAddressCount": 0,
  "cidrBlock": "string",
  "mapPublicIpOnLaunch": true,
  "state": "string",
  "subnetId": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcId": "string"
}

systemStatus

Impaired functionality that stems from issues related to the systems supporting an instance (for example, hardware failures or network connectivity problems).

Properties

Name Type Description
details [details] The system instance health or application instance health.
status string The state of the instance.

Schema

{
  "details": [
    {
      "impairedSince": "string",
      "name": "string",
      "status": "string"
    }
  ],
  "status": "string"
}

tagSet_0

One or more tags associated with the resource.

Properties

Name Type Description
key string The key of the tag, with a minimum of 1 character.
value string The value of the tag, between 0 and 255 characters.

Schema

{
  "key": "string",
  "value": "string"
}

tagSet_1

Information about one or more tags.

Properties

Name Type Description
key string The key of the tag.
resourceId string The ID of the resource the tag is associated with.
resourceType string The type of resource the tag is associated with.
value string The value of the tag.

Schema

{
  "key": "string",
  "resourceId": "string",
  "resourceType": "string",
  "value": "string"
}

unsuccessful

Information about one or more unsuccessfully deleted VPC endpoints.

Properties

Name Type Description
error error Information about the error.
resourceId string The ID of the resource.

Schema

{
  "error": {
    "code": "string",
    "message": "string"
  },
  "resourceId": "string"
}

valueSet

The value for the option in the DHCP configuration.

Properties

Name Type Description
value string The value specified for the resource attribute.

Schema

{
  "value": "string"
}

vgwTelemetry

Information about the current state of VPN tunnels.

Properties

Name Type Description
acceptedRouteCount integer The number of routes accepted through BGP (Border Gateway Protocol) route exchanges.
lastStatusChange string The time of the latest state update.
outsideIpAddress string The IP on the OUTSCALE side of the tunnel.
status string The status of the IPSEC tunnel (UP | DOWN).
statusMessage string A description of the current state of the tunnel.

Schema

{
  "acceptedRouteCount": 0,
  "lastStatusChange": "string",
  "outsideIpAddress": "string",
  "status": "string",
  "statusMessage": "string"
}

volumeSet

Information about one or more volumes.

Properties

Name Type Description
attachmentSet [attachmentSet_0] Information about your volume attachment.
availabilityZone string The Availability Zone where the volume is.
createTime string The date and time of creation of the volume.
iops integer The number of I/O operations per second:
- For io1 volumes, the number of provisioned IOPS

- For gp2 volumes, the baseline performance of the volume
size integer The size of the volume, in gibibytes (GiB).
snapshotId string The ID of the snapshot from which the volume was created.
status string The state of the volume (creating | available | in-use | deleting | error).
tagSet [tagSet_0] One or more tags associated with the volume.
volumeId string The ID of the volume.
volumeType string The type of the volume (standard | gp2 | io1).

Schema

{
  "attachmentSet": [
    {
      "attachTime": "string",
      "deleteOnTermination": true,
      "device": "string",
      "instanceId": "string",
      "status": "string",
      "volumeId": "string"
    }
  ],
  "availabilityZone": "string",
  "createTime": "string",
  "iops": 0,
  "size": 0,
  "snapshotId": "string",
  "status": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "volumeId": "string",
  "volumeType": "string"
}

vpc

Information about the newly created VPC.

Properties

Name Type Description
cidrBlock string The CIDR block of the VPC, in the [16;28] range (for example, 10.84.7.0/24).
dhcpOptionsId string The ID of the DHCP options set associated with the VPC.
instanceTenancy string The tenancy of the instances (default if an instance created in a VPC can be lauched with any tenancy, dedicated if it can be launched with dedicated tenancy instances running on single-tenant hardware).
isDefault boolean Indicates whether the VPC is the default one (always false).
state string The state of the VPC (pending | available | deleted).
tagSet [tagSet_0] One or more tags associated with the VPC.
vpcId string The ID of the Virtual Private Cloud (VPC).

Schema

{
  "cidrBlock": "string",
  "dhcpOptionsId": "string",
  "instanceTenancy": "string",
  "isDefault": true,
  "state": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcId": "string"
}

vpcEndpoint

Information about the newly created VPC endpoint.

Properties

Name Type Description
creationTimestamp string The date and time of creation of the VPC endpoint.
routeTableIdSet [string] The ID of the route tables associated with the VPC endpoint.
serviceName string The name of the prefix list corresponding to the service with which the VPC endpoint is associated.
state string The state of the VPC endpoint (pending | available | deleting | deleted).
vpcEndpointId string The ID of the VPC endpoint.
vpcId string The ID of the VPC with which the VPC endpoint is associated.

Schema

{
  "creationTimestamp": "string",
  "routeTableIdSet": [
    "string"
  ],
  "serviceName": "string",
  "state": "string",
  "vpcEndpointId": "string",
  "vpcId": "string"
}

vpcEndpointSet

Information about one or more VPC endpoints.

Properties

Name Type Description
creationTimestamp string The date and time of creation of the VPC endpoint.
routeTableIdSet [string] The ID of the route tables associated with the VPC endpoint.
serviceName string The name of the prefix list corresponding to the service with which the VPC endpoint is associated.
state string The state of the VPC endpoint (pending | available | deleting | deleted).
vpcEndpointId string The ID of the VPC endpoint.
vpcId string The ID of the VPC with which the VPC endpoint is associated.

Schema

{
  "creationTimestamp": "string",
  "routeTableIdSet": [
    "string"
  ],
  "serviceName": "string",
  "state": "string",
  "vpcEndpointId": "string",
  "vpcId": "string"
}

vpcPeeringConnection

Information about the created VPC peering connection.

Properties

Name Type Description
accepterVpcInfo accepterVpcInfo Information about the peer VPC of the VPC peering connection.
expirationTime string The time after which a VPC peering connection request in the pending-acceptance state expires.
requesterVpcInfo requesterVpcInfo Information about the source VPC of the VPC peering connection.
status status The state of the VPC peering connection.
tagSet [tagSet_0] One or more tags associated with the VPC peering connection.
vpcPeeringConnectionId string The ID of the VPC peering connection.

Schema

{
  "accepterVpcInfo": {
    "cidrBlock": "string",
    "ownerId": "string",
    "vpcId": "string"
  },
  "expirationTime": "string",
  "requesterVpcInfo": {
    "cidrBlock": "string",
    "ownerId": "string",
    "vpcId": "string"
  },
  "status": {
    "code": "string",
    "message": "string"
  },
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcPeeringConnectionId": "string"
}

vpcPeeringConnectionSet

Information about one or more VPC peering connections.

Properties

Name Type Description
accepterVpcInfo accepterVpcInfo Information about the peer VPC of the VPC peering connection.
expirationTime string The time after which a VPC peering connection request in the pending-acceptance state expires.
requesterVpcInfo requesterVpcInfo Information about the source VPC of the VPC peering connection.
status status The state of the VPC peering connection.
tagSet [tagSet_0] One or more tags associated with the VPC peering connection.
vpcPeeringConnectionId string The ID of the VPC peering connection.

Schema

{
  "accepterVpcInfo": {
    "cidrBlock": "string",
    "ownerId": "string",
    "vpcId": "string"
  },
  "expirationTime": "string",
  "requesterVpcInfo": {
    "cidrBlock": "string",
    "ownerId": "string",
    "vpcId": "string"
  },
  "status": {
    "code": "string",
    "message": "string"
  },
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcPeeringConnectionId": "string"
}

vpcSet

Information about the specified and described VPCs.

Properties

Name Type Description
cidrBlock string The CIDR block of the VPC, in the [16;28] range (for example, 10.84.7.0/24).
dhcpOptionsId string The ID of the DHCP options set associated with the VPC.
isDefault boolean Indicates whether the VPC is the default one (always false).
instanceTenancy string The tenancy of the instances (default if an instance created in a VPC can be lauched with any tenancy, dedicated if it can be launched with dedicated tenancy instances running on single-tenant hardware).
state string The state of the VPC (pending | available | deleting).
tagSet [tagSet_0] One or more tags associated with the VPC.
vpcId string The ID of the Virtual Private Cloud (VPC).

Schema

{
  "cidrBlock": "string",
  "dhcpOptionsId": "string",
  "isDefault": true,
  "instanceTenancy": "string",
  "state": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "vpcId": "string"
}

vpnConnection

Information about the VPN connection.

Properties

Name Type Description
customerGatewayConfiguration string Example configuration for the customer gateway, in XML format.
customerGatewayId string The ID of the customer gateway used on the customer end of the connection.
options Options_1 Options for a VPN connection.
routes [routes] Information about one or more static routes associated with the VPN connection, if any.
state string The state of the VPN connection.
tagSet [tagSet_0] One or more tags associated with the VPN connection.
type string The type of VPN connection (always ipsec.1).
vgwTelemetry [vgwTelemetry] Information about the current state of VPN tunnels.
vpnConnectionId string The ID of the VPN connection.
vpnGatewayId string The ID of the virtual private gateway used on the OUTSCALE end of the connection.

Schema

{
  "customerGatewayConfiguration": "string",
  "customerGatewayId": "string",
  "options": {
    "staticRoutesOnly": true
  },
  "routes": [
    {
      "destinationCidrBlock": "string",
      "source": "string",
      "state": "string"
    }
  ],
  "state": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "type": "string",
  "vgwTelemetry": [
    {
      "acceptedRouteCount": 0,
      "lastStatusChange": "string",
      "outsideIpAddress": "string",
      "status": "string",
      "statusMessage": "string"
    }
  ],
  "vpnConnectionId": "string",
  "vpnGatewayId": "string"
}

vpnConnectionSet

Information about one or more VPN connections.

Properties

Name Type Description
customerGatewayConfiguration string Example configuration for the customer gateway, in XML format.
customerGatewayId string The ID of the customer gateway used on the customer end of the connection.
options Options_1 Options for a VPN connection.
routes [routes] Information about one or more static routes associated with the VPN connection, if any.
state string The state of the VPN connection.
tagSet [tagSet_0] One or more tags associated with the VPN connection.
type string The type of VPN connection (always ipsec.1).
vgwTelemetry [vgwTelemetry] Information about the current state of VPN tunnels.
vpnConnectionId string The ID of the VPN connection.
vpnGatewayId string The ID of the virtual private gateway used on the OUTSCALE end of the connection.

Schema

{
  "customerGatewayConfiguration": "string",
  "customerGatewayId": "string",
  "options": {
    "staticRoutesOnly": true
  },
  "routes": [
    {
      "destinationCidrBlock": "string",
      "source": "string",
      "state": "string"
    }
  ],
  "state": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "type": "string",
  "vgwTelemetry": [
    {
      "acceptedRouteCount": 0,
      "lastStatusChange": "string",
      "outsideIpAddress": "string",
      "status": "string",
      "statusMessage": "string"
    }
  ],
  "vpnConnectionId": "string",
  "vpnGatewayId": "string"
}

vpnGateway

Information about the newly created virtual private gateway.

Properties

Name Type Description
attachments [attachments] The VPC to which the virtual private gateway is attached.
state string The state of the virtual private gateway (pending | available | deleting | deleted).
tagSet [tagSet] One or more tags associated with the virtual private gateway.
type string The type of VPN connection supported by the virtual private gateway (only ipsec.1 is supported).
vpnGatewayId string The ID of the virtual private gateway.

Schema

{
  "attachments": [
    {
      "state": "string",
      "vpcId": "string"
    }
  ],
  "state": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "type": "string",
  "vpnGatewayId": "string"
}

vpnGatewaySet

Information about one or more virtual private gateways.

Properties

Name Type Description
attachments [Attachments] The VPC to which the virtual private gateway is attached.
state string The state of the virtual private gateway (pending | available | deleting | deleted).
tagSet [tagSet] One or more tags associated with the virtual private gateway.
type string The type of VPN connection supported by the virtual private gateway (only ipsec.1 is supported).
vpnGatewayId string The ID of the virtual private gateway.

Schema

{
  "attachments": [],
  "state": "string",
  "tagSet": [
    {
      "key": "string",
      "value": "string"
    }
  ],
  "type": "string",
  "vpnGatewayId": "string"
}