Updated on 2024-03-28 GMT+08:00

Querying Private NAT Gateways

Function

  • This API is used to query private NAT gateways by tag.

  • TMS uses this API to query and list private NAT gateways by tag.

Calling Method

For details, see Calling APIs.

URI

POST /v3/{project_id}/private-nat-gateways/resource_instances/action

Table 1 Path Parameters

Parameter

Mandatory

Type

Description

project_id

Yes

String

Specifies the project ID.

Minimum: 1

Maximum: 32

Request Parameters

Table 2 Request header parameters

Parameter

Mandatory

Type

Description

X-Auth-Token

Yes

String

Specifies the token of a user. It is a response to the API used to obtain the token of a user. This API is the only one that does not require authentication. The value of X-Subject-Token in the response header is the token.

Minimum: 1

Maximum: 10240

Table 3 Request body parameters

Parameter

Mandatory

Type

Description

offset

No

String

Specifies the index position. The query starts from the next data record indexed by this parameter. You do not need to specify this parameter when you query resources on the first page. When you query resources on subsequent pages, set this parameter to the value returned in the response body for the previous query. This parameter is not available when action is set to count. If action is set to filter, the value must be a positive number, and the default value is 0.

Minimum: 0

Maximum: 65535

limit

No

String

Tags

Minimum: 1

Maximum: 1000

action

Yes

String

Specifies the operation to perform, which can only be filter (filtering) or count (querying the total number). filter indicates pagination query. count indicates that the total number of query results meeting the search criteria will be returned.

Enumeration values:

  • filter

  • count

matches

No

Array of Match objects

Tags

not_tags

No

Array of Tags objects

Specifies details of a resource. This parameter is used for extension and is left blank by default.

Array Length: 1 - 10

tags

No

Array of Tags objects

Specifies the tag key.

Array Length: 1 - 10

tags_any

No

Array of Tags objects

Specifies any tag that is included. Each tag can contain a maximum of 10 keys, and each key can contain a maximum of 10 values. The structure body cannot be missing, and the key cannot be left blank or set to an empty string. Keys must be unique and values of a key must be unique. Resources identified by different keys are in OR relationship, and values in one tag are in OR relationship. If no filtering condition is specified, full data is returned.

Array Length: 1 - 10

not_tags_any

No

Array of Tags objects

Specifies any tag that is not included. Each tag can contain a maximum of 10 keys, and each key can contain a maximum of 10 values. The structure body cannot be missing, and the key cannot be left blank or set to an empty string. Keys must be unique and values of a key must be unique. Resources not identified by different keys are in OR relationship, and values in one tag are in OR relationship. If no filtering condition is specified, full data is returned.

Array Length: 1 - 10

Table 4 Match

Parameter

Mandatory

Type

Description

key

Yes

String

Specifies the tag key used to search resources.

Minimum: 1

Maximum: 128

value

Yes

String

Specifies the tag value used to search resources.

Minimum: 0

Maximum: 255

Table 5 Tags

Parameter

Mandatory

Type

Description

key

Yes

String

Specifies the operation to perform, which can only be filter (filtering) or count (querying the total number).filter indicates pagination query. count indicates that the total number of query results meeting the search criteria will be returned.

Minimum: 1

Maximum: 128

values

Yes

Array of strings

Specifies any tag that is included. Each tag can contain a maximum of 10 keys, and each key can contain a maximum of 10 values. The structure body cannot be missing, and the key cannot be left blank or set to an empty string. Keys must be unique and values of a key must be unique. Resources identified by different keys are in OR relationship, and values in one tag are in OR relationship. If no filtering condition is specified, full data is returned.

Minimum: 0

Maximum: 255

Response Parameters

Status code: 200

Table 6 Response body parameters

Parameter

Type

Description

resources

Array of Resource objects

Specifies the resource list.

Array Length: 1 - 2000

request_id

String

Specifies the request ID.

Minimum: 1

Maximum: 36

total_count

Integer

Specifies the total number of records.

Table 7 Resource

Parameter

Type

Description

resource_detail

Object

Specifies details of a resource. This parameter is used for extension and is left blank by default.

resource_id

String

Specifies the resource ID.

Minimum: 36

Maximum: 36

resource_name

String

Specifies the resource name. This parameter is an empty string by default if there is no resource name.

Minimum: 0

Maximum: 36

resource_tag

Array of ResourceTag objects

Specifies the list of queried tags. If no tag is matched, an empty array is returned.

Array Length: 1 - 10

Table 8 ResourceTag

Parameter

Type

Description

key

String

