Documentation Index

Fetch the complete documentation index at: https://cli.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

deleteInstanceTags

Prev Next

概要

インスタンスタグ削除

説明

インスタンスタグを削除します。

リクエストパラメータ

パラメータ名 必須 タイプ 制約事項 説明
instanceNoList Yes List Repeat not allowed インスタンスタグを削除するインスタンス番号リスト(サーバ限定)
instanceTagList.tagKey No String 削除するインスタンスタグリスト、タグキー
instanceTagList.tagValue No String 削除するインスタンスタグリスト、タグ値

レスポンスデータタイプ

  • 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;

例示

呼び出し

ncloud server deleteInstanceTags --instanceNoList 713768

レスポンス

{
  "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>