createSubnet
- 인쇄
- PDF
createSubnet
- 인쇄
- PDF
기사 요약
이 요약이 도움이 되었나요?
의견을 보내 주셔서 감사합니다.
VPC 환경에서 이용 가능합니다.
사용자가 지정한 조건에 따라 Subnet을 생성합니다.요청
요청 형식을 설명합니다. 요청 형식은 다음과 같습니다.
메서드 | URI |
---|---|
GET, POST | /createSubnet |
요청 헤더
VPC API에서 공통으로 사용하는 헤더에 대한 자세한 내용은 VPC 공통 헤더를 참조해 주십시오.
요청 쿼리 파라미터
파라미터에 대한 설명은 다음과 같습니다.
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
regionCode | String | Optional | Subnet이 생성될 리전 코드 |
zoneCode | String | Required | Subnet이 생성될 존 코드
|
vpcNo | String | Required | Subnet을 포함할 VPC의 고유 식별 번호
|
subnetName | String | Optional | 생성하려는 Subnet 이름
|
subnet | String | Required | Subnet의 IP 주소 범위
|
networkAclNo | String | Required | Subnet에 적용될 네트워크 ACL 번호
|
subnetTypeCode | String | Required | Subnet의 유형 코드
|
usageTypeCode | String | Optional | Subnet의 용도 유형 코드
|
responseFormatType | String | Optional | 응답 결과의 형식
|
요청 예시
요청 예시는 다음과 같습니다.
curl --location 'https://ncloud.apigw.ntruss.com/vpc/v2/createSubnet
?regionCode=KR
&zoneCode=KR-1
&vpcNo=***04
&subnetName=test-***
&subnet=***.***.1.0/24
&networkAclNo=***31
&subnetTypeCode=PUBLIC
&usageTypeCode=GEN'
--header 'x-ncp-apigw-timestamp: {Timestamp}'
--header 'x-ncp-iam-access-key: {Sub Account Access Key}'
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}'
응답
응답 형식을 설명합니다.
응답 바디
응답 바디는 SubnetList를 참조해 주십시오.
응답 상태 코드
네이버 클라우드 플랫폼에서 공통으로 사용하는 응답 상태 코드에 대한 자세한 내용은 Ncloud API 응답 상태 코드를 참조해 주십시오.
응답 예시
응답 예시는 다음과 같습니다.
<createSubnetResponse>
<requestId>0f539b1b-10ef-43fa-a2c4-3670e601251b</requestId>
<returnCode>0</returnCode>
<returnMessage>success</returnMessage>
<totalRows>1</totalRows>
<subnetList>
<subnet>
<subnetNo>***43</subnetNo>
<vpcNo>***04</vpcNo>
<zoneCode>KR-1</zoneCode>
<subnetName>test-***</subnetName>
<subnet>***.***.1.0/24</subnet>
<subnetStatus>
<code>CREATING</code>
<codeName>creating</codeName>
</subnetStatus>
<createDate>2020-07-31T14:32:28+0900</createDate>
<subnetType>
<code>PUBLIC</code>
<codeName>Public</codeName>
</subnetType>
<usageType>
<code>GEN</code>
<codeName>General</codeName>
</usageType>
<networkAclNo>***31</networkAclNo>
</subnet>
</subnetList>
</createSubnetResponse>
이 문서가 도움이 되었습니까?