Home > Article > Operation and Maintenance > How to query instance type family resources provided by cloud server ECS
This article introduces how to query the instance specification family resources provided by cloud server ECS, and focuses on the specific steps. The content of this article is compact, and I hope you can gain something from it.
DescribeInstanceTypeFamilies
Request Parameters
# #Return Parameters
##Example
Request Examplehttps://ecs.aliyuncs.com/?Action=DescribeInstanceTypeFamilies
&RegionId=cn-hangzhou
&<公共请求参数>
XML format
<DescribeInstanceTypeFamiliesResponse>
<InstanceTypeFamilies>
<InstanceTypeFamily>
<InstanceTypeFamilyId>ecs.t1</InstanceTypeFamilyId>
<Generation>ecs-1</Generation>
</InstanceTypeFamily>
<InstanceTypeFamily>
<InstanceTypeFamilyId>ecs.s2</InstanceTypeFamilyId>
<Generation>ecs-1</Generation>
</InstanceTypeFamily>
<InstanceTypeFamily>
<InstanceTypeFamilyId>ecs.s3</InstanceTypeFamilyId>
<Generation>ecs-1</Generation>
</InstanceTypeFamily>
</InstanceTypeFamilies>
<RequestId>6B187E0A-C075-4D08-8B6F-6213950E8733</RequestId>
</DescribeInstanceTypeFamiliesResponse>
{
"InstanceTypeFamilies":{
"InstanceTypeFamily":[
{
"InstanceTypeFamilyId":"ecs.t1",
"Generation":"ecs-1"
},
{
"InstanceTypeFamilyId":"ecs.s2",
"Generation":"ecs-1"
},
{
"InstanceTypeFamilyId":"ecs.s3",
"Generation":"ecs-1"
}
]
},
"RequestId":"6B187E0A-C075-4D08-8B6F-6213950E8733"
}
The above is the detailed content of How to query instance type family resources provided by cloud server ECS. For more information, please follow other related articles on the PHP Chinese website!