Specifies the tag key.

Minimum: 1

Maximum: 128

value

String

Specifies the tag value.

Minimum: 0

Maximum: 255

Example Requests

  • Querying public NAT gateways by tag (Setting action to filter and limit to 10)

    POST  https://{Endpoint}/v3/cfa563efb77d4b6d9960781d82530fd8/private-nat-gateways/resource_instances/action
    
    {
      "offset" : "10",
      "limit" : "10",
      "action" : "filter",
      "matches" : [ {
        "key" : "resource_name",
        "value" : "resource1"
      } ],
      "not_tags" : [ {
        "key" : "key1",
        "values" : [ "*value1", "value2" ]
      } ],
      "tags" : [ {
        "key" : "key1",
        "values" : [ "*value1", "value2" ]
      } ],
      "tags_any" : [ {
        "key" : "key1",
        "values" : [ "value1", "value2" ]
      } ],
      "not_tags_any" : [ {
        "key" : "key1",
        "values" : [ "value1", "value2" ]
      } ]
    }
  • Querying private NAT gateways by tag (Setting action to count and adding tags)

    POST  https://{Endpoint}/v3/cfa563efb77d4b6d9960781d82530fd8/private-nat-gateways/resource_instances/action
    
    {
      "action" : "count",
      "not_tags" : [ {
        "key" : "key1",
        "values" : [ "value1", "*value2" ]
      } ],
      "tags" : [ {
        "key" : "key1",
        "values" : [ "value1", "value2" ]
      }, {
        "key" : "key2",
        "values" : [ "value1", "value2" ]
      } ],
      "tags_any" : [ {
        "key" : "key1",
        "values" : [ "value1", "value2" ]
      } ],
      "not_tags_any" : [ {
        "key" : "key1",
        "values" : [ "value1", "value2" ]
      } ],
      "matches" : [ {
        "key" : "resource_name",
        "value" : "resource1"
      } ]
    }

Example Responses

Status code: 200

  • Query operation succeeded.

  • Example 1: the response body when action is set to count

  • Example 2: the response body when action is set to filter

  • Example 1

    {
      "request_id" : "a67262f6b7242d63d4ae95e41abf2790",
      "total_count" : 100
    }
  • Example 2

    {
      "resources" : [ {
        "resource_detail" : null,
        "resource_id" : "e5ad289f-9c56-4daf-b08b-2e53a983473a",
        "resource_name" : "nat_gateways",
        "tags" : [ {
          "key" : "key1",
          "value" : "value1"
        }, {
          "key" : "key2",
          "value" : "value1"
        } ]
      } ],
      "request_id" : "a67262f6b7242d63d4ae95e41abf2790",
      "total_count" : 1
    }

SDK Sample Code

