VPC 환경에서 이용 가능합니다.
타깃 그룹을 삭제합니다. 사용 중인 타깃 그룹은 삭제할 수 없습니다.
구문
deleteTargetGroups 구문은 다음과 같습니다.
./ncloud vloadbalancer deleteTargetGroups \
--targetGroupNoList <target-group-no-list> \
[--regionCode <KR|KRS>] \
[--output <json|xml>]
옵션
deleteTargetGroups 실행 시 지정할 수 있는 옵션을 설명합니다.
필수 옵션
deleteTargetGroups의 필수 옵션입니다.
| 옵션 | 타입 | 필수 여부 | 설명 |
|---|---|---|---|
--targetGroupNoList |
List | Required | 타깃 그룹의 번호 목록
|
공통 옵션
vloadbalancer 명령에서 공통으로 사용하는 옵션에 대한 정보는 Load Balancer (VPC) 옵션을 참조해 주십시오.
예시
타깃 그룹 삭제 요청이 성공하면 삭제된 타깃 그룹의 구성 정보가 반환됩니다.
명령
명령 예시는 다음과 같습니다.
./ncloud vloadbalancer deleteTargetGroups \
--targetGroupNoList 55667799 \
--regionCode KR \
--output json
출력
출력 예시는 다음과 같습니다.
{
"deleteTargetGroupsResponse": {
"totalRows": 1,
"targetGroupList": [
{
"targetGroupNo": "55667799",
"targetGroupName": "lb-test-tg2",
"targetType": {
"code": "VSVR",
"codeName": "Server (VPC)"
},
"vpcNo": "12345678",
"targetGroupProtocolType": {
"code": "HTTP",
"codeName": "HTTP protocol"
},
"targetGroupPort": 80,
"targetGroupDescription": "",
"useStickySession": false,
"useProxyProtocol": false,
"algorithmType": {
"code": "RR",
"codeName": "Round Robin"
},
"createDate": "2026-07-07T17:12:57+0900",
"regionCode": "KR",
"loadBalancerInstanceNo": "",
"healthCheckProtocolType": {
"code": "HTTP",
"codeName": "HTTP protocol"
},
"healthCheckPort": 80,
"healthCheckUrlPath": "/",
"healthCheckHttpMethodType": {
"code": "GET",
"codeName": "HTTP GET Method"
},
"healthCheckCycle": 30,
"healthCheckUpThreshold": 2,
"healthCheckDownThreshold": 2,
"targetNoList": []
}
],
"requestId": "e1f2a3b4-c5d6-7890-efab-123456789012",
"returnCode": "0",
"returnMessage": "success"
}
}