Creating an AS Configuration¶
Function¶
This API is used to create an AS configuration.
An AS configuration is a template specifying specifications for the instances to be added to an AS group.
The AS configuration is decoupled from the AS group. An AS configuration can be used by multiple AS groups.
Up to 100 AS configurations can be created for each user.
URI¶
POST /autoscaling-api/v1/{project_id}/scaling_configuration
Parameter | Mandatory | Type | Description |
---|---|---|---|
project_id | Yes | String | Specifies the project ID. |
Request¶
Parameter | Mandatory | Type | Description |
---|---|---|---|
scaling_configuration_name | Yes | String | Specifies the AS configuration name. The name contains only letters, digits, underscores (_), and hyphens (-), and cannot exceed 64 characters. |
instance_config | Yes | Object | Specifies the ECS configuration. For details, see Table 3. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
instance_id | No | String | Specifies the ECS ID. When you want to create an AS configuration from an ECS, specify this parameter. In this case, the flavorRef, imageRef, disk, and security_groups fields do not take effect. If the instance_id field is not specified, flavorRef, imageRef, and disk fields are mandatory. |
flavorRef | No | String | Specifies the ECS flavor ID. A maximum of 10 flavors can be selected. Use a comma (,) to separate multiple flavor IDs. You can obtain an ECS flavor ID from the API for querying details about flavors and extended flavor information. |
imageRef | No | String | Specifies the image ID. Its value is the same as that of image_id for specifying the image selected during ECS creation. You can obtain an image ID by calling the IMS API for querying images. |
disk | No | Array of disk objects | Specifies the disk group information. System disks are mandatory and data disks are optional. For details, see Table 4. |
key_name | Yes | String | Specifies the name of the SSH key pair used to log in to the ECS. |
personality | No | Array of personality objects | Specifies information about the injected file. Only text files can be injected. A maximum of five files can be injected at a time and the maximum size of each file is 1 KB. For details, see Table 6. |
public_ip | No | public_ip object | Specifies the EIP of the ECS. The EIP can be configured in two ways. For details, see Table 7.
|
user_data | No | String | Specifies the user data to be injected during the ECS creation process. Text, text files, and gzip files can be injected. Constraints:
Examples:
Note Data injection is not supported for ECSs that use a Linux image and the password login mode. |
metadata | No | metadata object | Specifies the ECS metadata. For details, see Table 10. Note
|
security_groups | No | Array of security_groups objects | Specifies security groups. For details, see Table 11. If the security group is specified both in the AS configuration and AS group, scaled ECS instances will be added to the security group specified in the AS configuration. If the security group is not specified in either of them, scaled ECS instances will be added to the default security group. For your convenience, you are advised to specify the security group in the AS configuration. |
market_type | No | String | This parameter is reserved. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
size | Yes | Integer | Specifies the disk size. The unit is GB. The system disk size ranges from 1 to 1024 and must be greater than or equal to the minimum size (min_disk value) of the system disk specified in the image. The data disk size ranges from 10 to 32768. |
volume_type | Yes | String | Specifies the ECS system disk type. The disk type must match the available disk type. The value can be SSD or SAS.
Note
|
disk_type | Yes | String | Specifies a disk type. The options are as follows:
|
data_disk_image_id | No | String | Specifies the ID of a data disk image used to export data disks of an ECS. |
snapshot_id | No | String | Specifies the disk backup snapshot ID for restoring the system disk and data disks using a full-ECS backup when a full-ECS image is used. Note Each disk in an AS configuration must correspond to a disk backup in the full-ECS backup by snapshot_id. |
metadata | No | metadata object | Specifies the metadata for creating disks. For details, see Table 5. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
__system__encrypted | No | String | Specifies encryption in metadata. The value can be 0 (encryption disabled) or 1 (encryption enabled). If this parameter does not exist, the disk will not be encrypted by default. Note System disk encryption is not supported. |
__system__cmkid | No | String | Specifies the CMK ID, which indicates encryption in metadata. This parameter is used with __system__encrypted. Note
|
Parameter | Mandatory | Type | Description |
---|---|---|---|
path | Yes | String | Specifies the path of the injected file.
|
content | Yes | String | Specifies the content of the injected file. The value must be the information after the content of the injected file is encoded using Base64. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
eip | Yes | eip object | Specifies the EIP automatically assigned to the ECS. For details, see Table 8. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
ip_type | Yes | String | Specifies the EIP type. |
bandwidth | Yes | bandwidth object | Specifies the bandwidth of an IP address. For details, see Table 9. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
size | Yes | Integer | Specifies the bandwidth (Mbit/s). The value ranges from 1 to 300. Note
|
share_type | Yes | String | Specifies the bandwidth sharing type. Enumerated values of the sharing type:
Only dedicated bandwidth is available. |
charging_mode | Yes | String | Specifies the bandwidth billing mode. traffic: billed by traffic. If the parameter value is out of the preceding options, creating the ECS will fail. |
Parameter | Mandatory | Type | Description |
---|---|---|---|
admin_pass | No | String | Specifies the initial login password of the administrator account for logging in to an ECS using password authentication. The Linux administrator is root, and the Windows administrator is Administrator. Password complexity requirements:
|
Parameter | Mandatory | Type | Description |
---|---|---|---|
id | Yes | String | Specifies the ID of the security group. |
Example Request¶
This example creates an AS configuration with name as-config-tlzp, image ID 627a1223-2ca3-46a7-8d5f-7aef22c74ee6, flavor ID s3.xlarge.4, 40 GB SATA system disk, and SSH key name 100vm_key.
POST https://{Endpoint}/autoscaling-api/v1/{project_id}/scaling_configuration
{
"scaling_configuration_name": "as-config-tlzq",
"instance_config": {
"flavorRef": "s3.xlarge.4",
"imageRef": "627a1223-2ca3-46a7-8d5f-7aef22c74ee6",
"disk": [
{
"size": 40,
"volume_type": "SATA",
"disk_type": "SYS"
}
],
"key_name": "100vm_key" ,
"security_groups": [{
"id": "6c22a6c0-b5d2-4a84-ac56-51090dcc33be"
}],
"multi_flavor_priority_policy": "PICK_FIRST"
}
}
Response¶
Parameter | Type | Description |
---|---|---|
scaling_configuration_id | String | Specifies the AS configuration ID. |
Example Response¶
{
"scaling_configuration_id": "f8327883-6a07-4497-9a61-68c03e8e72a2"
}
Returned Values¶
Normal
200
Abnormal
Returned Value
Description
400 Bad Request
The server failed to process the request.
401 Unauthorized
You must enter the username and password to access the requested page.
403 Forbidden
You are forbidden to access the requested page.
404 Not Found
The server could not find the requested page.
405 Method Not Allowed
You are not allowed to use the method specified in the request.
406 Not Acceptable
The response generated by the server could not be accepted by the client.
407 Proxy Authentication Required
You must use the proxy server for authentication to process the request.
408 Request Timeout
The request timed out.
409 Conflict
The request could not be processed due to a conflict.
500 Internal Server Error
Failed to complete the request because of an internal service error.
501 Not Implemented
Failed to complete the request because the server does not support the requested function.
502 Bad Gateway
Failed to complete the request because the request is invalid.
503 Service Unavailable
Failed to complete the request because the system is unavailable.
504 Gateway Timeout
A gateway timeout error occurred.
Error Codes¶
See Error Codes.