文档首页/ 弹性公网IP EIP/ API参考/ API/ 弹性公网IP标签管理/ 查询弹性公网IP资源实例 - ListPublicipsByTags
更新时间:2025-12-31 GMT+08:00
分享

查询弹性公网IP资源实例 - ListPublicipsByTags

功能介绍

使用标签过滤实例。

调试

您可以在API Explorer中调试该接口,支持自动认证鉴权。

授权信息

账号具备所有API的调用权限,如果使用账号下的IAM用户调用当前API,该IAM用户需具备调用API所需的权限。

  • 如果使用角色与策略授权,具体权限要求请参见权限和授权项
  • 如果使用身份策略授权,需具备如下身份策略权限。

    授权项

    访问级别

    资源类型(*为必须)

    条件键

    别名

    依赖的授权项

    eip:publicIps:listTags

    List

    publicip *

    -

    vpc:publicipTags:get

    -

URI

POST /v2.0/{project_id}/publicips/resource_instances/action

表1 路径参数

参数

是否必选

参数类型

描述

project_id

String

项目ID,获取项目ID请参见获取项目ID

请求参数

表2 请求Body参数

参数

是否必选

参数类型

描述

tags

Array of TagReq objects

  • 功能说明:标签对象,最多包含10个key。

  • 约束与限制:

    • 每个key下面的value最多10个,结构体不能缺失,key不能为空或者空字符串。

    • Key不能重复,同一个key中values不能重复。

limit

Integer

  • 功能说明:查询记录数(action为count时无此参数)如果action为filter默认为1000,limit最多为1000,不能为负数,最小值为1

最小值:1

最大值:1000

offset

Integer

  • 功能说明:索引位置,从offset指定的下一条数据开始查询。查询第一页数据时,不需要传入此参数,查询后续页码数据时,将查询前一页数据时响应体中的值带入此参数(action为count时无此参数)如果action为filter默认为0,必须为数字,不能为负数

最小值:0

action

String

  • 功能说明:操作标识(仅限于filter,count):filter(过滤),count(查询总条数)

如果是filter就是分页查询,如果是count只需按照条件将总条数返回即可。

matches

Array of MatchReq objects

搜索字段,key为要匹配的字段,当前仅支持resource_name。value为匹配的值。此字段为固定字典值。

表3 TagReq

参数

是否必选

参数类型

描述

key

String

  • 功能说明:键。最大长度128个unicode字符。 key不能为空。(搜索时不对此参数做校验)

最大长度:128

values

Array of strings

  • 功能说明:值列表。每个值最大长度255个unicode字符,如果values为空列表,则表示any_value。value之间为或的关系。

最大长度:255

表4 MatchReq

参数

是否必选

参数类型

描述

key

String

  • 功能说明:键。当前仅限定为resource_name

value

String

  • 功能说明:值。当前仅限定为EIP地址

最大长度:255

响应参数

状态码:200

表5 响应Body参数

参数

参数类型

描述

resources

Array of ListResourceResp objects

resource对象列表

total_count

Integer

总记录数

表6 ListResourceResp

参数

参数类型

描述

resource_detail

Object

  • 功能说明:资源详情。 资源对象,用于扩展。默认为空

resource_id

String

  • 功能说明:资源ID

最小长度:0

最大长度:36

resource_name

String

  • 功能说明:资源名称,没有默认为空字符串

最小长度:0

最大长度:256

tags

Array of ListResourceTagResp objects

  • 功能说明:标签列表,没有标签默认为空数组

表7 ListResourceTagResp

参数

参数类型

描述

key

String

  • 功能说明:键。最大长度128个unicode字符。 key不能为空。(搜索时不对此参数做校验)

最小长度:1

最大长度:128

value

String

  • 功能说明:值列表。每个值最大长度255个unicode字符,如果values为空列表,则表示any_value。value之间为或的关系。

最小长度:0

最大长度:255

请求示例

  • action为filter时请求体。

    {
      "offset" : 0,
      "limit" : 100,
      "action" : "filter",
      "matches" : [ {
        "key" : "resource_name",
        "value" : "resource1"
      } ],
      "tags" : [ {
        "key" : "key1",
        "values" : [ "value1", "value2" ]
      } ]
    }
  • action为count时请求体。

    {
      "action" : "count",
      "tags" : [ {
        "key" : "key1",
        "values" : [ "value1", "value2" ]
      }, {
        "key" : "key2",
        "values" : [ "value1", "value2" ]
      } ],
      "matches" : [ {
        "key" : "resource_name",
        "value" : "resource1"
      } ]
    }

响应示例

状态码:200

GET操作正常返回

