サブネット一覧取得
Description
サブネット一覧を取得します。
Request URL
Network API v2.0 GET /v2.0/subnets
Request Json
This operation does not accept a request body.
Request Parameters
Parameter | Value | Style | Description |
---|---|---|---|
X-Auth-Token | トークンID | header | トークン発行 にて払い出されたID |
Response
-
Normal response codes
200
Example
-
Request
curl -i -X GET \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "X-Auth-Token: トークンID" \ ネットワークエンドポイント/subnets
-
Response
HTTP/1.1 200 OK Date: Fri, 30 Mar 2018 15:09:31 GMT Server: Apache Content-Length: 2522 Content-Type: application/json { "subnets":[ { "name":"ネットワーク名", "enable_dhcp":false, "network_id":"ネットワークID", "tenant_id":"テナントID", "dns_nameservers":[], "gateway_ip":null, "ipv6_ra_mode":null, "allocation_pools":[ { "start":"IPアドレス範囲の先頭", "end":"IPアドレス範囲の末尾" } ], "host_routes":[], "ip_version":4, "ipv6_address_mode":null, "cidr":"サブネットマスク", "id":"サブネットID" }, { "name":"ネットワーク名", "enable_dhcp":false, "network_id":"ネットワークID", "tenant_id":"テナントID", "dns_nameservers":[], "gateway_ip":null, "ipv6_ra_mode":null, "allocation_pools":[ { "start":"IPアドレス範囲の先頭", "end":"IPアドレス範囲の末尾" } ], "host_routes":[], "ip_version":4, "ipv6_address_mode":null, "cidr":"サブネットマスク", "id":"サブネットID" } ] }