Subnetリストの照会
    • PDF

    Subnetリストの照会

    • PDF

    記事の要約

    VPC環境で利用できます。

    説明

    使用できるSubnetリストを照会します

    リクエスト

    リクエストURL

    POST https://clouddatastreamingservice.apigw.ntruss.com/api/v1/cluster/getSubnetList [KR]
    POST https://clouddatastreamingservice.apigw.ntruss.com/api/sgn-v1/cluster/getSubnetList [SGN]
    POST https://clouddatastreamingservice.apigw.ntruss.com/api/jpn-v1/cluster/getSubnetList [JPN]
    

    リクエストヘッダ

    ヘッダ名説明
    x-ncp-apigw-timestamp1970年1月1日00:00:00協定世界時(UTC)からの経過時間*ミリ秒(Millisecond)で表したもので、
    API Gatewayサーバとの時間差が5分以上の場合、有効ではないリクエストとみなす
    x-ncp-apigw-timestamp:{Timestamp}
    x-ncp-iam-access-keyNAVERクラウドプラットフォームのポータルから発行されたAccess Key ID値
    x-ncp-iam-access-key:{Account Access Key}
    x-ncp-apigw-signature-v2Access Key ID値とSecret Keyで暗号化した署名
    x-ncp-apigw-signature-v2:{API Gateway Signature}
    Content-Typeリクエストボディーcontent typeをapplication/jsonに指定
    Content-Type: application/json

    リクエストパラメータ

    パラメータタイプ必須有無説明
    softwareProductCodeStringY使用するOSタイプです。getOsProductListアクションを通じて取得できます。
    vpcNoIntegerY使用するVPC Noです。getVpcListアクションを通じて取得できます。

    リクエスト例

    POST https://clouddatastreamingservice.apigw.ntruss.com/api/v1/cluster/getSubnetList
    HOST: clouddatastreamingservice.apigw.ntruss.com
    Content-Type: application/json
    x-ncp-apigw-signature-v2: zq0FrtlU8JZJi9esTK31bCQUNG3H+jo4CMjMkJDoWSc=
    x-ncp-apigw-timestamp: 1593848345548
    x-ncp-iam-access-key: 7fIvgFY428mtY6sY8maw
    
    {
      "softwareProductCode": "SW.VELST.OS.LNX64.CNTOS.0703.B050",
      "vpcNo": 36752
    }
    
    curl -X POST "https://clouddatastreamingservice.apigw.ntruss.com/api/v1/cluster/getSubnetList" \
    -H "accept: application/json" \
    -H "Content-Type: application/json" \
    -H "x-ncp-iam-access-key: 7fIvgFY428mtY6sY8maw" \
    -H "x-ncp-apigw-timestamp: 1601971222179" \
    -H "x-ncp-apigw-signature-v2: zrCelnR48AADdK/uh6Xe3yy468i8KpQoewYHUmeqYh4=" \
    -d \
    '{
      "softwareProductCode": "SW.VELST.OS.LNX64.CNTOS.0703.B050",
      "vpcNo": 36752
    }'
    

    レスポンスパラメータ

    public class GetSubnetListResponseVo {
        ArrayList<SubnetListDetailVo> content;
    }
    
    public class SubnetListDetailVo {
        Boolean isPublic;
        String subnet;
        String subnetName;
        Integer subnetNo;
        String vpcName;
        Integer vpcNo;
        String zoneName;
        Integer zoneNo;
        String permission;
    }
    

    フィールド

    パラメータ名タイプ説明
    contentArrayListSubnetリスト
    isPublicBooleanPublic Subnetかどうか
    subnetStringSubnet IPアドレスの範囲
    subnetNameStringSubnet名
    subnetNoIntegerSubnet番号
    vpcNameStringVPC名
    vpcNoIntegerVPC番号
    zoneNameStringzone名
    zoneNoIntegerzone番号
    permissionStringSubaccountアカウントでの使用の可否です。Denyである場合、getSubnetDetail権限がないため使用できない状態を意味します。

    レスポンス例

    {
    	"code": 0,
    	"message": "SUCCESS",
    	"result": {
    		"error": null,
    		"content": [{
    			"isPublic": false,
    			"subnet": "10.0.2.0/24",
    			"subnetName": "clean-private2",
    			"subnetNo": 1507,
    			"vpcName": "clean",
    			"vpcNo": 1236,
    			"zoneName": "KR-2",
    			"zoneNo": 3,
    			"actionName": "View/getSubnetDetail",
    			"permission": "Allow"
    		}, {
    			"isPublic": false,
    			"subnet": "10.0.1.0/24",
    			"subnetName": "clean-private",
    			"subnetNo": 1301,
    			"vpcName": "clean",
    			"vpcNo": 1236,
    			"zoneName": "KR-1",
    			"zoneNo": 2,
    			"actionName": "View/getSubnetDetail",
    			"permission": "Allow"
    		}, {
    			"isPublic": true,
    			"subnet": "10.0.0.0/24",
    			"subnetName": "clean-pub",
    			"subnetNo": 1300,
    			"vpcName": "clean",
    			"vpcNo": 1236,
    			"zoneName": "KR-1",
    			"zoneNo": 2,
    			"actionName": "View/getSubnetDetail",
    			"permission": "Allow"
    		}]
    	},
    	"requestId": "2fc8b391-fcb8-4280-aae2-a88571b842e4"
    }
    

    この記事は役に立ちましたか?

    Changing your password will log you out immediately. Use the new password to log back in.
    First name must have atleast 2 characters. Numbers and special characters are not allowed.
    Last name must have atleast 1 characters. Numbers and special characters are not allowed.
    Enter a valid email
    Enter a valid password
    Your profile has been successfully updated.