diff --git a/api-ref/source/apis_recommended/disk_management/index.rst b/api-ref/source/apis_recommended/disk_management/index.rst index d3dad502..83ced9ff 100644 --- a/api-ref/source/apis_recommended/disk_management/index.rst +++ b/api-ref/source/apis_recommended/disk_management/index.rst @@ -5,7 +5,8 @@ Disk Management =============== -- :ref:`Querying Information About Disks Attached to an ECS ` +- :ref:`Querying Details of a Single Disk Attached to an ECS ` +- :ref:`Listing Details About Disks Attached to an ECS ` - :ref:`Attaching a Disk to an ECS ` - :ref:`Detaching an EVS Disk from an ECS ` - :ref:`Querying Disk Attachment of an ECS ` @@ -15,7 +16,8 @@ Disk Management :maxdepth: 1 :hidden: - querying_information_about_disks_attached_to_an_ecs + querying_details_of_a_single_disk_attached_to_an_ecs + listing_details_about_disks_attached_to_an_ecs attaching_a_disk_to_an_ecs detaching_an_evs_disk_from_an_ecs querying_disk_attachment_of_an_ecs diff --git a/api-ref/source/apis_recommended/disk_management/querying_information_about_disks_attached_to_an_ecs.rst b/api-ref/source/apis_recommended/disk_management/listing_details_about_disks_attached_to_an_ecs.rst similarity index 97% rename from api-ref/source/apis_recommended/disk_management/querying_information_about_disks_attached_to_an_ecs.rst rename to api-ref/source/apis_recommended/disk_management/listing_details_about_disks_attached_to_an_ecs.rst index 1a32d88e..3f48b627 100644 --- a/api-ref/source/apis_recommended/disk_management/querying_information_about_disks_attached_to_an_ecs.rst +++ b/api-ref/source/apis_recommended/disk_management/listing_details_about_disks_attached_to_an_ecs.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0122107473: -Querying Information About Disks Attached to an ECS -=================================================== +Listing Details About Disks Attached to an ECS +============================================== Function -------- -This API is used to query information about disks attached to an ECS. +This API is used to list details about disks attached to an ECS. URI --- @@ -98,7 +98,7 @@ Response Example Request --------------- -Query information about disks attached to an ECS. +List details about disks attached to an ECS. .. code-block:: text diff --git a/api-ref/source/apis_recommended/disk_management/querying_details_of_a_single_disk_attached_to_an_ecs.rst b/api-ref/source/apis_recommended/disk_management/querying_details_of_a_single_disk_attached_to_an_ecs.rst new file mode 100644 index 00000000..991f5333 --- /dev/null +++ b/api-ref/source/apis_recommended/disk_management/querying_details_of_a_single_disk_attached_to_an_ecs.rst @@ -0,0 +1,120 @@ +:original_name: en-us_topic_0167811961.html + +.. _en-us_topic_0167811961: + +Querying Details of a Single Disk Attached to an ECS +==================================================== + +Function +-------- + +This API is used to query details of a single disk attached to an ECS. + +This API supports checking fine-grained permissions for enterprise projects. For details, see :ref:`ecs:cloudServers:showServerBlockDevice `. + +URI +--- + +GET /v1/{project_id}/cloudservers/{server_id}/block_device/{volume_id} + +:ref:`Table 1 ` describes the parameters in the URI. + +.. _en-us_topic_0167811961__table179834801714: + +.. table:: **Table 1** Parameter description + + ========== ========= ========================================= + Parameter Mandatory Description + ========== ========= ========================================= + server_id Yes Specifies the ECS ID in UUID format. + project_id Yes Specifies the project ID. + volume_id Yes Specifies the EVS disk ID in UUID format. + ========== ========= ========================================= + +Request +------- + +None + +Response +-------- + +:ref:`Table 2 ` describes the response parameters. + +.. _en-us_topic_0167811961__table11593131681815: + +.. table:: **Table 2** Response parameters + + +------------------+--------+----------------------------------------------------------------------------------------------------------------------+ + | Parameter | Type | Description | + +==================+========+======================================================================================================================+ + | volumeAttachment | Object | Specifies the disk attached to an ECS. For details, see :ref:`Table 3 `. | + +------------------+--------+----------------------------------------------------------------------------------------------------------------------+ + +.. _en-us_topic_0167811961__table1128997111919: + +.. table:: **Table 3** **volumeAttachment** parameters + + +-----------------------+-----------------------+------------------------------------------------------------------------------------------+ + | Parameter | Type | Description | + +=======================+=======================+==========================================================================================+ + | serverId | String | Specifies the ECS ID in UUID format. | + +-----------------------+-----------------------+------------------------------------------------------------------------------------------+ + | volumeId | String | Specifies the EVS disk ID in UUID format. | + +-----------------------+-----------------------+------------------------------------------------------------------------------------------+ + | id | String | Specifies the mount ID, which is the same as the EVS disk ID. | + | | | | + | | | The value is in UUID format. | + +-----------------------+-----------------------+------------------------------------------------------------------------------------------+ + | size | Integer | Specifies the EVS disk size, in GiB. | + +-----------------------+-----------------------+------------------------------------------------------------------------------------------+ + | device | String | Specifies the drive letter of the EVS disk, displayed as the device name on the console. | + +-----------------------+-----------------------+------------------------------------------------------------------------------------------+ + | pciAddress | String | Specifies the PCI address. | + +-----------------------+-----------------------+------------------------------------------------------------------------------------------+ + | bootIndex | Integer | Specifies the EVS disk boot sequence. | + | | | | + | | | - **0** indicates the system disk. | + | | | - Non-**0** indicates a data disk. | + +-----------------------+-----------------------+------------------------------------------------------------------------------------------+ + | bus | String | Specifies the disk bus type. | + | | | | + | | | Options: **virtio** and **scsi** | + +-----------------------+-----------------------+------------------------------------------------------------------------------------------+ + +Example Request +--------------- + +Query information about a specified disk attached to an ECS. + +.. code-block:: text + + GET https://{endpoint}/v1/{project_id}/cloudservers/{server_id}/block_device/{volume_id} + +Example Response +---------------- + +.. code-block:: + + { + "volumeAttachment": { + "pciAddress": "0000:02:01.0", + "volumeId": "a26887c6-c47b-4654-abb5-asdf234r234r", + "device": "/dev/vda", + "serverId": "4d8c3732-a248-40ed-bebc-539a6ffd25c0", + "id": "a26887c6-c47b-4654-abb5-asdf234r234r", + "size": "40", + "bootIndex": 0, + "bus":"virtio" + } + } + +Returned Values +--------------- + +See :ref:`Returned Values for General Requests `. + +Error Codes +----------- + +See :ref:`Error Codes `. diff --git a/api-ref/source/apis_recommended/ecs_group_management/adding_an_ecs_to_an_ecs_group.rst b/api-ref/source/apis_recommended/ecs_group_management/adding_an_ecs_to_an_ecs_group.rst index dcf0d6a5..462af2f3 100644 --- a/api-ref/source/apis_recommended/ecs_group_management/adding_an_ecs_to_an_ecs_group.rst +++ b/api-ref/source/apis_recommended/ecs_group_management/adding_an_ecs_to_an_ecs_group.rst @@ -8,7 +8,7 @@ Adding an ECS to an ECS Group Function -------- -This API is used to add an ECS to an ECS group. The system automatically deploys the newly added ECS to a host that is different from the ones accommodating other ECSs in the ECS group. +This API is used to add an ECS to an ECS group. ECSs in the same group are automatically deployed on different hosts if possible. Constraints ----------- diff --git a/api-ref/source/apis_recommended/ecs_group_management/index.rst b/api-ref/source/apis_recommended/ecs_group_management/index.rst index 8bca2897..04333446 100644 --- a/api-ref/source/apis_recommended/ecs_group_management/index.rst +++ b/api-ref/source/apis_recommended/ecs_group_management/index.rst @@ -9,7 +9,7 @@ ECS Group Management - :ref:`Deleting an ECS Group ` - :ref:`Adding an ECS to an ECS Group ` - :ref:`Removing an ECS from an ECS Group ` -- :ref:`Querying ECS Groups ` +- :ref:`Listing ECS Groups ` - :ref:`Querying Details About an ECS Group ` .. toctree:: @@ -20,5 +20,5 @@ ECS Group Management deleting_an_ecs_group adding_an_ecs_to_an_ecs_group removing_an_ecs_from_an_ecs_group - querying_ecs_groups + listing_ecs_groups querying_details_about_an_ecs_group diff --git a/api-ref/source/apis_recommended/ecs_group_management/querying_ecs_groups.rst b/api-ref/source/apis_recommended/ecs_group_management/listing_ecs_groups.rst similarity index 98% rename from api-ref/source/apis_recommended/ecs_group_management/querying_ecs_groups.rst rename to api-ref/source/apis_recommended/ecs_group_management/listing_ecs_groups.rst index b9e7557f..94c68352 100644 --- a/api-ref/source/apis_recommended/ecs_group_management/querying_ecs_groups.rst +++ b/api-ref/source/apis_recommended/ecs_group_management/listing_ecs_groups.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0175597846: -Querying ECS Groups -=================== +Listing ECS Groups +================== Function -------- -This API is used to query ECS groups. +This API is used to list ECS groups. URI --- @@ -94,7 +94,7 @@ Response Example Request --------------- -Query ECS groups. +List ECS groups. .. code-block:: text diff --git a/api-ref/source/apis_recommended/ecs_group_management/querying_details_about_an_ecs_group.rst b/api-ref/source/apis_recommended/ecs_group_management/querying_details_about_an_ecs_group.rst index a70c3a57..ac6ac77c 100644 --- a/api-ref/source/apis_recommended/ecs_group_management/querying_details_about_an_ecs_group.rst +++ b/api-ref/source/apis_recommended/ecs_group_management/querying_details_about_an_ecs_group.rst @@ -8,7 +8,7 @@ Querying Details About an ECS Group Function -------- -This API is used to query details bout an ECS group. +This API is used to query details about an ECS group. URI --- @@ -69,7 +69,7 @@ Response Example Request --------------- -Query details about a specified ECS group. +Query details about the specified ECS group. .. code-block:: text diff --git a/api-ref/source/apis_recommended/ecs_group_management/removing_an_ecs_from_an_ecs_group.rst b/api-ref/source/apis_recommended/ecs_group_management/removing_an_ecs_from_an_ecs_group.rst index 73698f49..6df8c109 100644 --- a/api-ref/source/apis_recommended/ecs_group_management/removing_an_ecs_from_an_ecs_group.rst +++ b/api-ref/source/apis_recommended/ecs_group_management/removing_an_ecs_from_an_ecs_group.rst @@ -8,7 +8,7 @@ Removing an ECS from an ECS Group Function -------- -This API is used to remove an ECS from an ECS group. After being removed, the anti-affinity policy will not take effect on this ECS and other ECSs in the same ECS group. +This API is used to remove an ECS from an ECS group. The anti-affinity policy will not be applied to the ECS after it is removed from the group. Constraints ----------- diff --git a/api-ref/source/apis_recommended/flavor_management/index.rst b/api-ref/source/apis_recommended/flavor_management/index.rst index f3cace46..64b28bcf 100644 --- a/api-ref/source/apis_recommended/flavor_management/index.rst +++ b/api-ref/source/apis_recommended/flavor_management/index.rst @@ -5,12 +5,12 @@ Flavor Management ================= -- :ref:`Querying Details About Flavors and Extended Flavor Information ` +- :ref:`Listing Flavor Details and Extended Information ` - :ref:`Querying the Target Flavors to Which an ECS Flavor Can Be Changed ` .. toctree:: :maxdepth: 1 :hidden: - querying_details_about_flavors_and_extended_flavor_information + listing_flavor_details_and_extended_information querying_the_target_flavors_to_which_an_ecs_flavor_can_be_changed diff --git a/api-ref/source/apis_recommended/flavor_management/querying_details_about_flavors_and_extended_flavor_information.rst b/api-ref/source/apis_recommended/flavor_management/listing_flavor_details_and_extended_information.rst similarity index 99% rename from api-ref/source/apis_recommended/flavor_management/querying_details_about_flavors_and_extended_flavor_information.rst rename to api-ref/source/apis_recommended/flavor_management/listing_flavor_details_and_extended_information.rst index 1113088d..5a48e50c 100644 --- a/api-ref/source/apis_recommended/flavor_management/querying_details_about_flavors_and_extended_flavor_information.rst +++ b/api-ref/source/apis_recommended/flavor_management/listing_flavor_details_and_extended_information.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0020212656: -Querying Details About Flavors and Extended Flavor Information -============================================================== +Listing Flavor Details and Extended Information +=============================================== Function -------- -This API is used to query details about ECS flavors and extended flavor information. +This API is used to list flavor details and extended information. URI --- @@ -258,7 +258,7 @@ Response Example Request --------------- -Query details about ECS flavors and extended flavor information. +List ECS flavor details and extended flavor information. .. code-block:: text diff --git a/api-ref/source/apis_recommended/lifecycle_management/creating_an_ecs.rst b/api-ref/source/apis_recommended/lifecycle_management/creating_ecss.rst similarity index 99% rename from api-ref/source/apis_recommended/lifecycle_management/creating_an_ecs.rst rename to api-ref/source/apis_recommended/lifecycle_management/creating_ecss.rst index bea80016..ac08f62a 100644 --- a/api-ref/source/apis_recommended/lifecycle_management/creating_an_ecs.rst +++ b/api-ref/source/apis_recommended/lifecycle_management/creating_ecss.rst @@ -2,8 +2,8 @@ .. _en-us_topic_0020212668: -Creating an ECS -=============== +Creating ECSs +============= .. _en-us_topic_0020212668__section61372619: diff --git a/api-ref/source/apis_recommended/lifecycle_management/deleting_ecss.rst b/api-ref/source/apis_recommended/lifecycle_management/deleting_ecss.rst index 066d5d64..36390763 100644 --- a/api-ref/source/apis_recommended/lifecycle_management/deleting_ecss.rst +++ b/api-ref/source/apis_recommended/lifecycle_management/deleting_ecss.rst @@ -99,7 +99,7 @@ Example Request ], "delete_publicip": false, "delete_volume": false - } + } - Delete ECSs whose IDs are **616fb98f-46ca-475e-917e-2563e5a8cd19**, **616fb98f-46ca-475e-917e-2563e5a8ef20**, and **616fb98f-46ca-475e-917e-2563e5a8gh21** in batches. @@ -121,7 +121,7 @@ Example Request "id": "616fb98f-46ca-475e-917e-2563e5a8gh21" } ] - } + } Example Response ---------------- diff --git a/api-ref/source/apis_recommended/lifecycle_management/index.rst b/api-ref/source/apis_recommended/lifecycle_management/index.rst index 1ee8ed90..2c629056 100644 --- a/api-ref/source/apis_recommended/lifecycle_management/index.rst +++ b/api-ref/source/apis_recommended/lifecycle_management/index.rst @@ -5,18 +5,18 @@ Lifecycle Management ==================== -- :ref:`Creating an ECS ` +- :ref:`Creating ECSs ` - :ref:`Deleting ECSs ` - :ref:`Querying Details About an ECS ` -- :ref:`Querying Details About ECSs ` +- :ref:`Listing Details About ECSs ` - :ref:`Modifying ECS Details ` .. toctree:: :maxdepth: 1 :hidden: - creating_an_ecs + creating_ecss deleting_ecss querying_details_about_an_ecs - querying_details_about_ecss + listing_details_about_ecss modifying_ecs_details diff --git a/api-ref/source/apis_recommended/lifecycle_management/querying_details_about_ecss.rst b/api-ref/source/apis_recommended/lifecycle_management/listing_details_about_ecss.rst similarity index 99% rename from api-ref/source/apis_recommended/lifecycle_management/querying_details_about_ecss.rst rename to api-ref/source/apis_recommended/lifecycle_management/listing_details_about_ecss.rst index 264a758b..1118e0de 100644 --- a/api-ref/source/apis_recommended/lifecycle_management/querying_details_about_ecss.rst +++ b/api-ref/source/apis_recommended/lifecycle_management/listing_details_about_ecss.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0094148850: -Querying Details About ECSs -=========================== +Listing Details About ECSs +========================== Function -------- -This API is used to query details about ECSs according to search criteria. +This API is used to list details about ECSs based on search criteria. The information that can be queried includes the ECS billing mode and whether the ECS is frozen. @@ -109,7 +109,7 @@ Response Example Request --------------- -Query details about ECSs. Ten records are displayed on each page, starting from the first page. +List details about ECSs. Ten records are displayed on each page, starting from the first page. .. code-block:: text diff --git a/api-ref/source/apis_recommended/lifecycle_management/querying_details_about_an_ecs.rst b/api-ref/source/apis_recommended/lifecycle_management/querying_details_about_an_ecs.rst index 7b9501d1..f7294504 100644 --- a/api-ref/source/apis_recommended/lifecycle_management/querying_details_about_an_ecs.rst +++ b/api-ref/source/apis_recommended/lifecycle_management/querying_details_about_an_ecs.rst @@ -167,7 +167,7 @@ Response | | | | | | | - **UP**: The nova-compute status is normal. | | | | - **UNKNOWN**: The nova-compute status is unknown. | - | | | - **DOWN**: the nova-compute status is abnormal. | + | | | - **DOWN**: The nova-compute status is abnormal. | | | | - **MAINTENANCE**: The nova-compute is in maintenance state. | | | | - Empty string: There is no host information. | +--------------------------------------+-------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ @@ -261,8 +261,11 @@ Example Response "id": "s3.large.1", "name": "s3.large.1" "asic_accelerators": [ - - ] + { + "name":"asic_01", + "count":1, + "memory_mb":1024 + }] }, "accessIPv4": "", "accessIPv6": "", diff --git a/api-ref/source/apis_recommended/nic_management/index.rst b/api-ref/source/apis_recommended/nic_management/index.rst index 6750e016..a6f2e41e 100644 --- a/api-ref/source/apis_recommended/nic_management/index.rst +++ b/api-ref/source/apis_recommended/nic_management/index.rst @@ -7,7 +7,7 @@ NIC Management - :ref:`Adding NICs to an ECS in a Batch ` - :ref:`Deleting NICs from an ECS in a Batch ` -- :ref:`Querying NICs of an ECS ` +- :ref:`Listing NICs of an ECS ` .. toctree:: :maxdepth: 1 @@ -15,4 +15,4 @@ NIC Management adding_nics_to_an_ecs_in_a_batch deleting_nics_from_an_ecs_in_a_batch - querying_nics_of_an_ecs + listing_nics_of_an_ecs diff --git a/api-ref/source/apis_recommended/nic_management/querying_nics_of_an_ecs.rst b/api-ref/source/apis_recommended/nic_management/listing_nics_of_an_ecs.rst similarity index 98% rename from api-ref/source/apis_recommended/nic_management/querying_nics_of_an_ecs.rst rename to api-ref/source/apis_recommended/nic_management/listing_nics_of_an_ecs.rst index adf779f6..c728d057 100644 --- a/api-ref/source/apis_recommended/nic_management/querying_nics_of_an_ecs.rst +++ b/api-ref/source/apis_recommended/nic_management/listing_nics_of_an_ecs.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0121978383: -Querying NICs of an ECS -======================= +Listing NICs of an ECS +====================== Function -------- -This API is used to query NICs of an ECS. +This API is used to list NICs of an ECS. URI --- @@ -112,7 +112,7 @@ Response Example Request --------------- -Query NICs of an ECS. +List NICs of an ECS. .. code-block:: text diff --git a/api-ref/source/apis_recommended/status_management/changing_an_ecs_os_using_an_image_with_cloud-init_installed.rst b/api-ref/source/apis_recommended/status_management/changing_an_ecs_os_using_an_image_with_cloud-init_installed.rst index 0ee011b5..1d9f0162 100644 --- a/api-ref/source/apis_recommended/status_management/changing_an_ecs_os_using_an_image_with_cloud-init_installed.rst +++ b/api-ref/source/apis_recommended/status_management/changing_an_ecs_os_using_an_image_with_cloud-init_installed.rst @@ -17,10 +17,10 @@ After this API is called, the system uninstalls the system disk, uses the new im Constraints ----------- -- You can only use an image with Cloud-Init or Cloudbase-Init installed. -- Only a stopped ECS or an ECS on which reinstalling or changing the OS failed supports changing OS. -- Only an ECS with a system disk supports changing OS. -- You are not allowed to perform other operations when changing the OS. Otherwise, changing the OS will fail. +- This API only supports images with Cloud-Init or Cloudbase-Init installed. +- OS changes are only supported on stopped ECSs or on ECSs where OS reinstallation or change has failed. +- ECSs without system disks do not support OS changes. +- You are not allowed to perform other operations when changing the OS, or the OS change may fail. URI --- diff --git a/api-ref/source/apis_recommended/tag_management/index.rst b/api-ref/source/apis_recommended/tag_management/index.rst index 87e3c312..ba79f307 100644 --- a/api-ref/source/apis_recommended/tag_management/index.rst +++ b/api-ref/source/apis_recommended/tag_management/index.rst @@ -9,7 +9,7 @@ Tag Management - :ref:`Adding Tags to an ECS in a Batch ` - :ref:`Deleting Tags from an ECS in a Batch ` - :ref:`Querying ECSs by Tag ` -- :ref:`Querying Project Tags ` +- :ref:`Listing Project Tags ` - :ref:`Querying Tags of an ECS ` .. toctree:: @@ -20,5 +20,5 @@ Tag Management adding_tags_to_an_ecs_in_a_batch deleting_tags_from_an_ecs_in_a_batch querying_ecss_by_tag - querying_project_tags + listing_project_tags querying_tags_of_an_ecs diff --git a/api-ref/source/apis_recommended/tag_management/querying_project_tags.rst b/api-ref/source/apis_recommended/tag_management/listing_project_tags.rst similarity index 96% rename from api-ref/source/apis_recommended/tag_management/querying_project_tags.rst rename to api-ref/source/apis_recommended/tag_management/listing_project_tags.rst index 37ce6580..a586abd6 100644 --- a/api-ref/source/apis_recommended/tag_management/querying_project_tags.rst +++ b/api-ref/source/apis_recommended/tag_management/listing_project_tags.rst @@ -2,15 +2,15 @@ .. _en-us_topic_0167811966: -Querying Project Tags -===================== +Listing Project Tags +==================== Function -------- Projects are used to group and isolate OpenStack resources, which include computing, storage, and network resources. A project can be a department or a team. Multiple projects can be created for the same account. -This API is used to query all tags used by a user in a specified project. +This API is used to list all tags attached to a specified project. URI --- @@ -71,7 +71,7 @@ Response Example Request --------------- -Query all tags used in a specified project. +List all tags attached to a specified project. .. code-block:: text diff --git a/api-ref/source/appendix/ecs_statuses.rst b/api-ref/source/appendix/ecs_statuses.rst index 5c902131..c62f95a2 100644 --- a/api-ref/source/appendix/ecs_statuses.rst +++ b/api-ref/source/appendix/ecs_statuses.rst @@ -40,87 +40,87 @@ An ECS can be in one of the following statuses specified in ECS APIs: +-------------------+---------------------------------------------------------------------------------------------------------+ | DELETED | The ECS has been deleted. | +-------------------+---------------------------------------------------------------------------------------------------------+ - | SHELVED | The ECS boot from an image is shelved. | + | SHELVED | The ECS booting from an image is shelved. | +-------------------+---------------------------------------------------------------------------------------------------------+ - | SHELVED_OFFLOADED | The ECS boot from a volume is shelved. | + | SHELVED_OFFLOADED | The ECS booting from a volume is shelved. | +-------------------+---------------------------------------------------------------------------------------------------------+ | UNKNOWN | The ECS status is unknown. | +-------------------+---------------------------------------------------------------------------------------------------------+ .. table:: **Table 2** **OS-EXT-STS:vm_state** statuses - ================= ============================================ + ================= =========================================== Status Description - ================= ============================================ - building The ECS has been created but is not running. + ================= =========================================== + building The ECS is being built after being created. active The ECS is running properly. stopped The ECS has been properly stopped. resized The ECS specifications have been modified. error An error has occurred on the ECS. deleted The ECS has been deleted. - shelved The ECS boot from an image is shelved. - shelved_offloaded The ECS boot from a volume is shelved. - ================= ============================================ + shelved The ECS booting from an image is shelved. + shelved_offloaded The ECS booting from a volume is shelved. + ================= =========================================== .. table:: **Table 3** **OS-EXT-STS:task_state** statuses - +-------------------------------+------------------------------------------------------------------------------------------+ - | Status | Description | - +===============================+==========================================================================================+ - | scheduling | The ECS is being created. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | block_device_mapping | The ECS is being created, and disks are being prepared for the ECS. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | networking | The ECS is being created, and network resources are being prepared for the ECS. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | spawning | The ECS is being created. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | rebooting | The ECS is being restarted. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | reboot_pending | A restarting command has been issued to an ECS, and the ECS is to be restarted. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | reboot_started | The ECS is being restarted. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | rebooting_hard | The ECS is being forcibly restarted. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | reboot_pending_hard | A forcible restarting command has been issued to an ECS, and the ECS is to be restarted. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | reboot_started_hard | The ECS is being forcibly restarted. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | rebuilding | The ECS is being rebuilt. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | rebuild_block_device_mapping | The ECS is being rebuilt, and disks are being prepared for the ECS. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | rebuild_spawning | The ECS is being rebuilt. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | migrating | The ECS is being live migrated. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | resize_prep | The ECS specifications are to be modified, and resources are being prepared for the ECS. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | resize_migrating | The specifications of the ECS are being modified, and it is being migrated. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | resize_migrated | The specifications of the ECS are being modified, and it has been migrated. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | resize_finish | The specifications of the ECS are being modified. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | resize_reverting | The specifications modification of the ECS is being rolled back. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | powering-off | The ECS is stopped. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | powering-on | The ECS is being started. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | deleting | The ECS is being deleted. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | shelving | The ECS boot from an image is being shelved. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | shelving_offloading | The ECS boot from a volume is being shelved. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | shelving_image_pending_upload | A shelving image is pending uploaded. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | shelving_image_uploading | A shelving image is pending uploaded. | - +-------------------------------+------------------------------------------------------------------------------------------+ - | unshelving | The ECS is being unshelved. | - +-------------------------------+------------------------------------------------------------------------------------------+ + +-------------------------------+---------------------------------------------------------------------------------+ + | Status | Description | + +===============================+=================================================================================+ + | scheduling | The system is scheduling resources when the ECS is being created. | + +-------------------------------+---------------------------------------------------------------------------------+ + | block_device_mapping | The ECS is being created, and disks are being prepared for the ECS. | + +-------------------------------+---------------------------------------------------------------------------------+ + | networking | The ECS is being created, and network resources are being prepared for the ECS. | + +-------------------------------+---------------------------------------------------------------------------------+ + | spawning | The ECS is being created. | + +-------------------------------+---------------------------------------------------------------------------------+ + | rebooting | The ECS is being restarted. | + +-------------------------------+---------------------------------------------------------------------------------+ + | reboot_pending | The ECS is pending a restart. | + +-------------------------------+---------------------------------------------------------------------------------+ + | reboot_started | The ECS is being restarted. | + +-------------------------------+---------------------------------------------------------------------------------+ + | rebooting_hard | The ECS is being forcibly restarted. | + +-------------------------------+---------------------------------------------------------------------------------+ + | reboot_pending_hard | The ECS is pending a force restart. | + +-------------------------------+---------------------------------------------------------------------------------+ + | reboot_started_hard | The ECS is being forcibly restarted. | + +-------------------------------+---------------------------------------------------------------------------------+ + | rebuilding | The ECS is being rebuilt. | + +-------------------------------+---------------------------------------------------------------------------------+ + | rebuild_block_device_mapping | The ECS is being rebuilt, and disks are being prepared for the ECS. | + +-------------------------------+---------------------------------------------------------------------------------+ + | rebuild_spawning | The ECS is being rebuilt internally. | + +-------------------------------+---------------------------------------------------------------------------------+ + | migrating | The ECS is undergoing live migration. | + +-------------------------------+---------------------------------------------------------------------------------+ + | resize_prep | The ECS is preparing for being resized. | + +-------------------------------+---------------------------------------------------------------------------------+ + | resize_migrating | The ECS is being resized and is currently in the migration phase. | + +-------------------------------+---------------------------------------------------------------------------------+ + | resize_migrated | The ECS is being resized and the migration is complete. | + +-------------------------------+---------------------------------------------------------------------------------+ + | resize_finish | The ECS is being resized and is currently completing the adjustment. | + +-------------------------------+---------------------------------------------------------------------------------+ + | resize_reverting | The instance is being resized and is currently reverting the adjustment. | + +-------------------------------+---------------------------------------------------------------------------------+ + | powering-off | The ECS is being stopped. | + +-------------------------------+---------------------------------------------------------------------------------+ + | powering-on | The ECS is being started. | + +-------------------------------+---------------------------------------------------------------------------------+ + | deleting | The ECS is being deleted. | + +-------------------------------+---------------------------------------------------------------------------------+ + | shelving | The ECS booting from an image is being shelved. | + +-------------------------------+---------------------------------------------------------------------------------+ + | shelving_offloading | The ECS booting from a volume is being shelved. | + +-------------------------------+---------------------------------------------------------------------------------+ + | shelving_image_pending_upload | A shelving image is pending upload. | + +-------------------------------+---------------------------------------------------------------------------------+ + | shelving_image_uploading | A shelving image is being uploaded. | + +-------------------------------+---------------------------------------------------------------------------------+ + | unshelving | The ECS is being unshelved. | + +-------------------------------+---------------------------------------------------------------------------------+ .. _en-us_topic_0178420672__table31644622920: diff --git a/api-ref/source/appendix/error_codes.rst b/api-ref/source/appendix/error_codes.rst index 4801e0be..d7353fd8 100644 --- a/api-ref/source/appendix/error_codes.rst +++ b/api-ref/source/appendix/error_codes.rst @@ -10,327 +10,330 @@ Context - An error code returned by an API does not correspond to one error message. The following table lists only common error messages. - Most ECS APIs are asynchronous. Some error codes are displayed in the returned messages for task viewing requests. HTTP status codes may not be accurate. -- The ECS service is strongly dependent on other services, such as network and storage. If the reported error messages contain information about ECS-depended services, contact technical support for troubleshooting. -- If the system displays an error code when you perform operations on the management console, see "How Do I Handle Error Messages Displayed on the Management Console?" in *Elastic Cloud Server User Guide* for troubleshooting. +- The ECS service is strongly dependent on other services, such as network and storage. If the reported error messages contain information about ECS-dependent services, contact technical support for troubleshooting. Error Codes ----------- -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| HTTP Status Code | Error Code | Error Message | Description | Solution | -+==================+=============+============================================================================================================================================================+==========================================================================================+===============================================================================================================================================================+ -| 400 | Ecs.0000 | Request error. Try again later or contact customer service. | Request error. | Check the request body according to the returned error message. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0001 | Insufficient ECS quota. Contact customer service to increase quota. | The number of ECSs has reached the maximum allowed. | Apply for a higher quota of the corresponding resource according to the returned error message. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0002 | A system exception occurred. Try again later or contact customer service. | Failed to submit the task. | Contact technical support to locate the fault. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 403 | Ecs.0003 | You do not have permission to perform this operation. Contact customer service to obtain permission. | You do not have permission or your balance is insufficient. | Check whether the account balance is insufficient or the account is frozen according to the returned error message. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0004 | A system exception occurred. Try again later or contact customer service. | Authentication failed. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0005 | Invalid parameter values. Contact customer service. | Invalid parameters. | Check whether the request body is of the correct JSON structure according to the API reference. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0007 | A system exception occurred. Try again later or contact customer service. | Invalid image attributes. | Adjust the specifications or image type. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0008 | A system exception occurred. Try again later or contact customer service. | Invalid flavor attributes. | Contact technical support to check whether the flavor registration is valid. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0009 | Another flavor must be used for resizing. | The flavor is not changed. | Select a flavor different from the current flavor. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0010 | The private IP address is already being used. Select another IP address. | The private IP address is already in use. | Change the port. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0011 | Ensure the password meets the password complexity requirements. | Failed to meet password complexity requirements. | Check the password length and change the password. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0012 | The subnet does not contain enough IP addresses. Release some IP addresses or select a different subnet. | The number of IP addresses in the subnet is insufficient. | Check whether the floating IP addresses of the subnet are used up. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0013 | The current EIP quota limit has been reached. Apply to increase the quota. | Insufficient EIP quota. | Apply for a higher EIP quota because the EIP quota is insufficient. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0014 | Incorrect VPC, subnet, or security group parameter values. | Invalid VPC parameters. | Check whether the subnets belong to the same VPC. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0015 | Invalid disk type for this type of ECS. Select a valid disk type and try again. | The disk of this type is not applicable to the ECS. | Check whether the disk type is supported by the flavor. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0017 | The status of the selected disk does not meet the attachment requirements on the ECS. Select an available disk for attaching. | The ECS is not the target one that the system disk or data disk is to be attached. | Check whether the **\__system__server_id** value in disk metadata is the same as the UUID of the ECS to which the system disk or data disk is to be attached. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0021 | Insufficient EVS disk quota. Contact customer service to increase quota. | Insufficient EVS disk quota. | Apply for a higher EVS disk quota. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0022 | Insufficient ECS group quota. Contact customer service to increase quota. | The number of ECSs in the ECS group exceeded the upper limit. | Apply for a higher ECS quota for an ECS group. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0023 | project_id in token mismatches with project_id in url. | Invalid token, or the project ID in the token is different from that in the URL. | Apply for a valid token or check the project ID in the URL. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0025 | EVS is not authorized to obtain KMS keys for encrypting EVS disks. | EVS is not authorized to obtain KMS keys for encrypting EVS disks. | Authorize EVS to obtain KMS keys for encrypting EVS disks. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0029 | The flavor does not exist. | The flavor does not exist or has been abandoned. | Switch to another flavor. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0030 | The ECS has been frozen and does not support specifications modification. | The ECS has been frozen. | Check whether the account has been frozen or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0031 | The image does not exist. | The image does not exist. | Replace the image. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0032 | The image is not in Active state. | The image is not in **Active** state. | Replace the image. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0034 | The full-ECS backup does not exist or has been deleted. | The full-ECS backup does not exist or has been deleted. | Replace the image. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0036 | The flavor does not support automatic recovery. | The flavor does not support automatic recovery. | Change another flavor. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0037 | The flavor does not support SCSI disks. | The flavor does not support SCSI disks. | Change another flavor or type. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0038 | The subnet does not exist. | The subnet does not exist. | Adjust the network parameter settings. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0039 | The specified IP address does not belong to the subnet. | The specified IP address does not belong to the subnet. | Change the specified private IP address. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0041 | Invalid description field. | Invalid description field. | Modify the service description field. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0042 | The number of attached data disks exceeds the maximum allowed limit. | The number of attached data disks exceeds the maximum allowed limit. | Adjust the number of attached data disks. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0043 | The disk type does not exist. | The disk type does not exist. | Change the disk type. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0044 | The disk of this type has been sold out. | The disk of this type has been sold out. | Change the disk type. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0045 | The bandwidth exceeds the maximum allowed limit. | The bandwidth exceeds the maximum size allowed. | Adjust the bandwidth. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0046 | When creating an ECS using an image, ensure that the type of the attached data disk is the same as that required by the image. | The disk type of the ECS is different from that of the snapshot image. | Change the disk type. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0048 | Ensure that the image status is Normal and that the status of the CSBS backup associated with the image is Available or Creating, and try again later. | The full-ECS image is unavailable. | Check the full-ECS image. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0050 | The number of NICs attached to the ECS exceeds the quota. | The number of NICs attached to the ECS exceeds the maximum value allowed. | Adjust the number of NICs. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0051 | Only SCSI disks can be attached to the ECSs of this flavor. | The attached disk is not of SCSI type. | Change the disk type. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0052 | Only SCSI system disks can be attached to the ECSs of this flavor. | The attached system disk is not of SCSI type. | Change the system disk type. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0053 | Only SCSI data disks can be attached to the ECSs of this flavor. | The attached data disk is not of SCSI type. | Change the data disk type. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0057 | The disk has already been attached to the ECS and you cannot repeatedly attach it. | The disk has been attached to the ECS. | Attach a new disk to the ECS. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0058 | You do not have permission to use a third-party image to create ECSs. | The **provideId** of the image does not match the account ID. | Check the account permission and image. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0062 | The flavor does not support the driver mode. | The flavor does not allow settings of the NIC driver type. | Change another flavor. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0064 | The VPC ID in the request is inconsistent with that in the main subnet ID. | Inconsistent VPC ID in the request body from that in the primary NIC. | Adjust the NIC parameter settings. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 403 | Ecs.0066 | This operation cannot be performed because real-name authentication has not been completed. | Restricted due to lack of real-name authentication. | Check whether the account is restricted due to lack of real-name authentication. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 403 | Ecs.0067 | Insufficient account balance. | Restricted due to insufficient balance. | Check whether the account is restricted due to insufficient balance. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 403 | Ecs.0068 | This operation cannot be performed by partners. | Restricted due to a non-partner. | Check whether the account is restricted due to a non-partner. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 403 | Ecs.0069 | You have not associated a payment method with your account. | Restricted due to incomplete payment information. | Check whether the payment information of the account is complete. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 403 | Ecs.0070 | Insufficient budget. Contact the enterprise administrator and request for a budget increase. | Restricted because account budget of the enterprise department is insufficient. | Check whether the budget of the enterprise department account is sufficient. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 403 | Ecs.0071 | This operation cannot be performed because your account has been suspended. | Restricted due to a malicious account. | Check whether the account is malicious. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0073 | The system disk is being backed up. Wait until the execution is complete and try again. | The system disk is being backed up. | You are not allowed to delete a system disk that is being backed up. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0074 | Window images do not support external users. | External users are not allowed to create Windows ECSs. | External users, including and non-third-party users, are not allowed to purchase Windows images. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0075 | Partners only support Windows images. | Partners can purchase only Windows images. | Purchase only Windows images. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0085 | The server does not have the interface. | The ECS does not have the NIC. | Replace a NIC. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0086 | The interface is not the primary interface. | The NIC is not the primary NIC. | Replace a NIC. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0090 | Image license type is BYOL, the BYOL feature is not supported at this time. | BYOL image features are not supported in this region. | Change the image or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0100 | The ECS status does not meet requirements. Make the ECS in the required status and try again. | The ECS status does not meet requirements. | The ECS in the current state does not support this operation. Try again later. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0101 | The system disk is currently unresponsive. Try again later or contact customer service. | Abnormal system disk status. | For details, contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0102 | The data disk is currently unresponsive. Try again later or contact customer service. | The system disk status does not allow the disk to be detached. | Check the system disk status. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0103 | The disk can be attached to a server only if it exists and the state must be in the available. Make sure the disk state is available and try again. | The disk is unavailable. | Check the disk status or contact technical support to change the disk status. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0104 | The number of EVS disks that can be attached to the ECS exceeds the maximum number allowed. Decrease the number of EVS disks to be attached and try again. | Insufficient ECS disk quota for attaching more disks. | Adjust the number of attached disks. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0105 | No system disk found. Attach the system disk to the ECS and try again. | Failed to query the ECS system disk. | Check whether the ECS has a system disk attached. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0106 | A network exception occurred. Try again later or contact customer service. | Abnormal network status. | Contact technical support to locate the fault. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 403 | Ecs.0110 | Contact the main account to obtain permission. | Operations are prohibited on the client due to permissions. | You do not have the permission to perform such an operation. Check token permissions. For details, see the error message returned by the API. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0111 | The EVS disk has been detached from the ECS. Refresh the disk list and check the disk. | The disk is not in the attachment list. | Check whether the selected disk has been attached to the ECS, or replace the disk. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 404 | Ecs.0114 | The ECS does not exist. | The ECS cannot be detected. | Check whether the ECS has been created. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0118 | The number of ECSs exceeds the maximum allowed limit. | The number of tasks in a batch is greater than the upper limit. | Check the number of ECSs in the batch. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0121 | The disk cannot be attached to the ECS because the disk and the ECS are in different failure domains. | Failed to attach the disk because the ECS and the disk are in different failure domains. | Select a disk that is in the same failure domain as that of the target ECS. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0201 | Failed to create the NIC. Try again later or contact customer service. | Failed to create the NIC. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0202 | Failed to create the system disk. Try again later or contact customer service. | Failed to create the system disk. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0203 | Failed to create the data disk. Try again later or contact customer service. | Failed to create the data disk. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0204 | Failed to create the ECS. Try again later or contact customer service. | Failed to create the ECS. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0205 | Failed to attach the data disk. Try again later or contact customer service. | Failed to attach the data disk. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0207 | Failed to modify the ECS specifications. Try again later or contact customer service. | Failed to modify ECS specifications. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0208 | A system exception occurred. Try again later or contact customer service. | Failed to update the image metadata. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0209 | Failed to modify the ECS specifications. Try again or contact customer service. | Failed to confirm the ECS specifications modification. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0210 | A system exception occurred. Try again later or contact customer service. | Failed to assign the floating IP address. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0211 | Failed to create the NIC. Try again later or contact customer service. | Failed to create the NIC QoS. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0212 | Failed to assign the private IP address. Try again later or contact customer service. | Failed to allocate the private IP address. | For details, contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0213 | Failed to update the port attributes. Try again later or contact customer service. | Failed to update the port attributes. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0214 | Failed to create the network. Try again later or contact customer service. | Failed to create the network. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0216 | Failed to create the subnet. Try again later or contact customer service. | Failed to create the subnet. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0217 | Failed to attach the NIC. Try again later or contact customer service. | Failed to attach the NIC. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0219 | Failed to create the ECS. Try again later or contact customer service. | Failed to create the ECS. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0221 | Cold migration from a dedicated host to the same dedicated host is not supported. | Failed to migrate the ECS. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0226 | Failed to start. | Failed to start the ECS. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0227 | Failed to reboot. | Failed to restart the ECS. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0301 | Failed to query the ECS. Try again later or contact customer service. | Failed to query the ECS. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0302 | Failed to query the ECS quota of the tenant. Try again later or contact customer service. | Failed to query the ECS quota of the tenant. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0303 | Failed to query the ECS specifications. Try again later or contact customer service. | Failed to query the flavor. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0304 | Failed to query the image. Try again later or contact customer service. | Failed to query the image. | Contact technical support to check whether the image has been correctly registered or to check other causes. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0306 | Failed to query the backup. Try again later or contact customer service. | Failed to query the backup. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0307 | Failed to query the port. Try again later or contact customer service. | Failed to query the port. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0308 | Failed to query the ECS quota of the tenant. Try again later or contact customer service. | Failed to query the ECS quota of the tenant. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0309 | Failed to create the NIC. Try again later or contact customer service. | Failed to query the NIC QoS. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0310 | A system exception occurred. Try again later or contact customer service. | Failed to view the network information. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0311 | Failed to obtain the disk type. Try again later or contact customer service. | Failed to query the disk type. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0313 | ECS group query failed. | Failed to query the ECS group. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0314 | The key pair does not exist. Refresh the key pair list and check key pair | Failed to obtain the key pair. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0315 | Failed to call the nova API to query the auto recovery status. | Failed to obtain the automatic recovery status. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0319 | Insufficient resources for this flavor. Try another flavor. | Insufficient flavor capacity. | Apply for expanding the flavor capacity. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0320 | AZ query failed. | Failed to obtain AZs. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0321 | Console logs query failed. | Failed to query ECS console logs. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0322 | Subnet query failed. | Failed to query details of the subnet. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0323 | Failed to query the NIC attached to the ECS. | Failed to query the NIC attachment to an ECS. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0401 | Failed to release the port. Try again later or contact customer service. | Failed to undo the operation performed on the port. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0402 | Failed to release the system disk. Try again later or contact customer service. | Failed to undo the operation performed on the system disk. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0403 | Failed to release the ECS. Try again later or contact customer service. | Failed to undo the operation performed on the ECS. | Contact technical support to locate the fault. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0405 | Failed to release the data disk. Try again later or contact customer service. | Failed to undo the operation performed on the data disk. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0501 | Failed to delete the ECS. Try again later or contact customer service. | Failed to delete the ECS. | Try again later. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0502 | Failed to delete the private IP address. Try again later or contact customer service. | Failed to delete the private IP address. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0503 | Failed to obtain the system disk. Try again later or contact customer service. | Failed to query the system disk. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0507 | Failed to delete the NIC. Try again later or contact customer service. | Failed to delete the NIC. | Check the NIC type. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 501 | Ecs.0603 | The commands are being executed. Try again later. | Other commands are being executed. Try again 1 minute later. | Try again 1 minute later. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0605 | ECS locked. | The ECS is locked. | Check whether the ECS is locked. If so, unlock it. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0611 | Batch operation failed. | Requesting for a batch operation failed. | Rectify the fault based on the returned error information and submit the request again. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 404 | Ecs.0614 | The ECS does not exist. | The ECS cannot be detected. | Check whether the ECS exists. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 500 | Ecs.0615 | The thread list is empty. | An error has occurred in the request from an ECS. | An internal system error occurred. | -| | | | | | -| | | | | Contact technical support to locate the fault. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0616 | Failed to update the ECS name. | Failed to modify the ECS. | Try again later or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0617 | Failed to modify attribute. Please try again later or contact customer service. | Failed to modify the attributes of the disk attached to an ECS. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0618 | Failed to change the IP address of the ECS NIC. | Failed to change the IP address of the ECS NIC. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0707 | The product has not been registered. | The product does not exist. | Contact technical support to locate the fault. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0810 | The ECS flavor is the same as the target flavor. | The target specifications are the same as the current ECS specifications. | Switch to another flavor. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0905 | The number of tags exceeds the maximum allowed limit. | The number of tags exceeds the maximum number allowed. | Decrease the number of tags. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0906 | Failed to comply with tag character set specifications. | Invalid tag attribute. | Create a tag again. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0907 | Invalid tag character set. | Invalid tag character set. | Create a tag again. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0908 | The tag key cannot be duplicate. | Duplicate tag key. | Create a tag again. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0909 | The flavor does not support the disk type. | The flavor does not support the disk type. | Change the flavor or disk type. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0911 | Invalid dedicated storage type of the disk. | Invalid dedicated storage type of the disk. | Modify parameter settings for the dedicated storage type. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0912 | Invalid disk encryption key. | Invalid disk encryption attribute. | Modify parameter settings for the disk encryption attribute. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0913 | The number of ECSs to be created exceeds the maximum allowed limit | The number of ECSs to be created exceeds the maximum allowed limit. | Decrease the number of ECSs to be created. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0914 | The length of the ECS name exceeds the maximum allowed limit. | The length of the ECS name exceeds the maximum allowed limit. | Change the ECS name. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0915 | The length of the ECS name exceeds the maximum allowed limit. | The ECS name contains invalid characters. | Change the ECS name. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.0919 | The NIC has been attached to another instance. | The port does not allow attaching. | Change the port. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.1000 | A system exception occurred. Try again later or contact customer service. | Failed to call the Nova API. | Internal calling error. Try again later or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.1001 | A system exception occurred. Try again later or contact customer service. | OpenStack access error. | The ECS is abnormal due to an OpenStack exception. Contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.1002 | A system exception occurred. Try again later or contact customer service. | OpenStack access timed out. | If you are switching a VPC, attaching or detaching a NIC or disk, or changing or reinstalling an OS, stop the process first and try again. | -| | | | | | -| | | | | If the retry timed out, contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.1100 | A system exception occurred. Try again later or contact customer service. | Failed to access IAM. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.1200 | A system exception occurred. Try again later or contact customer service. | Failed to access the VPC. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.1201 | A system exception occurred. Try again later or contact customer service. | VPC access timed out. | The task timed out. For details, contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Ecs.1300 | A system exception occurred. Try again later or contact customer service. | EVS access timed out. | For details, see the returned error message or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 403 | Pdp.0001 | Policy does not allow %s to be performed. | API authentication failed. | Add permissions on IAM. For details, see API permissions. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 202 | Common.0024 | exceeds flow over limit | Limited by traffic control. | The number of concurrent requests has exceeded the upper limit. Try again later. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Common.0002 | The request body cannot be left blank. | Empty request body. | Check the request body. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Common.0011 | Failed to query system tasks. | Invalid job ID. | Check whether the source of the job ID is correct. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Common.0018 | The project ID in the URL is different from that in the token. | Invalid token, or the project ID in the token is different from that in the URL. | Check whether the tenant token is correct. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Common.0020 | A system exception occurred. Try again later or contact customer service. | Failed to retry the task. | Contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Common.0021 | Subjob fails. | An error has occurred in job query. | Try again later or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Common.0022 | Mission fails. | An error has occurred in job submission. | Contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Common.0999 | The system was broken, exit. | Task terminated. | Contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Common.0025 | Query job Error because %s. | An error has occurred in job query. | Try again later or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 400 | Common.0026 | Fail to get Region Info | An error occurred in AZ query. | Try again later or contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 401 | Common.0013 | Invalid token. | Invalid token. | Check whether the tenant token is correct. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 500 | Common.0001 | A system exception occurred. Try again later or contact customer service. | A system exception occurred. | Contact technical support. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ -| 429 | Common.1503 | Api flow control Error because %s. | Limited by API traffic control. | Too many APIs are being executed. Try again later. | -+------------------+-------------+------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| HTTP Status Code | Error Code | Error Message | Description | Solution | ++==================+=============+========================================================================================================================================================+==========================================================================================+===============================================================================================================================================================+ +| 400 | Ecs.0000 | Request error. Try again later or contact customer service. | Request error. | Check the request body according to the returned error message. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0001 | Insufficient ECS quota. Contact customer service to increase quota. | The number of ECSs has reached the maximum allowed. | Apply for higher quotas of the corresponding resources based on the returned error message. | +| | | | | | +| | | | | .. note:: | +| | | | | | +| | | | | When applying for increasing ECS resource quotas, you need to evaluate the number of ECSs, vCPUs, and memory capacity (RAM) required. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0002 | A system exception occurred. Try again later or contact customer service. | Failed to submit the task. | Contact technical support to locate the fault. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 403 | Ecs.0003 | You do not have permission to perform this operation. Contact customer service to obtain permission. | You do not have permission or your balance is insufficient. | Check whether the account balance is insufficient or the account is frozen according to the returned error message. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0004 | A system exception occurred. Try again later or contact customer service. | Authentication failed. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0005 | Invalid parameter values. Contact customer service. | Invalid parameters. | Check whether the request body is of the correct JSON structure according to the API reference. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0007 | A system exception occurred. Try again later or contact customer service. | Invalid image attributes. | Adjust the specifications or image type. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0008 | A system exception occurred. Try again later or contact customer service. | Invalid flavor attributes. | Contact technical support to check whether the flavor registration is valid. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0009 | Another flavor must be used for resizing. | The flavor is not changed. | Select a flavor different from the current flavor. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0010 | The private IP address is already being used. Select another IP address. | The private IP address is already in use. | Replace the IP address with an unused one. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0011 | Ensure the password meets the password complexity requirements. | Failed to meet password complexity requirements. | Check the password length and change the password. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0012 | The subnet does not contain enough IP addresses. Release some IP addresses or select a different subnet. | The number of IP addresses in the subnet is insufficient. | Check whether the floating IP addresses of the subnet are used up. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0013 | The current EIP quota limit has been reached. Apply to increase the quota. | Insufficient EIP quota. | Apply for a higher EIP quota because the EIP quota is insufficient. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0014 | Incorrect VPC, subnet, or security group parameter values. | Invalid VPC parameters. | Check whether the subnets belong to the same VPC. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0015 | Invalid disk type for this type of ECS. Select a valid disk type and try again. | The disk of this type is not applicable to the ECS. | Check whether the disk type is supported by the flavor. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0017 | The status of the selected disk does not meet the attachment requirements on the ECS. Select an available disk for attaching. | The ECS is not the target one that the system disk or data disk is to be attached. | Check whether the **\__system__server_id** value in disk metadata is the same as the UUID of the ECS to which the system disk or data disk is to be attached. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0021 | Insufficient EVS disk quota. Contact customer service to increase quota. | Insufficient EVS disk quota. | Apply for a higher EVS disk quota. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0022 | Insufficient ECS group quota. Contact customer service to increase quota. | The number of ECSs in the ECS group exceeded the upper limit. | Apply for a higher ECS quota for an ECS group. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0023 | project_id in token mismatches with project_id in url. | Invalid token, or the project ID in the token is different from that in the URL. | Apply for a valid token or check the project ID in the URL. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0025 | EVS is not authorized to obtain KMS keys for encrypting EVS disks. | EVS is not authorized to obtain KMS keys for encrypting EVS disks. | Authorize EVS to obtain KMS keys for encrypting EVS disks. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0029 | The flavor does not exist. | The flavor does not exist or has been abandoned. | Switch to another flavor. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0030 | The ECS has been frozen and does not support specifications modification. | The ECS has been frozen. | Check whether the account has been frozen or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0031 | The image does not exist. | The image does not exist. | Replace the image. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0032 | The image is not in Active state. | The image is not in **Active** state. | Replace the image. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0034 | The full-ECS backup does not exist or has been deleted. | The full-ECS backup does not exist or has been deleted. | Replace the image. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0036 | The flavor does not support automatic recovery. | The flavor does not support automatic recovery. | Change another flavor. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0037 | The flavor does not support SCSI disks. | The flavor does not support SCSI disks. | Change another flavor or type. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0038 | The subnet does not exist. | The subnet does not exist. | Adjust the network parameter settings. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0039 | The specified IP address does not belong to the subnet. | The specified IP address does not belong to the subnet. | Change the specified private IP address. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0041 | Invalid description field. | Invalid description field. | Modify the service description field. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0042 | The number of attached data disks exceeds the maximum allowed limit. | The number of attached data disks exceeds the maximum allowed limit. | Adjust the number of attached data disks. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0043 | The disk type does not exist. | The disk type does not exist. | Change the disk type. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0044 | The disk of this type has been sold out. | The disk of this type has been sold out. | Change the disk type. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0045 | The bandwidth exceeds the maximum allowed limit. | The bandwidth exceeds the maximum size allowed. | Adjust the bandwidth. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0046 | When creating an ECS using an image, ensure that the type of the attached data disk is the same as that required by the image. | The disk type of the ECS is different from that of the snapshot image. | Change the disk type. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0048 | Ensure that the image status is Normal and that the status of the CSBS backup associated with the image is Available or Creating, and try again later. | The full-ECS image is unavailable. | Check the full-ECS image. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0050 | The number of NICs attached to the ECS exceeds the quota. | The number of NICs attached to the ECS exceeds the maximum value allowed. | Adjust the number of NICs. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0051 | Only SCSI disks can be attached to the ECSs of this flavor. | The attached disk is not of SCSI type. | Change the disk type. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0052 | Only SCSI system disks can be attached to the ECSs of this flavor. | The attached system disk is not of SCSI type. | Change the system disk type. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0053 | Only SCSI data disks can be attached to the ECSs of this flavor. | The attached data disk is not of SCSI type. | Change the data disk type. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0057 | The disk has already been attached to the ECS and you cannot repeatedly attach it. | The disk has been attached to the ECS. | Attach a new disk to the ECS. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0058 | You do not have permission to use a third-party image to create ECSs. | The **provideId** of the image does not match the account ID. | Check the account permission and image. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0062 | The flavor does not support the driver mode. | The flavor does not allow settings of the NIC driver type. | Change another flavor. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0064 | The VPC ID in the request is inconsistent with that in the main subnet ID. | Inconsistent VPC ID in the request body with that in the primary NIC. | Adjust the NIC parameter settings. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 403 | Ecs.0066 | This operation cannot be performed because real-name authentication has not been completed. | Restricted due to lack of real-name authentication. | Check whether the account is restricted due to lack of real-name authentication. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 403 | Ecs.0067 | Insufficient account balance. | Restricted due to insufficient balance. | Check whether the account is restricted due to insufficient balance. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 403 | Ecs.0068 | This operation cannot be performed by partners. | Restricted due to a non-partner. | Check whether the account is restricted due to a non-partner. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 403 | Ecs.0069 | You have not associated a payment method with your account. | Restricted due to incomplete payment information. | Check whether the payment information of the account is complete. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 403 | Ecs.0070 | Insufficient budget. Contact the enterprise administrator and request for a budget increase. | Restricted because account budget of the enterprise department is insufficient. | Check whether the budget of the enterprise department account is sufficient. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 403 | Ecs.0071 | This operation cannot be performed because your account has been suspended. | Restricted due to a malicious account. | Check whether the account is malicious. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0073 | The system disk is being backed up. Wait until the execution is complete and try again. | The system disk is being backed up. | You are not allowed to delete a system disk that is being backed up. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0074 | Windows images do not support external users. | External users are not allowed to create Windows ECSs. | External users, including non-third-party users, are not allowed to purchase Windows images. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0075 | Partners only support Windows images. | Partners can purchase only Windows images. | Purchase only Windows images. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0085 | The server does not have the interface. | The ECS does not have the NIC. | Replace a NIC. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0086 | The interface is not the primary interface. | The NIC is not the primary NIC. | Replace a NIC. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0090 | Image license type is BYOL, the BYOL feature is not supported at this time. | BYOL image features are not supported in this region. | Change the image or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0100 | The ECS status does not meet requirements. Make the ECS in the required status and try again. | The ECS status does not meet requirements. | The current ECS status does not support the operation. Change the ECS status to the specified status and try again. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0101 | The system disk is currently unresponsive. Try again later or contact customer service. | Abnormal system disk status. | For details, contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0102 | The data disk is currently unresponsive. Try again later or contact customer service. | The system disk status does not allow the disk to be detached. | Check the system disk status. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0103 | The disk can be attached to a server only when it exists and is in the Available state. Check the disk status and try again. | The disk is unavailable. | Check the disk status or contact technical support to change the disk status. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0104 | The number of EVS disks that can be attached to the ECS has reached the maximum number allowed. Detach some disks and try again. | Insufficient ECS disk quota for attaching more disks. | Detach some attached disks from the ECS and try to attach new disks. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0105 | No system disk found. Attach the system disk to the ECS and try again. | Failed to query the ECS system disk. | Attach the system disk to the ECS and try again. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0106 | A network exception occurred. Try again later or contact customer service. | Abnormal network status. | Contact technical support to locate the fault. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 403 | Ecs.0110 | Contact the main account to obtain permission. | Operations are prohibited on the client due to permissions. | You do not have the permission to perform such an operation. Check token permissions. For details, see the error message returned by the API. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0111 | The EVS disk has been detached from the ECS. Refresh the disk list and check the disk. | The disk is not in the attachment list. | Check whether the selected disk has been attached to the ECS, or replace the disk. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 404 | Ecs.0114 | The ECS does not exist. | The ECS cannot be detected. | Check whether the ECS has been created. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0118 | The number of ECSs exceeds the maximum allowed limit. | The number of tasks in a batch is greater than the upper limit. | Check the number of ECSs in the batch. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0121 | The disk cannot be attached to the ECS because the disk and the ECS are in different failure domains. | Failed to attach the disk because the ECS and the disk are in different failure domains. | Select a disk that is in the same failure domain as that of the target ECS. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0201 | Failed to create the NIC. Try again later or contact customer service. | Failed to create the NIC. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0202 | Failed to create the system disk. Try again later or contact customer service. | Failed to create the system disk. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0203 | Failed to create the data disk. Try again later or contact customer service. | Failed to create the data disk. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0204 | Failed to create the ECS. Try again later or contact customer service. | Failed to create the ECS. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0205 | Failed to attach the data disk. Try again later or contact customer service. | Failed to attach the data disk. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0207 | Failed to modify the ECS specifications. Try again later or contact customer service. | Failed to modify ECS specifications. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0208 | A system exception occurred. Try again later or contact customer service. | Failed to update the image metadata. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0209 | Failed to modify the ECS specifications. Try again or contact customer service. | Failed to confirm the ECS specifications modification. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0210 | A system exception occurred. Try again later or contact customer service. | Failed to assign the floating IP address. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0211 | Failed to create the NIC. Try again later or contact customer service. | Failed to create the NIC QoS. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0212 | Failed to assign the private IP address. Try again later or contact customer service. | Failed to allocate the private IP address. | For details, contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0213 | Failed to update the port attributes. Try again later or contact customer service. | Failed to update the port attributes. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0214 | Failed to create the network. Try again later or contact customer service. | Failed to create the network. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0216 | Failed to create the subnet. Try again later or contact customer service. | Failed to create the subnet. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0217 | Failed to attach the NIC. Try again later or contact customer service. | Failed to attach the NIC. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0219 | Failed to create the ECS. Try again later or contact customer service. | Failed to create the ECS. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0221 | Cold migration from a dedicated host to the same dedicated host is not supported. | Failed to migrate the ECS. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0226 | Failed to start. | Failed to start the ECS. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0227 | Failed to reboot. | Failed to restart the ECS. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0301 | Failed to query the ECS. Try again later or contact customer service. | Failed to query the ECS. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0302 | Failed to query the ECS quota of the tenant. Try again later or contact customer service. | Failed to query the ECS quota of the tenant. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0303 | Failed to query the ECS specifications. Try again later or contact customer service. | Failed to query the flavor. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0304 | Failed to query the image. Try again later or contact customer service. | Failed to query the image. | Contact technical support to check whether the image has been correctly registered or to check other causes. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0306 | Failed to query the backup. Try again later or contact customer service. | Failed to query the backup. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0307 | Failed to query the port. Try again later or contact customer service. | Failed to query the port. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0308 | Failed to query the ECS quota of the tenant. Try again later or contact customer service. | Failed to query the ECS quota of the tenant. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0309 | Failed to create the NIC. Try again later or contact customer service. | Failed to query the NIC QoS. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0310 | A system exception occurred. Try again later or contact customer service. | Failed to view the network information. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0311 | Failed to obtain the disk type. Try again later or contact customer service. | Failed to query the disk type. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0313 | ECS group query failed. | Failed to query the ECS group. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0314 | The key pair does not exist. Refresh the key pair list and check the key pair. | Failed to obtain the key pair. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0315 | Failed to call the nova API to query the auto recovery status. | Failed to obtain the automatic recovery status. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0319 | Insufficient resources for this flavor. Try another flavor. | Insufficient flavor capacity. | Apply for expanding the flavor capacity. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0320 | AZ query failed. | Failed to obtain AZs. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0321 | Console logs query failed. | Failed to query ECS console logs. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0322 | Subnet query failed. | Failed to query details of the subnet. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0323 | Failed to query the NIC attached to the ECS. | Failed to query the NIC attachment to an ECS. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0401 | Failed to release the port. Try again later or contact customer service. | Failed to undo the operation performed on the port. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0402 | Failed to release the system disk. Try again later or contact customer service. | Failed to undo the operation performed on the system disk. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0403 | Failed to release the ECS. Try again later or contact customer service. | Failed to undo the operation performed on the ECS. | Contact technical support to locate the fault. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0405 | Failed to release the data disk. Try again later or contact customer service. | Failed to undo the operation performed on the data disk. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0501 | Failed to delete the ECS. Try again later or contact customer service. | Failed to delete the ECS. | Try again later. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0502 | Failed to delete the private IP address. Try again later or contact customer service. | Failed to delete the private IP address. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0503 | Failed to obtain the system disk. Try again later or contact customer service. | Failed to query the system disk. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0507 | Failed to delete the NIC. Try again later or contact customer service. | Failed to delete the NIC. | Check the NIC type. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 501 | Ecs.0603 | The commands are being executed. Try again later. | Other commands are being executed. Try again 1 minute later. | Try again 1 minute later. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0605 | ECS locked. | The ECS is locked. | Check whether the ECS is locked. If so, unlock it. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0611 | Batch operation failed. | Request for batch operations failed. | Rectify the fault based on the returned error information and submit the request again. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 404 | Ecs.0614 | The ECS does not exist. | The ECS cannot be detected. | Check whether the ECS exists. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 500 | Ecs.0615 | The thread list is empty. | An error has occurred in the request from an ECS. | An internal system error occurred. | +| | | | | | +| | | | | Contact technical support to locate the fault. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0616 | Failed to update the ECS name. | Failed to modify the ECS. | Try again later or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0617 | Failed to modify attribute. Please try again later or contact customer service. | Failed to modify the attributes of the disk attached to an ECS. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0618 | Failed to change the IP address of the ECS NIC. | Failed to change the IP address of the ECS NIC. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0707 | The product has not been registered. | The product does not exist. | Contact technical support to locate the fault. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0810 | The ECS flavor is the same as the target flavor. | The target specifications are the same as the current ECS specifications. | Switch to another flavor. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0905 | The number of tags exceeds the maximum allowed limit. | The number of tags exceeds the maximum number allowed. | Decrease the number of tags. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0906 | Failed to comply with tag character set specifications. | Invalid tag attribute. | Create a tag again. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0907 | Invalid tag character set. | Invalid tag character set. | Create a tag again. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0908 | The tag key cannot be duplicate. | Duplicate tag key. | Create a tag again. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0909 | The flavor does not support the disk type. | The flavor does not support the disk type. | Change the flavor or disk type. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0911 | Invalid dedicated storage type of the disk. | Invalid dedicated storage type of the disk. | Modify parameter settings for the dedicated storage type. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0912 | Invalid disk encryption key. | Invalid disk encryption attribute. | Modify parameter settings for the disk encryption attribute. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0913 | The number of ECSs to be created exceeds the maximum allowed limit | The number of ECSs to be created exceeds the maximum allowed limit. | Decrease the number of ECSs to be created. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0914 | The length of the ECS name exceeds the maximum allowed limit. | The length of the ECS name exceeds the maximum allowed limit. | Change the ECS name. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0915 | The length of the ECS name exceeds the maximum allowed limit. | The ECS name contains invalid characters. | Change the ECS name. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.0919 | The NIC has been attached to another instance. | The port does not allow attaching. | Change the port. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.1000 | A system exception occurred. Try again later or contact customer service. | Failed to call the Nova API. | Internal calling error. Try again later or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.1001 | A system exception occurred. Try again later or contact customer service. | OpenStack access error. | The ECS is abnormal due to an OpenStack exception. Contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.1002 | A system exception occurred. Try again later or contact customer service. | OpenStack access timed out. | If you are switching a VPC, attaching or detaching a NIC or disk, or changing or reinstalling an OS, stop the process first and try again. | +| | | | | | +| | | | | If the retry timed out, contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.1100 | A system exception occurred. Try again later or contact customer service. | Failed to access IAM. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.1200 | A system exception occurred. Try again later or contact customer service. | Failed to access the VPC. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.1201 | A system exception occurred. Try again later or contact customer service. | VPC access timed out. | The task timed out. For details, contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Ecs.1300 | A system exception occurred. Try again later or contact customer service. | EVS access timed out. | For details, see the returned error message or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 403 | Pdp.0001 | Policy does not allow %s to be performed. | API authentication failed. | Add permissions on IAM. For details, see API permissions. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 202 | Common.0024 | Flow limit exceeded. | Limited by traffic control. | The number of concurrent requests has exceeded the upper limit. Try again later. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Common.0002 | The request body cannot be left blank. | Empty request body. | Check the request body. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Common.0011 | Failed to query system tasks. | Invalid job ID. | Check whether the source of the job ID is correct. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Common.0018 | The project ID in the URL is different from that in the token. | Invalid token, or the project ID in the token is different from that in the URL. | Check whether the tenant token is correct. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Common.0020 | A system exception occurred. Try again later or contact customer service. | Failed to retry the task. | Contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Common.0021 | Subjob fails. | An error has occurred in job query. | Try again later or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Common.0022 | Mission fails. | An error has occurred in job submission. | Contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Common.0999 | The system was broken, exit. | Task terminated. | Contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Common.0025 | Query job Error because %s. | An error has occurred in job query. | Try again later or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 400 | Common.0026 | Fail to get Region Info | An error occurred in AZ query. | Try again later or contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 401 | Common.0013 | Invalid token. | Invalid token. | Check whether the tenant token is correct. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 500 | Common.0001 | A system exception occurred. Try again later or contact customer service. | A system exception occurred. | Contact technical support. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| 429 | Common.1503 | Api flow control Error because %s. | Limited by API traffic control. | Too many APIs are being executed. Try again later. | ++------------------+-------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------+ diff --git a/api-ref/source/common_parameters/returned_values_for_general_requests.rst b/api-ref/source/common_parameters/returned_values_for_general_requests.rst index a0147b56..e718dcbb 100644 --- a/api-ref/source/common_parameters/returned_values_for_general_requests.rst +++ b/api-ref/source/common_parameters/returned_values_for_general_requests.rst @@ -30,7 +30,7 @@ Returned Values for General Requests +-----------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+ | 401 Unauthorized | You need to enter the username and password to access the page requested. | +-----------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+ - | 403 Forbidden | You are forbidden to access the page requested. | + | 403 Forbidden | Access to the requested page is denied. | +-----------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+ | 404 Not Found | The server cannot find the page requested. | +-----------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+ diff --git a/api-ref/source/native_openstack_nova_apis/api_version_query/index.rst b/api-ref/source/native_openstack_nova_apis/api_version_query/index.rst index f8de170e..8aba846f 100644 --- a/api-ref/source/native_openstack_nova_apis/api_version_query/index.rst +++ b/api-ref/source/native_openstack_nova_apis/api_version_query/index.rst @@ -5,12 +5,12 @@ API Version Query ================= -- :ref:`Querying All API Versions ` +- :ref:`Listing API Versions ` - :ref:`Querying a Specified API Version ` .. toctree:: :maxdepth: 1 :hidden: - querying_all_api_versions + listing_api_versions querying_a_specified_api_version diff --git a/api-ref/source/native_openstack_nova_apis/api_version_query/querying_all_api_versions.rst b/api-ref/source/native_openstack_nova_apis/api_version_query/listing_api_versions.rst similarity index 98% rename from api-ref/source/native_openstack_nova_apis/api_version_query/querying_all_api_versions.rst rename to api-ref/source/native_openstack_nova_apis/api_version_query/listing_api_versions.rst index dd159e8f..b2ec6b32 100644 --- a/api-ref/source/native_openstack_nova_apis/api_version_query/querying_all_api_versions.rst +++ b/api-ref/source/native_openstack_nova_apis/api_version_query/listing_api_versions.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0065792793: -Querying All API Versions -========================= +Listing API Versions +==================== Function -------- -This API is used to query all available Nova versions. +This API is used to list all available Nova versions. To support function extension, Nova APIs can be distinguished by version. There are two types of versions: @@ -87,7 +87,7 @@ The following table describes the response parameters. Example Request --------------- -Query all API versions. +List supported API versions. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/az/index.rst b/api-ref/source/native_openstack_nova_apis/az/index.rst index 388b56ee..0ace3885 100644 --- a/api-ref/source/native_openstack_nova_apis/az/index.rst +++ b/api-ref/source/native_openstack_nova_apis/az/index.rst @@ -5,10 +5,10 @@ AZ == -- :ref:`Querying AZs ` +- :ref:`Listing AZs ` .. toctree:: :maxdepth: 1 :hidden: - querying_azs + listing_azs diff --git a/api-ref/source/native_openstack_nova_apis/az/querying_azs.rst b/api-ref/source/native_openstack_nova_apis/az/listing_azs.rst similarity index 98% rename from api-ref/source/native_openstack_nova_apis/az/querying_azs.rst rename to api-ref/source/native_openstack_nova_apis/az/listing_azs.rst index e0794702..b1d21b39 100644 --- a/api-ref/source/native_openstack_nova_apis/az/querying_azs.rst +++ b/api-ref/source/native_openstack_nova_apis/az/listing_azs.rst @@ -2,8 +2,8 @@ .. _en-us_topic_0065817728: -Querying AZs -============ +Listing AZs +=========== Function -------- @@ -71,7 +71,7 @@ Response Example Request --------------- -Query a list of AZs. +List AZs. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/disk_management/index.rst b/api-ref/source/native_openstack_nova_apis/disk_management/index.rst index 94c8dbe6..a7d48dd4 100644 --- a/api-ref/source/native_openstack_nova_apis/disk_management/index.rst +++ b/api-ref/source/native_openstack_nova_apis/disk_management/index.rst @@ -5,7 +5,7 @@ Disk Management =============== -- :ref:`Querying Disks Attached to an ECS ` +- :ref:`Listing Details About Disks Attached to an ECS ` - :ref:`Querying a Disk Attached to an ECS ` - :ref:`Attaching an ECS Data Disk ` - :ref:`Detaching a Disk from an ECS ` @@ -14,7 +14,7 @@ Disk Management :maxdepth: 1 :hidden: - querying_disks_attached_to_an_ecs + listing_details_about_disks_attached_to_an_ecs querying_a_disk_attached_to_an_ecs attaching_an_ecs_data_disk detaching_a_disk_from_an_ecs diff --git a/api-ref/source/native_openstack_nova_apis/disk_management/querying_disks_attached_to_an_ecs.rst b/api-ref/source/native_openstack_nova_apis/disk_management/listing_details_about_disks_attached_to_an_ecs.rst similarity index 93% rename from api-ref/source/native_openstack_nova_apis/disk_management/querying_disks_attached_to_an_ecs.rst rename to api-ref/source/native_openstack_nova_apis/disk_management/listing_details_about_disks_attached_to_an_ecs.rst index ce13c419..753bf546 100644 --- a/api-ref/source/native_openstack_nova_apis/disk_management/querying_disks_attached_to_an_ecs.rst +++ b/api-ref/source/native_openstack_nova_apis/disk_management/listing_details_about_disks_attached_to_an_ecs.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0020212671: -Querying Disks Attached to an ECS -================================= +Listing Details About Disks Attached to an ECS +============================================== Function -------- -This API is used to query the disks that have been and are being attached to an ECS. +This API is used to list details about disks that have been and are being attached to an ECS. URI --- @@ -68,7 +68,7 @@ Response Example Request --------------- -Query details about disks attached to an ECS. +List details about disks attached to an ECS. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/ecs_operation_management/index.rst b/api-ref/source/native_openstack_nova_apis/ecs_operation_management/index.rst index e0c69db7..1c30852e 100644 --- a/api-ref/source/native_openstack_nova_apis/ecs_operation_management/index.rst +++ b/api-ref/source/native_openstack_nova_apis/ecs_operation_management/index.rst @@ -5,12 +5,12 @@ ECS Operation Management ======================== -- :ref:`Querying Operations on an ECS ` +- :ref:`Listing Actions on an ECS ` - :ref:`Querying ECS Operations by Request ID ` .. toctree:: :maxdepth: 1 :hidden: - querying_operations_on_an_ecs + listing_actions_on_an_ecs querying_ecs_operations_by_request_id diff --git a/api-ref/source/native_openstack_nova_apis/ecs_operation_management/querying_operations_on_an_ecs.rst b/api-ref/source/native_openstack_nova_apis/ecs_operation_management/listing_actions_on_an_ecs.rst similarity index 95% rename from api-ref/source/native_openstack_nova_apis/ecs_operation_management/querying_operations_on_an_ecs.rst rename to api-ref/source/native_openstack_nova_apis/ecs_operation_management/listing_actions_on_an_ecs.rst index 6c255d06..bb219231 100644 --- a/api-ref/source/native_openstack_nova_apis/ecs_operation_management/querying_operations_on_an_ecs.rst +++ b/api-ref/source/native_openstack_nova_apis/ecs_operation_management/listing_actions_on_an_ecs.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0065817692: -Querying Operations on an ECS -============================= +Listing Actions on an ECS +========================= Function -------- -This API is used to query all historical operations on an ECS. +This API is used to list all historical actions on an ECS. URI --- @@ -62,11 +62,11 @@ Response .. table:: **Table 3** Response parameters - +-----------------+-----------------+-------------------------------------------------------------------------------------------------------------------------------------------+ - | Parameter | Type | Description | - +=================+=================+===========================================================================================================================================+ - | instanceActions | Array of Object | Specifies operations performed on the ECS. For details, see :ref:`Table 4 `. | - +-----------------+-----------------+-------------------------------------------------------------------------------------------------------------------------------------------+ + +-----------------+-----------------+----------------------------------------------------------------------------------------------------------------------------------------------------+ + | Parameter | Type | Description | + +=================+=================+====================================================================================================================================================+ + | instanceActions | Array of Object | Specifies the list of actions performed on the ECS. For details, see :ref:`Table 4 `. | + +-----------------+-----------------+----------------------------------------------------------------------------------------------------------------------------------------------------+ .. _en-us_topic_0065817692__en-us_topic_0057973177_table2407422: @@ -83,7 +83,7 @@ Response +-----------------+-----------------+-----------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | instance_uuid | Yes | String | Specifies the ECS ID in UUID format. | +-----------------+-----------------+-----------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ - | message | Yes | String | Specifies the result status of the operation. | + | message | Yes | String | Specifies the result status of the action. | +-----------------+-----------------+-----------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | project_id | Yes | String | Specifies the project ID. | +-----------------+-----------------+-----------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ @@ -97,7 +97,7 @@ Response Example Request --------------- -Query all historical operations on a specified ECS. +List all historical actions on a specified ECS. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/flavor_management/index.rst b/api-ref/source/native_openstack_nova_apis/flavor_management/index.rst index 6576762e..caa65334 100644 --- a/api-ref/source/native_openstack_nova_apis/flavor_management/index.rst +++ b/api-ref/source/native_openstack_nova_apis/flavor_management/index.rst @@ -5,8 +5,8 @@ Flavor Management ================= -- :ref:`Querying ECS Flavors ` -- :ref:`Querying Details About ECS Flavors ` +- :ref:`Listing ECS Flavors ` +- :ref:`Listing Flavor Details About an ECS ` - :ref:`Querying Details About an ECS Flavor ` - :ref:`Querying the extra_specs Value for an ECS Flavor ` @@ -14,7 +14,7 @@ Flavor Management :maxdepth: 1 :hidden: - querying_ecs_flavors - querying_details_about_ecs_flavors + listing_ecs_flavors + listing_flavor_details_about_an_ecs querying_details_about_an_ecs_flavor querying_the_extra_specs_value_for_an_ecs_flavor diff --git a/api-ref/source/native_openstack_nova_apis/flavor_management/querying_ecs_flavors.rst b/api-ref/source/native_openstack_nova_apis/flavor_management/listing_ecs_flavors.rst similarity index 97% rename from api-ref/source/native_openstack_nova_apis/flavor_management/querying_ecs_flavors.rst rename to api-ref/source/native_openstack_nova_apis/flavor_management/listing_ecs_flavors.rst index 443286c8..ef8ea496 100644 --- a/api-ref/source/native_openstack_nova_apis/flavor_management/querying_ecs_flavors.rst +++ b/api-ref/source/native_openstack_nova_apis/flavor_management/listing_ecs_flavors.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0065817705: -Querying ECS Flavors -==================== +Listing ECS Flavors +=================== Function -------- -This API is used to query available ECS flavors. After receiving the request, Nova uses nova-api to view the flavors from the database. +This API is used to list available ECS flavors. After receiving the request, Nova uses nova-api to view the flavors from the database. URI --- @@ -101,7 +101,7 @@ Response Example Request --------------- -Query available ECS flavors. +List available ECS flavors. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/flavor_management/querying_details_about_ecs_flavors.rst b/api-ref/source/native_openstack_nova_apis/flavor_management/listing_flavor_details_about_an_ecs.rst similarity index 98% rename from api-ref/source/native_openstack_nova_apis/flavor_management/querying_details_about_ecs_flavors.rst rename to api-ref/source/native_openstack_nova_apis/flavor_management/listing_flavor_details_about_an_ecs.rst index 32d10eae..4f0a0651 100644 --- a/api-ref/source/native_openstack_nova_apis/flavor_management/querying_details_about_ecs_flavors.rst +++ b/api-ref/source/native_openstack_nova_apis/flavor_management/listing_flavor_details_about_an_ecs.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0020212658: -Querying Details About ECS Flavors -================================== +Listing Flavor Details About an ECS +=================================== Function -------- -This API is used to query details about ECS flavors. +This API is used to list flavor details about an ECS. URI --- @@ -128,7 +128,7 @@ Response Example Request --------------- -Query details about ECS flavors. +List flavor details about an ECS. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/key_and_password_management/index.rst b/api-ref/source/native_openstack_nova_apis/key_and_password_management/index.rst index 8537ac7f..43cf525d 100644 --- a/api-ref/source/native_openstack_nova_apis/key_and_password_management/index.rst +++ b/api-ref/source/native_openstack_nova_apis/key_and_password_management/index.rst @@ -5,7 +5,7 @@ Key and Password Management =========================== -- :ref:`Querying SSH Key Pairs ` +- :ref:`Listing SSH Key Pairs ` - :ref:`Querying a Specified SSH Key Pair ` - :ref:`Creating and Importing an SSH Key Pair ` - :ref:`Deleting an SSH Key ` @@ -16,7 +16,7 @@ Key and Password Management :maxdepth: 1 :hidden: - querying_ssh_key_pairs + listing_ssh_key_pairs querying_a_specified_ssh_key_pair creating_and_importing_an_ssh_key_pair deleting_an_ssh_key diff --git a/api-ref/source/native_openstack_nova_apis/key_and_password_management/querying_ssh_key_pairs.rst b/api-ref/source/native_openstack_nova_apis/key_and_password_management/listing_ssh_key_pairs.rst similarity index 97% rename from api-ref/source/native_openstack_nova_apis/key_and_password_management/querying_ssh_key_pairs.rst rename to api-ref/source/native_openstack_nova_apis/key_and_password_management/listing_ssh_key_pairs.rst index 1109d328..ca9a04e7 100644 --- a/api-ref/source/native_openstack_nova_apis/key_and_password_management/querying_ssh_key_pairs.rst +++ b/api-ref/source/native_openstack_nova_apis/key_and_password_management/listing_ssh_key_pairs.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0020212676: -Querying SSH Key Pairs -====================== +Listing SSH Key Pairs +===================== Function -------- -This API is used to query SSH key pairs. +This API is used to list SSH key pairs. URI --- @@ -80,7 +80,7 @@ Response Example Request --------------- -Query the list of SSH key pairs. +List SSH key pairs. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/lifecycle_management/creating_an_ecs.rst b/api-ref/source/native_openstack_nova_apis/lifecycle_management/creating_an_ecs.rst index 74c4314e..96001658 100644 --- a/api-ref/source/native_openstack_nova_apis/lifecycle_management/creating_an_ecs.rst +++ b/api-ref/source/native_openstack_nova_apis/lifecycle_management/creating_an_ecs.rst @@ -10,7 +10,7 @@ Function This API is used to create ECS. -This API does not support automatic rollback after creating an ECS failed. If automatic rollback is required, call the API POST /v1/{project_id}/cloudservers. For details, see :ref:`Creating an ECS `. +This API does not support automatic rollback after creating an ECS failed. If automatic rollback is required, call the API POST /v1/{project_id}/cloudservers. For details, see :ref:`Creating ECSs `. URI --- @@ -35,14 +35,14 @@ POST /v2/{project_id}/servers Alias of the API for creating ECSs: /v2/{project_id}/os-volumes_boot - This calling mode can only be used in OpenStack client. + This calling mode can only be used in OpenStack client and is not recommended. Constraints ----------- -#. This API is native, which does not support the creation of ECSs using full-ECS images. To use full-ECS images to create ECSs, refer to :ref:`Creating an ECS `. +#. This API is native, which does not support the creation of ECSs using full-ECS images. To use full-ECS images to create ECSs, refer to :ref:`Creating ECSs `. -#. When using this API to create an ECS, you cannot bind an EIP to the ECS during the creation process. To do so, see :ref:`Creating an ECS `. +#. When using this API to create an ECS, you cannot bind an EIP to the ECS during the creation process. To do so, see :ref:`Creating ECSs `. #. Parameter **port** in the three network parameters (**port**, **uuid**, and **fixed_ip**) has the highest priority. If parameter **fixed_ip** is set, you must specify the UUID. diff --git a/api-ref/source/native_openstack_nova_apis/lifecycle_management/index.rst b/api-ref/source/native_openstack_nova_apis/lifecycle_management/index.rst index f546015e..b7b0a0f4 100644 --- a/api-ref/source/native_openstack_nova_apis/lifecycle_management/index.rst +++ b/api-ref/source/native_openstack_nova_apis/lifecycle_management/index.rst @@ -8,8 +8,8 @@ Lifecycle Management - :ref:`Creating an ECS ` - :ref:`Modifying an ECS ` - :ref:`Deleting an ECS ` -- :ref:`Querying the ECS List ` -- :ref:`Querying Details About ECSs ` +- :ref:`Listing ECSs ` +- :ref:`Listing ECS Details ` - :ref:`Querying Details About an ECS ` .. toctree:: @@ -19,6 +19,6 @@ Lifecycle Management creating_an_ecs modifying_an_ecs deleting_an_ecs - querying_the_ecs_list - querying_details_about_ecss + listing_ecss + listing_ecs_details querying_details_about_an_ecs diff --git a/api-ref/source/native_openstack_nova_apis/lifecycle_management/querying_details_about_ecss.rst b/api-ref/source/native_openstack_nova_apis/lifecycle_management/listing_ecs_details.rst similarity index 99% rename from api-ref/source/native_openstack_nova_apis/lifecycle_management/querying_details_about_ecss.rst rename to api-ref/source/native_openstack_nova_apis/lifecycle_management/listing_ecs_details.rst index 3da716db..8c4a7bb5 100644 --- a/api-ref/source/native_openstack_nova_apis/lifecycle_management/querying_details_about_ecss.rst +++ b/api-ref/source/native_openstack_nova_apis/lifecycle_management/listing_ecs_details.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0020212689: -Querying Details About ECSs -=========================== +Listing ECS Details +=================== Function -------- -This API is used to query details about ECSs. +This API is used to list ECS details. URI --- @@ -58,7 +58,7 @@ GET /v2/{project_id}/servers/detail?changes-since={changes-since}&image={image}& | | | | | | | | | Each page contains 25 ECSs by default, and a maximum of 1,000 ECSs are returned. For large data volumes, you are advised to set this parameter to **100**. | +-----------------+-----------------+-----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ - | marker | No | String | Specifies the ECS ID to which the marker points. The query will start from its next ID. | + | marker | No | String | Specifies the ECS ID to which the marker points. The query will start from the next ID. | +-----------------+-----------------+-----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | tags | No | String | Queries ECSs with tags containing the specified value. | +-----------------+-----------------+-----------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ @@ -339,7 +339,7 @@ Response .. _en-us_topic_0020212689__table1656029015527: -.. table:: **Table 7** Data structure of the network which an ECS accesses +.. table:: **Table 7** Data structure of the network that an ECS accesses +-------------------------+-----------------------+-----------------------------------------------------------------------------------------+ | Parameter | Type | Description | @@ -429,7 +429,7 @@ Response Example Request --------------- -Query details about ECSs. +List ECS details. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/lifecycle_management/querying_the_ecs_list.rst b/api-ref/source/native_openstack_nova_apis/lifecycle_management/listing_ecss.rst similarity index 99% rename from api-ref/source/native_openstack_nova_apis/lifecycle_management/querying_the_ecs_list.rst rename to api-ref/source/native_openstack_nova_apis/lifecycle_management/listing_ecss.rst index e08a9b18..a44c7a8b 100644 --- a/api-ref/source/native_openstack_nova_apis/lifecycle_management/querying_the_ecs_list.rst +++ b/api-ref/source/native_openstack_nova_apis/lifecycle_management/listing_ecss.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0020212688: -Querying the ECS List -===================== +Listing ECSs +============ Function -------- -This API is used to query ECSs. +This API is used to list ECSs. URI --- @@ -58,7 +58,7 @@ GET /v2/{project_id}/servers?changes-since={changes-since}&image={image}&flavor= | | | | | | | | | The default value on each page is 25, and the information of a maximum of 1,000 ECSs is displayed on each page. | +-----------------+-----------------+-----------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ - | marker | No | String | Specifies the ECS ID to which the marker points. The query will start from its next ID. | + | marker | No | String | Specifies the ECS ID to which the marker points. The query will start from the next ID. | +-----------------+-----------------+-----------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | tags | No | String | Queries ECSs with tags containing the specified value. | +-----------------+-----------------+-----------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ @@ -131,7 +131,7 @@ Response Example Request --------------- -Query a list of ECSs. +List ECSs. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/lifecycle_management/querying_details_about_an_ecs.rst b/api-ref/source/native_openstack_nova_apis/lifecycle_management/querying_details_about_an_ecs.rst index 3c1c7033..8082b5d3 100644 --- a/api-ref/source/native_openstack_nova_apis/lifecycle_management/querying_details_about_an_ecs.rst +++ b/api-ref/source/native_openstack_nova_apis/lifecycle_management/querying_details_about_an_ecs.rst @@ -88,6 +88,8 @@ Response | metadata | Object | Specifies the ECS metadata. | +--------------------------------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | hostId | String | Specifies the host ID of the ECS. | + | | | | + | | | The returned value is not the actual ID of the host where the ECS is located. | +--------------------------------------+-----------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | addresses | Object | Specifies the network addresses of an ECS. | | | | | @@ -367,7 +369,7 @@ Response Example Request --------------- -Query details about a specified ECS. +Query details about the specified ECS. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/nic_management/deleting_a_nic_from_an_ecs.rst b/api-ref/source/native_openstack_nova_apis/nic_management/detaching_a_nic_from_an_ecs.rst similarity index 95% rename from api-ref/source/native_openstack_nova_apis/nic_management/deleting_a_nic_from_an_ecs.rst rename to api-ref/source/native_openstack_nova_apis/nic_management/detaching_a_nic_from_an_ecs.rst index d445f379..d1521ff3 100644 --- a/api-ref/source/native_openstack_nova_apis/nic_management/deleting_a_nic_from_an_ecs.rst +++ b/api-ref/source/native_openstack_nova_apis/nic_management/detaching_a_nic_from_an_ecs.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0020212666: -Deleting a NIC from an ECS -========================== +Detaching a NIC from an ECS +=========================== Function -------- -This API is used to delete a NIC from an ECS based on the port ID. +This API is used to detach a NIC from an ECS based on the port ID. Constraints ----------- @@ -63,7 +63,7 @@ None Example Request --------------- -Delete a NIC from an ECS based on the specified port ID. +Detach a NIC from an ECS based on the specified port ID. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/nic_management/index.rst b/api-ref/source/native_openstack_nova_apis/nic_management/index.rst index 0c8affea..29c95d88 100644 --- a/api-ref/source/native_openstack_nova_apis/nic_management/index.rst +++ b/api-ref/source/native_openstack_nova_apis/nic_management/index.rst @@ -5,16 +5,16 @@ NIC Management ============== -- :ref:`Querying NICs of an ECS ` +- :ref:`Listing NICs of an ECS ` - :ref:`Querying Details About a Specified NIC of an ECS ` - :ref:`Adding a NIC to an ECS ` -- :ref:`Deleting a NIC from an ECS ` +- :ref:`Detaching a NIC from an ECS ` .. toctree:: :maxdepth: 1 :hidden: - querying_nics_of_an_ecs + listing_nics_of_an_ecs querying_details_about_a_specified_nic_of_an_ecs adding_a_nic_to_an_ecs - deleting_a_nic_from_an_ecs + detaching_a_nic_from_an_ecs diff --git a/api-ref/source/native_openstack_nova_apis/nic_management/querying_nics_of_an_ecs.rst b/api-ref/source/native_openstack_nova_apis/nic_management/listing_nics_of_an_ecs.rst similarity index 97% rename from api-ref/source/native_openstack_nova_apis/nic_management/querying_nics_of_an_ecs.rst rename to api-ref/source/native_openstack_nova_apis/nic_management/listing_nics_of_an_ecs.rst index bfcb8830..b2f6c5f4 100644 --- a/api-ref/source/native_openstack_nova_apis/nic_management/querying_nics_of_an_ecs.rst +++ b/api-ref/source/native_openstack_nova_apis/nic_management/listing_nics_of_an_ecs.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0020212661: -Querying NICs of an ECS -======================= +Listing NICs of an ECS +====================== Function -------- -This API is used to query NICs attached to an ECS. +This API is used to list NICs attached to an ECS. URI --- @@ -82,7 +82,7 @@ Response Example Request --------------- -Query NICs attached to an ECS. +List NICs attached to an ECS. .. code-block:: text diff --git a/api-ref/source/native_openstack_nova_apis/security_group_management/index.rst b/api-ref/source/native_openstack_nova_apis/security_group_management/index.rst index 59cdb8fe..6c953742 100644 --- a/api-ref/source/native_openstack_nova_apis/security_group_management/index.rst +++ b/api-ref/source/native_openstack_nova_apis/security_group_management/index.rst @@ -7,7 +7,7 @@ Security Group Management - :ref:`Adding a Security Group ` - :ref:`Removing a Security Group ` -- :ref:`Querying Security Groups of a Specified ECS ` +- :ref:`Listing Security Groups of a Specified ECS ` .. toctree:: :maxdepth: 1 @@ -15,4 +15,4 @@ Security Group Management adding_a_security_group removing_a_security_group - querying_security_groups_of_a_specified_ecs + listing_security_groups_of_a_specified_ecs diff --git a/api-ref/source/native_openstack_nova_apis/security_group_management/querying_security_groups_of_a_specified_ecs.rst b/api-ref/source/native_openstack_nova_apis/security_group_management/listing_security_groups_of_a_specified_ecs.rst similarity index 98% rename from api-ref/source/native_openstack_nova_apis/security_group_management/querying_security_groups_of_a_specified_ecs.rst rename to api-ref/source/native_openstack_nova_apis/security_group_management/listing_security_groups_of_a_specified_ecs.rst index ddfb845c..b25749ee 100644 --- a/api-ref/source/native_openstack_nova_apis/security_group_management/querying_security_groups_of_a_specified_ecs.rst +++ b/api-ref/source/native_openstack_nova_apis/security_group_management/listing_security_groups_of_a_specified_ecs.rst @@ -2,13 +2,13 @@ .. _en-us_topic_0065817702: -Querying Security Groups of a Specified ECS -=========================================== +Listing Security Groups of a Specified ECS +========================================== Function -------- -This API is used to query security groups of a specified ECS. +This API is used to list security groups of a specified ECS. URI --- @@ -123,7 +123,7 @@ Response Example Request --------------- -Query security groups of a specified ECS. +List security groups of a specified ECS. .. code-block:: text diff --git a/api-ref/source/out-of-date_apis/fpga_logical_file_management/querying_associations_between_an_fpga_image_and_an_ecs_image.rst b/api-ref/source/out-of-date_apis/fpga_logical_file_management/querying_associations_between_an_fpga_image_and_an_ecs_image.rst index e62546a1..92bd52ba 100644 --- a/api-ref/source/out-of-date_apis/fpga_logical_file_management/querying_associations_between_an_fpga_image_and_an_ecs_image.rst +++ b/api-ref/source/out-of-date_apis/fpga_logical_file_management/querying_associations_between_an_fpga_image_and_an_ecs_image.rst @@ -48,7 +48,7 @@ GET /v1/{project_id}/cloudservers/fpga_image/associations?image_id={image_id}&fp .. note:: - You can obtain the association only after specifying either **fpga_image_id** or **image_id**. Otherwise, only one empty list is returned. - - Pagination query takes effect only if parameters **page** and **size** both have a value. If only one of them has a value, an error message indicating invalid parameter will be displayed. If both **image_id** and **fpga_image_id** are used, pagination query specified by **page** and **size** does not take effect. + - Pagination query takes effect only if parameters **page** and **size** both have a value. If only one of them has a value, an error message indicating invalid parameter will be displayed. If both **image_id** and **fpga_image_id** are used, the pagination query specified by **page** and **size** does not take effect. Request ------- diff --git a/api-ref/source/out-of-date_apis/fpga_logical_file_management/viewing_details_of_fpga_images.rst b/api-ref/source/out-of-date_apis/fpga_logical_file_management/viewing_details_of_fpga_images.rst index a4db551d..d144d765 100644 --- a/api-ref/source/out-of-date_apis/fpga_logical_file_management/viewing_details_of_fpga_images.rst +++ b/api-ref/source/out-of-date_apis/fpga_logical_file_management/viewing_details_of_fpga_images.rst @@ -46,7 +46,7 @@ GET /v1/{project_id}/cloudservers/fpga_image/detail?fpga_image_id={fpga_image_id .. note:: - Pagination query takes effect only if parameters **page** and **size** both have a value. If only one of them has a value, an error message indicating invalid parameter will be displayed. - - If **fpga_image_id** is used, pagination query specified by **page** and **size** does not take effect. + - If **fpga_image_id** is used, the pagination query specified by **page** and **size** does not take effect. Request ------- diff --git a/api-ref/source/out-of-date_apis/tag_management/querying_project_tags_discarded.rst b/api-ref/source/out-of-date_apis/tag_management/querying_project_tags_discarded.rst index 091fd9d8..dcb262af 100644 --- a/api-ref/source/out-of-date_apis/tag_management/querying_project_tags_discarded.rst +++ b/api-ref/source/out-of-date_apis/tag_management/querying_project_tags_discarded.rst @@ -14,7 +14,7 @@ This API is used to query all tags used by a user in a specified project. .. note:: - This API has been discarded. Use the API described in :ref:`Querying Project Tags `. + This API has been discarded. Use the API described in :ref:`Listing Project Tags `. URI --- diff --git a/api-ref/source/permissions_and_supported_actions/disk_management.rst b/api-ref/source/permissions_and_supported_actions/disk_management.rst index 42e849a4..dfee8b12 100644 --- a/api-ref/source/permissions_and_supported_actions/disk_management.rst +++ b/api-ref/source/permissions_and_supported_actions/disk_management.rst @@ -14,6 +14,10 @@ Disk Management +--------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------+-----------------------+ | :ref:`Querying details about disks attached to an ECS ` | GET /v1/{project_id}/cloudservers/{server_id}/block_device | ecs:cloudServers:listServerBlockDevices | ``-`` | +--------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------+-----------------------+ +| :ref:`Querying Details of a Single Disk Attached to an ECS ` | GET /v1/{project_id}/cloudservers/{server_id}/block_device/{volume_id} | ecs:cloudServers:get | ``-`` | +| | | | | +| | | ecs:cloudServers:showServerBlockDevice | | ++--------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------+-----------------------------------------+-----------------------+ | :ref:`Attaching a disk to an ECS (native OpenStack API) ` | POST /v2/{project_id}/servers/{server_id}/os-volume_attachments | ecs:serverVolumeAttachments:create | ecs:servers:get | | | | | | | | POST /v2.1/{project_id}/servers/{server_id}/os-volume_attachments | | ecs:flavors:get |