deleteInstanceTags

Prev Next

Overview

Deleting instance tags

Description

Deleting instance tags.

Request Parameters

Parameter Name Requiredness Type Limitation Description
instanceNoList Yes List Repeat not allowed instance No list for deleting tags
instanceTagList.tagKey No String instanceTagList. tag key
instanceTagList.tagValue No String instanceTagList. tag value

Response Data Type

  • InstanceTagList type
InstanceTagList extends CommonResponse
private Integer totalRows;
private List instanceTagList = new ArrayList();
InstanceTag
private String instanceNo;
private CommonCode instanceType;
private String tagKey;
private String tagValue;

Examples

Request

ncloud server deleteInstanceTags --instanceNoList 713768

Response

{
  "deleteInstanceTagsResponse": {
    "requestId": "c85cdbbb-d811-46ae-827b-faa48c7c697b",
    "returnCode": "0",
    "returnMessage": "success",
    "totalRows": 0,
    "instanceTagList": []
  }
}
<?xml version="1.0" encoding="UTF-8" ?>
<deleteInstanceTagsResponse>
  <requestId>c85cdbbb-d811-46ae-827b-faa48c7c697b</requestId>
  <returnCode>0</returnCode>
  <returnMessage>success</returnMessage>
  <totalRows>0</totalRows>
  <instanceTagList/>
</deleteInstanceTagsResponse>