查询VPC列表
功能介绍
查询VPC列表。
接口约束
查询提交请求的租户有权限查看的所有vpc信息,单次查询最多返回2000条数据,超过2000后会返回分页标记。
URI
GET /v3/{project_id}/vpc/vpcs
|
参数 |
是否必选 |
参数类型 |
描述 |
|---|---|---|---|
|
project_id |
是 |
String |
项目ID。 获取方式请参见获取项目ID。 |
|
参数 |
是否必选 |
参数类型 |
描述 |
|---|---|---|---|
|
limit |
否 |
Integer |
|
|
marker |
否 |
String |
|
|
id |
否 |
Array of strings |
|
|
name |
否 |
Array of strings |
|
|
description |
否 |
Array of strings |
|
|
cidr |
否 |
Array of strings |
|
请求参数
无
响应参数
状态码:200
|
参数 |
参数类型 |
描述 |
|---|---|---|
|
request_id |
String |
请求ID。 |
|
vpcs |
Array of Vpc objects |
VPC列表响应体。 |
|
page_info |
PageInfo object |
分页信息。 |
|
参数 |
参数类型 |
描述 |
|---|---|---|
|
id |
String |
|
|
name |
String |
|
|
description |
String |
|
|
cidr |
String |
|
|
extend_cidrs |
Array of strings |
|
|
status |
String |
|
|
project_id |
String |
|
|
enterprise_project_id |
String |
|
|
created_at |
String |
|
|
updated_at |
String |
|
|
cloud_resources |
Array of CloudResource objects |
|
|
tags |
Array of Tag objects |
|
请求示例
-
查询VPC列表。
GET https://{Endpoint}/v3/{project_id}/vpc/vpcs -
使用ID过滤查询VPC列表。
GET https://{Endpoint}/v3/{project_id}/vpc/vpcs?id=01ab4be1-4447-45fb-94be-3ee787ed4ebe&id=02cd5ef2-4447-36fb-75be-3ee787ed6adf -
使用name过滤查询VPC列表。
GET https://{Endpoint}/v3/{project_id}/vpc/vpcs?name=vpc-test -
分页查询VPC列表。
GET https://{Endpoint}/v3/{project_id}/vpc/vpcs?limit=2&marker=01ab4be1-4447-45fb-94be-3ee787ed4ebe
响应示例
状态码:200
GET操作正常返回,更多状态码请参见状态码。
{
"request_id" : "9c1838ba498249547be43dd618b58d27",
"vpcs" : [ {
"id" : "01da5a65-0bb9-4638-8ab7-74c64e24a9a7",
"name" : "API-PERF-TEST-14bd44c121",
"description" : "",
"cidr" : "192.168.0.0/16",
"extend_cidrs" : [ ],
"status" : "ACTIVE",
"project_id" : "087679f0aa80d32a2f4ec0172f5e902b",
"enterprise_project_id" : "0",
"tags" : [ ],
"created_at" : "2020-06-16T02:32:18Z",
"updated_at" : "2020-06-16T02:32:18Z",
"cloud_resources" : [ {
"resource_type" : "routetable",
"resource_count" : 1
}, {
"resource_type" : "virsubnet",
"resource_count" : 0
} ]
}, {
"id" : "43fd79b0-f7d7-4e9b-828b-2d4d7bfae428",
"name" : "API-PERF-TEST_m2n33",
"description" : "",
"cidr" : "192.168.0.0/16",
"extend_cidrs" : [ ],
"status" : "ACTIVE",
"project_id" : "087679f0aa80d32a2f4ec0172f5e902b",
"enterprise_project_id" : "0",
"tags" : [ ],
"created_at" : "2020-06-15T06:29:40Z",
"updated_at" : "2020-06-15T06:29:41Z",
"cloud_resources" : [ {
"resource_type" : "routetable",
"resource_count" : 1
}, {
"resource_type" : "virsubnet",
"resource_count" : 1
} ]
}, {
"id" : "5ed053ba-b46c-4dce-a1ae-e9d8a7015f21",
"name" : "API-PERF-TEST-c34b1c4b12",
"description" : "",
"cidr" : "192.168.0.0/16",
"extend_cidrs" : [ ],
"status" : "ACTIVE",
"project_id" : "087679f0aa80d32a2f4ec0172f5e902b",
"enterprise_project_id" : "0",
"tags" : [ ],
"created_at" : "2020-06-16T02:32:33Z",
"updated_at" : "2020-06-16T02:32:33Z",
"cloud_resources" : [ {
"resource_type" : "routetable",
"resource_count" : 1
}, {
"resource_type" : "virsubnet",
"resource_count" : 0
} ]
} ],
"page_info" : {
"previous_marker" : "01da5a65-0bb9-4638-8ab7-74c64e24a9a7",
"current_count" : 3
}
}
状态码
|
状态码 |
描述 |
|---|---|
|
200 |
GET操作正常返回,更多状态码请参见状态码。 |
错误码
请参见错误码。