All Products
Search
Document Center

Platform For AI:ListResourceInstances

Last Updated:Nov 22, 2024

Queries a list of instances in a dedicated resource group.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • The required resource types are displayed in bold characters.
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
eas:ListResourceInstancesget
*Resource
acs:eas:{#regionId}:{#accountId}:resource/{#ResourceId}
    none
none

Request syntax

GET /api/v2/resources/{ClusterId}/{ResourceId}/instances HTTP/1.1

Request parameters

ParameterTypeRequiredDescriptionExample
ClusterIdstringYes

The ID of the region to which the resource group belongs.

cn-shanghai
ResourceIdstringYes

The ID of the resource group. For more information about how to query the ID of a resource group, see ListResources .

iot
ChargeTypestringNo

The billing method of the instance. Valid values:

  • PrePaid: subscription.
  • PostPaid: pay-as-you-go.
PrePaid
PageNumberintegerNo

The page number. Pages start from page 1. Default value: 1.

1
PageSizeintegerNo

The number of entries per page. Default value: 100.

20
InstanceNamestringNo

The instance name.

e-xxxx***
InstanceIdstringNo

The instance ID. For more information about how to query the instance ID, see ListResourceInstances .

i-bp1jd6x3uotsv****
InstanceIPstringNo

The IP address of the instance.

10.224.xx.xx
FilterstringNo

The keyword used to query instances. Instances can be queried by instance ID or instance IP address.

10.224.xx.xx
InstanceStatusstringNo

The instance state.

Valid values:

  • Ready-SchedulingDisabled

    :

    The instance is available but unschedulable

    .

  • Ready

    : The instance

    is running

    .

  • NotReady

    : The instance is unready.

  • Stopped

    : The instance has stopped.

  • NotReady-SchedulingDisabled

    :

    The instance is unavailable and unschedulable

    .

  • Attaching

    : The instance

    is starting

    .

  • Deleting

    : The instance is being deleted.

  • CreateFailed: The instance failed to be created.

Ready
SortstringNo

The field that you use to sort the query results.

Valid values:

  • CreateTime

    : The instances are sorted based on the time when the instances were created.

  • MemoryUsed

    :

    The instances are sorted based on the memory usage of the instances

    .

  • GpuUsed

    : The instances are sorted based on the

    GPU usage of the instances.

  • ExpireTime: The instances are sorted based on the time when the instances expired.

  • CpuUsed

    :

    The instances are sorted based on the CPU utilization of the instances.

CreateTime
OrderstringNo

The sorting order.

Valid values:

  • asc: The instances are sorted in ascending order.

  • desc

    : The instances are sorted in descending order.

desc

Response parameters

ParameterTypeDescriptionExample
object

The response parameters.

RequestIdstring

The request ID.

40325405-579C-4D82****
Instancesarray

The instances.

ResourceInstance

The information about the instance.

PageNumberinteger

The page number.

1
PageSizeinteger

The number of entries per page.

20
TotalCountinteger

The total number of entries returned.

2

Examples

Sample success responses

JSONformat

{
  "RequestId": "40325405-579C-4D82****",
  "Instances": [
    {
      "InstanceId": "eas-i-1800z74n30kao****",
      "InstanceName": "eas01122713204*****",
      "InstanceIp": "11.227.XX.XX",
      "InstanceStatus": "Ready",
      "InstanceCpuCount": 4,
      "InstanceGpuCount": 0,
      "InstanceMemory": "8192M",
      "InstanceSystemDiskSize": 200,
      "InstanceGpuMemory": "0G",
      "InstanceUsedCpu": 2.4,
      "InstanceUsedGpu": 0,
      "InstanceUsedMemory": "1000M",
      "InstanceType": "ecs.s6-c1m2.xlarge",
      "CreateTime": "2020-07-05T22:51:32Z",
      "ChargeType": "PrePaid",
      "ExpiredTime": "2020-08-05T22:51:32Z",
      "AutoRenewal": false,
      "Arch": "arm64",
      "Region": "cn-hangzhou",
      "Zone": "cn-hangzhou-b",
      "ResourceId": "eas-r-xxxxx",
      "InstanceTenantIp": "192.168.xx.xx",
      "InstanceUsedGpuMemory": "470M"
    }
  ],
  "PageNumber": 1,
  "PageSize": 20,
  "TotalCount": 2
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2023-05-06The request parameters of the API has changedView Change Details
2022-11-29The request parameters of the API has changedView Change Details