Creating an AS Configuration

Scenario

An AS configuration specifies the specifications of the ECSs to be added to an AS group, including the ECS specifications, images, and disks. You can create an AS configuration using an existing ECS or create a new AS configuration.

Precautions

Involved APIs

Procedure

  1. For details about token authentication, see Token Authentication.
  2. Send GET https://ECS endpoint/v1/{tenant_id}/cloudservers/flavors to obtain the ECS specifications. For details about the response parameters of the API used to query ECS specifications, see section Response Parameters for Querying ECSs.
  3. Send GET https://ECS endpoint/v2/{tenant_id}/os-keypairs to obtain the SSH key pair. For details about the response parameters of the API used to query SSH key pairs, see section Response Parameters for Querying SSH Key Pairs.
  4. Send GET https://IMS endpoint/v2/cloudimages to obtain images. For details about the response parameters of the API used to query images, see section Response Parameters for Querying Images.
  5. Send POST https://AS endpoint/autoscaling-api/v1/{tenant_id}/scaling_configuration to create an AS configuration. For detailed parameters, see section "Creating an AS Configuration" in the Auto Scaling API Reference.
    Specify the following parameters in the request body:
    {
        "scaling_configuration_name": "as-config-test",
        "instance_config": {
            "flavorRef": "103", //ECS flavor ID
            "imageRef": "627a1223-2ca3-46a7-8d5f-7aef22c74ee6", //Image ID
            "disk": [
                {
                    "size": 40,
                    "volume_type": "SATA",
                    "disk_type": "SYS"
                }
            ],
            "key_name": "as-keypair-test" //SSH key pair
    }
    } 

    scaling_configuration_id is returned if the request is successful.