The SDK sample code is as follows.

  • Querying public NAT gateways by tag (Setting action to filter and limit to 10)

     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
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    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.nat.v2.region.NatRegion;
    import com.huaweicloud.sdk.nat.v2.*;
    import com.huaweicloud.sdk.nat.v2.model.*;
    
    import java.util.List;
    import java.util.ArrayList;
    
    public class ListPrivateNatsByTagsSolution {
    
        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);
    
            NatClient client = NatClient.newBuilder()
                    .withCredential(auth)
                    .withRegion(NatRegion.valueOf("<YOUR REGION>"))
                    .build();
            ListPrivateNatsByTagsRequest request = new ListPrivateNatsByTagsRequest();
            ListTagResourceInstancesRequestBody body = new ListTagResourceInstancesRequestBody();
            List<String> listNotTagsAnyValues = new ArrayList<>();
            listNotTagsAnyValues.add("value1");
            listNotTagsAnyValues.add("value2");
            List<Tags> listbodyNotTagsAny = new ArrayList<>();
            listbodyNotTagsAny.add(
                new Tags()
                    .withKey("key1")
                    .withValues(listNotTagsAnyValues)
            );
            List<String> listTagsAnyValues = new ArrayList<>();
            listTagsAnyValues.add("value1");
            listTagsAnyValues.add("value2");
            List<Tags> listbodyTagsAny = new ArrayList<>();
            listbodyTagsAny.add(
                new Tags()
                    .withKey("key1")
                    .withValues(listTagsAnyValues)
            );
            List<String> listTagsValues = new ArrayList<>();
            listTagsValues.add("*value1");
            listTagsValues.add("value2");
            List<Tags> listbodyTags = new ArrayList<>();
            listbodyTags.add(
                new Tags()
                    .withKey("key1")
                    .withValues(listTagsValues)
            );
            List<String> listNotTagsValues = new ArrayList<>();
            listNotTagsValues.add("*value1");
            listNotTagsValues.add("value2");
            List<Tags> listbodyNotTags = new ArrayList<>();
            listbodyNotTags.add(
                new Tags()
                    .withKey("key1")
                    .withValues(listNotTagsValues)
            );
            List<Match> listbodyMatches = new ArrayList<>();
            listbodyMatches.add(
                new Match()
                    .withKey("resource_name")
                    .withValue("resource1")
            );
            body.withNotTagsAny(listbodyNotTagsAny);
            body.withTagsAny(listbodyTagsAny);
            body.withTags(listbodyTags);
            body.withNotTags(listbodyNotTags);
            body.withMatches(listbodyMatches);
            body.withAction(ListTagResourceInstancesRequestBody.ActionEnum.fromValue("filter"));
            body.withLimit("10");
            body.withOffset("10");
            request.withBody(body);
            try {
                ListPrivateNatsByTagsResponse response = client.listPrivateNatsByTags(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());
            }
        }
    }
    
  • Querying private NAT gateways by tag (Setting action to count and adding tags)

      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
     78
     79
     80
     81
     82
     83
     84
     85
     86
     87
     88
     89
     90
     91
     92
     93
     94
     95
     96
     97
     98
     99
    100
    101
    102
    103
    104
    105
    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.nat.v2.region.NatRegion;
    import com.huaweicloud.sdk.nat.v2.*;
    import com.huaweicloud.sdk.nat.v2.model.*;
    
    import java.util.List;
    import java.util.ArrayList;
    
    public class ListPrivateNatsByTagsSolution {
    
        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);
    
            NatClient client = NatClient.newBuilder()
                    .withCredential(auth)
                    .withRegion(NatRegion.valueOf("<YOUR REGION>"))
                    .build();
            ListPrivateNatsByTagsRequest request = new ListPrivateNatsByTagsRequest();
            ListTagResourceInstancesRequestBody body = new ListTagResourceInstancesRequestBody();
            List<String> listNotTagsAnyValues = new ArrayList<>();
            listNotTagsAnyValues.add("value1");
            listNotTagsAnyValues.add("value2");
            List<Tags> listbodyNotTagsAny = new ArrayList<>();
            listbodyNotTagsAny.add(
                new Tags()
                    .withKey("key1")
                    .withValues(listNotTagsAnyValues)
            );
            List<String> listTagsAnyValues = new ArrayList<>();
            listTagsAnyValues.add("value1");
            listTagsAnyValues.add("value2");
            List<Tags> listbodyTagsAny = new ArrayList<>();
            listbodyTagsAny.add(
                new Tags()
                    .withKey("key1")
                    .withValues(listTagsAnyValues)
            );
            List<String> listTagsValues = new ArrayList<>();
            listTagsValues.add("value1");
            listTagsValues.add("value2");
            List<String> listTagsValues1 = new ArrayList<>();
            listTagsValues1.add("value1");
            listTagsValues1.add("value2");
            List<Tags> listbodyTags = new ArrayList<>();
            listbodyTags.add(
                new Tags()
                    .withKey("key1")
                    .withValues(listTagsValues1)
            );
            listbodyTags.add(
                new Tags()
                    .withKey("key2")
                    .withValues(listTagsValues)
            );
            List<String> listNotTagsValues = new ArrayList<>();
            listNotTagsValues.add("value1");
            listNotTagsValues.add("*value2");
            List<Tags> listbodyNotTags = new ArrayList<>();
            listbodyNotTags.add(
                new Tags()
                    .withKey("key1")
                    .withValues(listNotTagsValues)
            );
            List<Match> listbodyMatches = new ArrayList<>();
            listbodyMatches.add(
                new Match()
                    .withKey("resource_name")
                    .withValue("resource1")
            );
            body.withNotTagsAny(listbodyNotTagsAny);
            body.withTagsAny(listbodyTagsAny);
            body.withTags(listbodyTags);
            body.withNotTags(listbodyNotTags);
            body.withMatches(listbodyMatches);
            body.withAction(ListTagResourceInstancesRequestBody.ActionEnum.fromValue("count"));
            request.withBody(body);
            try {
                ListPrivateNatsByTagsResponse response = client.listPrivateNatsByTags(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());
            }
        }
    }
    
  • Querying public NAT gateways by tag (Setting action to filter and limit to 10)

     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
    78
    79
    80
    81
    82
    83
    84
    85
    # coding: utf-8
    
    from huaweicloudsdkcore.auth.credentials import BasicCredentials
    from huaweicloudsdknat.v2.region.nat_region import NatRegion
    from huaweicloudsdkcore.exceptions import exceptions
    from huaweicloudsdknat.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 = __import__('os').getenv("CLOUD_SDK_AK")
        sk = __import__('os').getenv("CLOUD_SDK_SK")
    
        credentials = BasicCredentials(ak, sk) \
    
        client = NatClient.new_builder() \
            .with_credentials(credentials) \
            .with_region(NatRegion.value_of("<YOUR REGION>")) \
            .build()
    
        try:
            request = ListPrivateNatsByTagsRequest()
            listValuesNotTagsAny = [
                "value1",
                "value2"
            ]
            listNotTagsAnybody = [
                Tags(
                    key="key1",
                    values=listValuesNotTagsAny
                )
            ]
            listValuesTagsAny = [
                "value1",
                "value2"
            ]
            listTagsAnybody = [
                Tags(
                    key="key1",
                    values=listValuesTagsAny
                )
            ]
            listValuesTags = [
                "*value1",
                "value2"
            ]
            listTagsbody = [
                Tags(
                    key="key1",
                    values=listValuesTags
                )
            ]
            listValuesNotTags = [
                "*value1",
                "value2"
            ]
            listNotTagsbody = [
                Tags(
                    key="key1",
                    values=listValuesNotTags
                )
            ]
            listMatchesbody = [
                Match(
                    key="resource_name",
                    value="resource1"
                )
            ]
            request.body = ListTagResourceInstancesRequestBody(
                not_tags_any=listNotTagsAnybody,
                tags_any=listTagsAnybody,
                tags=listTagsbody,
                not_tags=listNotTagsbody,
                matches=listMatchesbody,
                action="filter",
                limit="10",
                offset="10"
            )
            response = client.list_private_nats_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)
    
  • Querying private NAT gateways by tag (Setting action to count and adding tags)

     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
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    # coding: utf-8
    
    from huaweicloudsdkcore.auth.credentials import BasicCredentials
    from huaweicloudsdknat.v2.region.nat_region import NatRegion
    from huaweicloudsdkcore.exceptions import exceptions
    from huaweicloudsdknat.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 = __import__('os').getenv("CLOUD_SDK_AK")
        sk = __import__('os').getenv("CLOUD_SDK_SK")
    
        credentials = BasicCredentials(ak, sk) \
    
        client = NatClient.new_builder() \
            .with_credentials(credentials) \
            .with_region(NatRegion.value_of("<YOUR REGION>")) \
            .build()
    
        try:
            request = ListPrivateNatsByTagsRequest()
            listValuesNotTagsAny = [
                "value1",
                "value2"
            ]
            listNotTagsAnybody = [
                Tags(
                    key="key1",
                    values=listValuesNotTagsAny
                )
            ]
            listValuesTagsAny = [
                "value1",
                "value2"
            ]
            listTagsAnybody = [
                Tags(
                    key="key1",
                    values=listValuesTagsAny
                )
            ]
            listValuesTags = [
                "value1",
                "value2"
            ]
            listValuesTags1 = [
                "value1",
                "value2"
            ]
            listTagsbody = [
                Tags(
                    key="key1",
                    values=listValuesTags1
                ),
                Tags(
                    key="key2",
                    values=listValuesTags
                )
            ]
            listValuesNotTags = [
                "value1",
                "*value2"
            ]
            listNotTagsbody = [
                Tags(
                    key="key1",
                    values=listValuesNotTags
                )
            ]
            listMatchesbody = [
                Match(
                    key="resource_name",
                    value="resource1"
                )
            ]
            request.body = ListTagResourceInstancesRequestBody(
                not_tags_any=listNotTagsAnybody,
                tags_any=listTagsAnybody,
                tags=listTagsbody,
                not_tags=listNotTagsbody,
                matches=listMatchesbody,
                action="count"
            )
            response = client.list_private_nats_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)
    
  • Querying public NAT gateways by tag (Setting action to filter and limit to 10)

     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
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    package main
    
    import (
    	"fmt"
    	"github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic"
        nat "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/nat/v2"
    	"github.com/huaweicloud/huaweicloud-sdk-go-v3/services/nat/v2/model"
        region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/nat/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 := nat.NewNatClient(
            nat.NatClientBuilder().
                WithRegion(region.ValueOf("<YOUR REGION>")).
                WithCredential(auth).
                Build())
    
        request := &model.ListPrivateNatsByTagsRequest{}
    	var listValuesNotTagsAny = []string{
            "value1",
    	    "value2",
        }
    	var listNotTagsAnybody = []model.Tags{
            {
                Key: "key1",
                Values: listValuesNotTagsAny,
            },
        }
    	var listValuesTagsAny = []string{
            "value1",
    	    "value2",
        }
    	var listTagsAnybody = []model.Tags{
            {
                Key: "key1",
                Values: listValuesTagsAny,
            },
        }
    	var listValuesTags = []string{
            "*value1",
    	    "value2",
        }
    	var listTagsbody = []model.Tags{
            {
                Key: "key1",
                Values: listValuesTags,
            },
        }
    	var listValuesNotTags = []string{
            "*value1",
    	    "value2",
        }
    	var listNotTagsbody = []model.Tags{
            {
                Key: "key1",
                Values: listValuesNotTags,
            },
        }
    	var listMatchesbody = []model.Match{
            {
                Key: "resource_name",
                Value: "resource1",
            },
        }
    	limitListTagResourceInstancesRequestBody:= "10"
    	offsetListTagResourceInstancesRequestBody:= "10"
    	request.Body = &model.ListTagResourceInstancesRequestBody{
    		NotTagsAny: &listNotTagsAnybody,
    		TagsAny: &listTagsAnybody,
    		Tags: &listTagsbody,
    		NotTags: &listNotTagsbody,
    		Matches: &listMatchesbody,
    		Action: model.GetListTagResourceInstancesRequestBodyActionEnum().FILTER,
    		Limit: &limitListTagResourceInstancesRequestBody,
    		Offset: &offsetListTagResourceInstancesRequestBody,
    	}
    	response, err := client.ListPrivateNatsByTags(request)
    	if err == nil {
            fmt.Printf("%+v\n", response)
        } else {
            fmt.Println(err)
        }
    }
    
  • Querying private NAT gateways by tag (Setting action to count and adding tags)

     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
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    package main
    
    import (
    	"fmt"
    	"github.com/huaweicloud/huaweicloud-sdk-go-v3/core/auth/basic"
        nat "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/nat/v2"
    	"github.com/huaweicloud/huaweicloud-sdk-go-v3/services/nat/v2/model"
        region "github.com/huaweicloud/huaweicloud-sdk-go-v3/services/nat/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 := nat.NewNatClient(
            nat.NatClientBuilder().
                WithRegion(region.ValueOf("<YOUR REGION>")).
                WithCredential(auth).
                Build())
    
        request := &model.ListPrivateNatsByTagsRequest{}
    	var listValuesNotTagsAny = []string{
            "value1",
    	    "value2",
        }
    	var listNotTagsAnybody = []model.Tags{
            {
                Key: "key1",
                Values: listValuesNotTagsAny,
            },
        }
    	var listValuesTagsAny = []string{
            "value1",
    	    "value2",
        }
    	var listTagsAnybody = []model.Tags{
            {
                Key: "key1",
                Values: listValuesTagsAny,
            },
        }
    	var listValuesTags = []string{
            "value1",
    	    "value2",
        }
    	var listValuesTags1 = []string{
            "value1",
    	    "value2",
        }
    	var listTagsbody = []model.Tags{
            {
                Key: "key1",
                Values: listValuesTags1,
            },
            {
                Key: "key2",
                Values: listValuesTags,
            },
        }
    	var listValuesNotTags = []string{
            "value1",
    	    "*value2",
        }
    	var listNotTagsbody = []model.Tags{
            {
                Key: "key1",
                Values: listValuesNotTags,
            },
        }
    	var listMatchesbody = []model.Match{
            {
                Key: "resource_name",
                Value: "resource1",
            },
        }
    	request.Body = &model.ListTagResourceInstancesRequestBody{
    		NotTagsAny: &listNotTagsAnybody,
    		TagsAny: &listTagsAnybody,
    		Tags: &listTagsbody,
    		NotTags: &listNotTagsbody,
    		Matches: &listMatchesbody,
    		Action: model.GetListTagResourceInstancesRequestBodyActionEnum().COUNT,
    	}
    	response, err := client.ListPrivateNatsByTags(request)
    	if err == nil {
            fmt.Printf("%+v\n", response)
        } else {
            fmt.Println(err)
        }
    }
    

For SDK sample code of more programming languages, see the Sample Code tab in API Explorer. SDK sample code can be automatically generated.

Status Codes

Status Code

Description

200

  • Query operation succeeded.

  • Example 1: the response body when action is set to count

  • Example 2: the response body when action is set to filter

Error Codes

See Error Codes.