{
  "total_count" : 1000,
  "resources" : [ {
    "resource_detail" : null,
    "resource_id" : "cdfs_cefs_wesas_12_dsad",
    "resource_name" : "resouece1",
    "tags" : [ {
      "value" : "value1",
      "key" : "key1"
    }, {
      "value" : "value1",
      "key" : "key2"
    } ]
  } ]
}

SDK代码示例

SDK代码示例如下。

  • action为filter时请求体。

     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
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    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.*;
    
    import java.util.List;
    import java.util.ArrayList;
    
    public class ListPublicipsByTagsSolution {
    
        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");
            String projectId = "{project_id}";
    
            ICredential auth = new BasicCredentials()
                    .withProjectId(projectId)
                    .withAk(ak)
                    .withSk(sk);
    
            EipClient client = EipClient.newBuilder()
                    .withCredential(auth)
                    .withRegion(EipRegion.valueOf("<YOUR REGION>"))
                    .build();
            ListPublicipsByTagsRequest request = new ListPublicipsByTagsRequest();
            ListPublicipsByTagsRequestBody body = new ListPublicipsByTagsRequestBody();
            List<MatchReq> listbodyMatches = new ArrayList<>();
            listbodyMatches.add(
                new MatchReq()
                    .withKey(MatchReq.KeyEnum.fromValue("resource_name"))
                    .withValue("resource1")
            );
            List<String> listTagsValues = new ArrayList<>();
            listTagsValues.add("value1");
            listTagsValues.add("value2");
            List<TagReq> listbodyTags = new ArrayList<>();
            listbodyTags.add(
                new TagReq()
                    .withKey("key1")
                    .withValues(listTagsValues)
            );
            body.withMatches(listbodyMatches);
            body.withAction(ListPublicipsByTagsRequestBody.ActionEnum.fromValue("filter"));
            body.withOffset(0);
            body.withLimit(100);
            body.withTags(listbodyTags);
            request.withBody(body);
            try {
                ListPublicipsByTagsResponse response = client.listPublicipsByTags(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());
            }
        }
    }
    
  • action为count时请求体。

     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
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    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.*;
    
    import java.util.List;
    import java.util.ArrayList;
    
    public class ListPublicipsByTagsSolution {
    
        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");
            String projectId = "{project_id}";
    
            ICredential auth = new BasicCredentials()
                    .withProjectId(projectId)
                    .withAk(ak)
                    .withSk(sk);
    
            EipClient client = EipClient.newBuilder()
                    .withCredential(auth)
                    .withRegion(EipRegion.valueOf("<YOUR REGION>"))
                    .build();
            ListPublicipsByTagsRequest request = new ListPublicipsByTagsRequest();
            ListPublicipsByTagsRequestBody body = new ListPublicipsByTagsRequestBody();
            List<MatchReq> listbodyMatches = new ArrayList<>();
            listbodyMatches.add(
                new MatchReq()
                    .withKey(MatchReq.KeyEnum.fromValue("resource_name"))
                    .withValue("resource1")
            );
            List<String> listTagsValues = new ArrayList<>();
            listTagsValues.add("value1");
            listTagsValues.add("value2");
            List<String> listTagsValues1 = new ArrayList<>();
            listTagsValues1.add("value1");
            listTagsValues1.add("value2");
            List<TagReq> listbodyTags = new ArrayList<>();
            listbodyTags.add(
                new TagReq()
                    .withKey("key1")
                    .withValues(listTagsValues1)
            );
            listbodyTags.add(
                new TagReq()
                    .withKey("key2")
                    .withValues(listTagsValues)
            );
            body.withMatches(listbodyMatches);
            body.withAction(ListPublicipsByTagsRequestBody.ActionEnum.fromValue("count"));
            body.withTags(listbodyTags);
            request.withBody(body);
            try {
                ListPublicipsByTagsResponse response = client.listPublicipsByTags(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());
            }
        }
    }
    
  • action为filter时请求体。

     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
    # coding: utf-8
    
    import os
    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.environ["CLOUD_SDK_AK"]
        sk = os.environ["CLOUD_SDK_SK"]
        projectId = "{project_id}"
    
        credentials = BasicCredentials(ak, sk, projectId)
    
        client = EipClient.new_builder() \
            .with_credentials(credentials) \
            .with_region(EipRegion.value_of("<YOUR REGION>")) \
            .build()
    
        try:
            request = ListPublicipsByTagsRequest()
            listMatchesbody = [
                MatchReq(
                    key="resource_name",
                    value="resource1"
                )
            ]
            listValuesTags = [
                "value1",
                "value2"
            ]
            listTagsbody = [
                TagReq(
                    key="key1",
                    values=listValuesTags
                )
            ]
            request.body = ListPublicipsByTagsRequestBody(
                matches=listMatchesbody,
                action="filter",
                offset=0,
                limit=100,
                tags=listTagsbody
            )
            response = client.list_publicips_by_tags(request)
            print(response)
        except exceptions.ClientRequestException as e:
            print(e.status_code)
            print(e.request_id)
            print(e.error_code)
            print(e.error_msg)
    
  • action为count时请求体。

     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
    56
    57
    58
    59
    60
    # coding: utf-8
    
    import os
    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.environ["CLOUD_SDK_AK"]
        sk = os.environ["CLOUD_SDK_SK"]
        projectId = "{project_id}"
    
        credentials = BasicCredentials(ak, sk, projectId)
    
        client = EipClient.new_builder() \
            .with_credentials(credentials) \
            .with_region(EipRegion.value_of("<YOUR REGION>")) \
            .build()
    
        try:
            request = ListPublicipsByTagsRequest()
            listMatchesbody = [
                MatchReq(
                    key="resource_name",
                    value="resource1"
                )
            ]
            listValuesTags = [
                "value1",
                "value2"
            ]
            listValuesTags1 = [
                "value1",
                "value2"
            ]
            listTagsbody = [
                TagReq(
                    key="key1",
                    values=listValuesTags1
                ),
                TagReq(
                    key="key2",
                    values=listValuesTags
                )
            ]
            request.body = ListPublicipsByTagsRequestBody(
                matches=listMatchesbody,
                action="count",
                tags=listTagsbody
            )
            response = client.list_publicips_by_tags(request)
            print(response)
        except exceptions.ClientRequestException as e:
            print(e.status_code)
            print(e.request_id)
            print(e.error_code)
            print(e.error_msg)
    
  • action为filter时请求体。

     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
    56
    57
    58
    59
    60
    61
    62
    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")
        projectId := "{project_id}"
    
        auth := basic.NewCredentialsBuilder().
            WithAk(ak).
            WithSk(sk).
            WithProjectId(projectId).
            Build()
    
        client := eip.NewEipClient(
            eip.EipClientBuilder().
                WithRegion(region.ValueOf("<YOUR REGION>")).
                WithCredential(auth).
                Build())
    
        request := &model.ListPublicipsByTagsRequest{}
    	var listMatchesbody = []model.MatchReq{
            {
                Key: model.GetMatchReqKeyEnum().RESOURCE_NAME,
                Value: "resource1",
            },
        }
    	var listValuesTags = []string{
            "value1",
    	    "value2",
        }
    	var listTagsbody = []model.TagReq{
            {
                Key: "key1",
                Values: listValuesTags,
            },
        }
    	offsetListPublicipsByTagsRequestBody:= int32(0)
    	limitListPublicipsByTagsRequestBody:= int32(100)
    	request.Body = &model.ListPublicipsByTagsRequestBody{
    		Matches: &listMatchesbody,
    		Action: model.GetListPublicipsByTagsRequestBodyActionEnum().FILTER,
    		Offset: &offsetListPublicipsByTagsRequestBody,
    		Limit: &limitListPublicipsByTagsRequestBody,
    		Tags: &listTagsbody,
    	}
    	response, err := client.ListPublicipsByTags(request)
    	if err == nil {
            fmt.Printf("%+v\n", response)
        } else {
            fmt.Println(err)
        }
    }
    
  • action为count时请求体。

     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
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    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")
        projectId := "{project_id}"
    
        auth := basic.NewCredentialsBuilder().
            WithAk(ak).
            WithSk(sk).
            WithProjectId(projectId).
            Build()
    
        client := eip.NewEipClient(
            eip.EipClientBuilder().
                WithRegion(region.ValueOf("<YOUR REGION>")).
                WithCredential(auth).
                Build())
    
        request := &model.ListPublicipsByTagsRequest{}
    	var listMatchesbody = []model.MatchReq{
            {
                Key: model.GetMatchReqKeyEnum().RESOURCE_NAME,
                Value: "resource1",
            },
        }
    	var listValuesTags = []string{
            "value1",
    	    "value2",
        }
    	var listValuesTags1 = []string{
            "value1",
    	    "value2",
        }
    	var listTagsbody = []model.TagReq{
            {
                Key: "key1",
                Values: listValuesTags1,
            },
            {
                Key: "key2",
                Values: listValuesTags,
            },
        }
    	request.Body = &model.ListPublicipsByTagsRequestBody{
    		Matches: &listMatchesbody,
    		Action: model.GetListPublicipsByTagsRequestBodyActionEnum().COUNT,
    		Tags: &listTagsbody,
    	}
    	response, err := client.ListPublicipsByTags(request)
    	if err == nil {
            fmt.Printf("%+v\n", response)
        } else {
            fmt.Println(err)
        }
    }
    

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

状态码

状态码

描述

200

GET操作正常返回

错误码

请参见错误码

相关文档