更新时间:2023-12-18 gmt 08:00

查询浮动ip列表-凯发k8国际娱乐官网入口

功能介绍

查询提交请求的租户有权限操作的所有浮动ip地址。单次查询最多返回2000条数据,超过2000后会返回分页标记。

接口约束

单次查询最多返回2000条数据,超过2000后会返回分页标记。

调用方法

请参见。

uri

get /v2.0/floatingips

表1 query参数

参数

是否必选

参数类型

描述

limit

integer

  • 功能说明:分页查询每页返回的记录个数

  • 取值范围为0~intmax。

  • 约束:limit需要和marker配合使用,详细规则请见marker的参数说明

最小值:0

最大值:2000

marker

string

  • 功能说明:分页查询的起始资源id,表示从指定资源的下一条记录开始查询。

  • 约束:marker需要和limit配合使用:

    • 若不传入marker和limit参数,查询结果返回全部资源记录。

    • 若不传入marker参数,limit为10,查询结果返回第1~10条资源记录。

    • 若marker为第10条记录的资源id,limit为10,查询结果返回第11~20条资源记录。

    • 若marker为第10条记录的资源id,不传入limit参数,查询结果返回第11条及之后的所有资源记录。

最小长度:0

最大长度:36

page_reverse

boolean

  • 功能说明:false/true,是否设置分页的顺序。

id

string

  • 功能说明:浮动ip的id。

最小长度:0

最大长度:36

floating_ip_address

string

  • 功能说明:浮动ip地址(ipv4格式)。

最小长度:0

最大长度:64

router_id

string

  • 功能说明:所属路由器id。

最小长度:0

最大长度:36

port_id

string

  • 功能说明:端口id。

最小长度:0

最大长度:36

fixed_ip_address

string

  • 功能说明:关联端口的私有ip地址。

最小长度:0

最大长度:64

tenant_id

string

  • 功能说明:项目id。

最小长度:0

最大长度:36

floating_network_id

string

  • 功能说明:外部网络的id。

  • 约束:只能使用固定的外网,外部网络的信息请通过get /v2.0/networks?router:external=true或get /v2.0/networks?name={floating_network}或neutron net-external-list方式查询

最小长度:0

最大长度:36

请求参数

响应参数

状态码: 200

表2 响应body参数

参数

参数类型

描述

floatingips

array of floatingipresp objects

floatingip对象列表

数组长度:0 - 99999

floatingips_links

array of pager objects

floatingips_link对象列表

数组长度:0 - 99999

表3 floatingipresp

参数

参数类型

描述

fixed_ip_address

string

  • 功能说明:关联端口的私有ip地址。

最小长度:0

最大长度:64

floating_ip_address

string

  • 功能说明:浮动ip地址。

最小长度:0

最大长度:64

floating_network_id

string

  • 功能说明:外部网络id

最小长度:0

最大长度:36

id

string

  • 功能说明:浮动ip地址的id。

最小长度:0

最大长度:36

port_id

string

  • 功能说明:端口id

最小长度:0

最大长度:36

router_id

string

  • 功能说明:所属路由器id。

最小长度:0

最大长度:36

status

string

  • 功能说明:网络状态,可以为active, down或error。

  • 取值范围:

    • down:未绑定

    • active:绑定

    • error:异常

枚举值:

  • active

  • down

  • error

tenant_id

string

  • 功能说明:项目id。

最小长度:0

最大长度:36

project_id

string

  • 功能说明:项目id。

最小长度:0

最大长度:36

dns_name

string

  • 功能说明:dns名称,该参数当前仅在“华南-广州”开放

最小长度:0

最大长度:255

dns_domain

string

  • 功能说明:dns域地址,该参数当前仅在“华南-广州”开放

最小长度:0

最大长度:255

created_at

string

  • 功能说明:资源创建时间,采用utc时间,格式:yyyy-mm-ddthh:mm:ss

updated_at

string

  • 功能说明:资源更新时间,采用utc时间,格式:yyyy-mm-ddthh:mm:ss

表4 pager

参数

参数类型

描述

href

string

页码url

最小长度:0

最大长度:256

rel

string

next:下一页 previous:前一页

枚举值:

  • next

  • previous

请求示例

  • get https://{endpoint}/v2.0/floatingips?limit=1
  • get https://{endpoint}/v2.0/floatingips?id={fip_id}&router_id={router_id}&floating_network_id={net_id}&floating_ip_address={floating_ip}&port_id={port_id}&fixed_ip_address={fixed_ip}&project_id={project_id}

响应示例

状态码: 200

get操作正常返回

{
  "floatingips" : [ {
    "id" : "1a3a2818-d9b4-4a9c-8a19-5252c499d1cd",
    "status" : "down",
    "router_id" : null,
    "tenant_id" : "bbfe8c41dd034a07bebd592bf03b4b0c",
    "project_id" : "bbfe8c41dd034a07bebd592bf03b4b0c",
    "floating_network_id" : "0a2228f2-7f8a-45f1-8e09-9039e1d09975",
    "fixed_ip_address" : null,
    "floating_ip_address" : "99.99.99.84",
    "port_id" : null,
    "dns_name" : "ecs-88-99-103-61",
    "dns_domain" : "compute.hwclouds-dns.com.",
    "created_at" : "2017-10-19t12:21:28",
    "updated_at" : "2018-07-30t12:52:13"
  } ],
  "floatingips_links" : [ {
    "href" : "https://network.region.cn-southwest-2.hwclouds.com/v2.0/floatingips.json?limit=2000&marker=000a6144-5010-46f2-bf06-6a1c94477ea3&page_reverse=true",
    "rel" : "previous"
  }, {
    "href" : "https://network.region.cn-southwest-2.hwclouds.com/v2.0/floatingips.json?limit=2000&marker=d445e537-bc81-4039-9c7b-f9c1f5c73c78",
    "rel" : "next"
  } ]
}

