getInstanceTagList
- Print
- PDF
getInstanceTagList
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Overview
Gets instance tags.
Request
Request parameters
Parameter | Required | Type | Limitation | Description |
---|---|---|---|---|
instanceNoList.N | N | List<String> | Duplicates not allowed. | List of server instance numbers to get instance tags for [for servers only] Example) instanceNoList.1=1088217 |
tagKeyList.N | N | List<String> | Duplicates not allowed. | Tag keys of the instances to get Get available values by using the getInstanceTagList action. Example) tagKeyList.1=tag1 |
tagValueList.N | N | List<String> | Duplicates not allowed. | Tag values of the instances to get Get available values by using the getInstanceTagList action. tagValueList.1=dolphins |
pageNo | N | Integer | Page number of paginated results You can paginate results with pageNo. | |
pageSize | N | Integer | Page size to show when paginating results. You can paginate results with pageSize. |
Response
Response body
Examples
Request example
GET {SERVER_API_URL}/getInstanceTagList
?tagKeyList.1=tag1
Response example
<getInstanceTagListResponse>
<requestId>8b3584cc-d7c6-44fb-9976-3b8a11180bf7</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<instanceTagList>
<instanceTag>
<instanceNo>1088217</instanceNo>
<instanceType>
<code>SVR</code>
<codeName>Server</codeName>
</instanceType>
<tagKey>tag1</tagKey>
<tagValue>dolphins</tagValue>
</instanceTag>
</instanceTagList>
</getInstanceTagListResponse>
Was this article helpful?