sdk代码示例

sdk代码示例如下。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package com.huaweicloud.sdk.test;
import com.huaweicloud.sdk.core.auth.icredential;
import com.huaweicloud.sdk.core.auth.basiccredentials;
import com.huaweicloud.sdk.core.exception.connectionexception;
import com.huaweicloud.sdk.core.exception.requesttimeoutexception;
import com.huaweicloud.sdk.core.exception.serviceresponseexception;
import com.huaweicloud.sdk.eip.v2.region.eipregion;
import com.huaweicloud.sdk.eip.v2.*;
import com.huaweicloud.sdk.eip.v2.model.*;
public class neutronlistfloatingipssolution {
    public static void main(string[] args) {
        // the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
        // in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment
        string ak = system.getenv("cloud_sdk_ak");
        string sk = system.getenv("cloud_sdk_sk");
        icredential auth = new basiccredentials()
                .withak(ak)
                .withsk(sk);
        eipclient client = eipclient.newbuilder()
                .withcredential(auth)
                .withregion(eipregion.valueof(""))
                .build();
        neutronlistfloatingipsrequest request = new neutronlistfloatingipsrequest();
        request.withlimit(<limit>);
        request.withmarker("");
        request.withpagereverse(<page_reverse>);
        request.withid("");
        request.withfloatingipaddress("");
        request.withrouterid("");
        request.withportid("");
        request.withfixedipaddress("");
        request.withtenantid("");
        request.withfloatingnetworkid("");
        try {
            neutronlistfloatingipsresponse response = client.neutronlistfloatingips(request);
            system.out.println(response.tostring());
        } catch (connectionexception e) {
            e.printstacktrace();
        } catch (requesttimeoutexception e) {
            e.printstacktrace();
        } catch (serviceresponseexception e) {
            e.printstacktrace();
            system.out.println(e.gethttpstatuscode());
            system.out.println(e.getrequestid());
            system.out.println(e.geterrorcode());
            system.out.println(e.geterrormsg());
        }
    }
}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# coding: utf-8
from huaweicloudsdkcore.auth.credentials import basiccredentials
from huaweicloudsdkeip.v2.region.eip_region import eipregion
from huaweicloudsdkcore.exceptions import exceptions
from huaweicloudsdkeip.v2 import *
if __name__ == "__main__":
    # the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
    # in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment
    ak = os.getenv("cloud_sdk_ak")
    sk = os.getenv("cloud_sdk_sk")
    credentials = basiccredentials(ak, sk) \
    client = eipclient.new_builder() \
        .with_credentials(credentials) \
        .with_region(eipregion.value_of("")) \
        .build()
    try:
        request = neutronlistfloatingipsrequest()
        request.limit = <limit>
        request.marker = ""
        request.page_reverse = <pagereverse>
        request.id = ""
        request.floating_ip_address = ""
        request.router_id = ""
        request.port_id = ""
        request.fixed_ip_address = ""
        request.tenant_id = ""
        request.floating_network_id = ""
        response = client.neutron_list_floating_ips(request)
        print(response)
    except exceptions.clientrequestexception as e:
        print(e.status_code)
        print(e.request_id)
        print(e.error_code)
        print(e.error_msg)
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package main
import (
	"fmt"
	"github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic"
    eip "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/eip/v2"
	"github.com/huaweicloud/huaweicloud-sdk-go-v3/services/eip/v2/model"
    region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/eip/v2/region"
)
func main() {
    // the ak and sk used for authentication are hard-coded or stored in plaintext, which has great security risks. it is recommended that the ak and sk be stored in ciphertext in configuration files or environment variables and decrypted during use to ensure security.
    // in this example, ak and sk are stored in environment variables for authentication. before running this example, set environment variables cloud_sdk_ak and cloud_sdk_sk in the local environment
    ak := os.getenv("cloud_sdk_ak")
    sk := os.getenv("cloud_sdk_sk")
    auth := basic.newcredentialsbuilder().
        withak(ak).
        withsk(sk).
        build()
    client := eip.neweipclient(
        eip.eipclientbuilder().
            withregion(region.valueof("")).
            withcredential(auth).
            build())
    request := &model.neutronlistfloatingipsrequest{}
	limitrequest:= int32(<limit>)
	request.limit = &limitrequest
	markerrequest:= ""
	request.marker = &markerrequest
	pagereverserequest:= <page_reverse>
	request.pagereverse = &pagereverserequest
	idrequest:= ""
	request.id = &idrequest
	floatingipaddressrequest:= ""
	request.floatingipaddress = &floatingipaddressrequest
	routeridrequest:= ""
	request.routerid = &routeridrequest
	portidrequest:= ""
	request.portid = &portidrequest
	fixedipaddressrequest:= ""
	request.fixedipaddress = &fixedipaddressrequest
	tenantidrequest:= ""
	request.tenantid = &tenantidrequest
	floatingnetworkidrequest:= ""
	request.floatingnetworkid = &floatingnetworkidrequest
	response, err := client.neutronlistfloatingips(request)
	if err == nil {
        fmt.printf("% v\n", response)
    } else {
        fmt.println(err)
    }
}

更多编程语言的sdk代码示例,请参见的代码示例页签,可生成自动对应的sdk代码示例。

状态码

状态码

描述

200

get操作正常返回

错误码

请参见。

分享:
网站地图