tencent cloud

文档反馈

DescribeCustomerGateways

最后更新时间:2023-08-23 14:11:09

1. API Description

Domain name for API request: vpc.tencentcloudapi.com.

This API (DescribeCustomerGateways) is used to query the customer gateway list.

A maximum of 100 requests can be initiated per second for this API.

We recommend you to use API Explorer
Try it
API Explorer provides a range of capabilities, including online call, signature authentication, SDK code generation, and API quick search. It enables you to view the request, response, and auto-generated examples.

2. Input Parameters

The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.

Parameter Name Required Type Description
Action Yes String Common Params. The value used for this API: DescribeCustomerGateways.
Version Yes String Common Params. The value used for this API: 2017-03-12.
Region No String Common Params. This parameter is not required for this API.
CustomerGatewayIds.N No Array of String Customer gateway ID, such as cgw-2wqq41m9. Each request can have a maximum of 100 instances. CustomerGatewayIds and Filters cannot be specified at the same time.
Filters.N No Array of Filter The filter condition. For details, see the Instance Filter Conditions Table. The upper limit for Filters in each request is 10 and 5 for Filter.Values. CustomerGatewayIds and Filters cannot be specified at the same time.
  • customer-gateway-id - String - (Filter condition) The unique ID of the user gateway, such as cgw-mgp33pll.
  • customer-gateway-name - String - (Filter condition) The name of the user gateway, such as test-cgw.
  • ip-address - String - (Filter condition) The public IP address, such as 58.211.1.12.
  • Offset No Integer Offset. Default value: 0. For more information on Offset, see the relevant section in the API Introduction.
    Limit No Integer Number of returned results. Default value: 20. Maximum value: 100.

    3. Output Parameters

    Parameter Name Type Description
    CustomerGatewaySet Array of CustomerGateway Customer gateway object list
    TotalCount Integer Number of eligible instances
    RequestId String The unique request ID, which is returned for each request. RequestId is required for locating a problem.

    4. Example

    Example1 Querying customer gateways

    This example shows you how to query customer gateways.

    Input Example

    POST / HTTP/1.1
    Host: vpc.tencentcloudapi.com
    Content-Type: application/json
    X-TC-Action: DescribeCustomerGateways
    <Common request parameters>
    
    {
        "CustomerGatewayIds": [
            "cgw-mgp33pll"
        ],
        "Filters": [
            {
                "Name": "customer-gateway-name",
                "Values": [
                    "test-cgw"
                ]
            }
        ],
        "Offset": 1,
        "Limit": 1
    }
    

    Output Example

    {
        "Response": {
            "CustomerGatewaySet": [
                {
                    "CustomerGatewayId": "cgw-mgp33pll",
                    "IpAddress": "58.211.1.12",
                    "CustomerGatewayName": "test-cgw",
                    "CreatedTime": "2018-03-25 17:52:39"
                }
            ],
            "TotalCount": 1,
            "RequestId": "e5500b60-4964-43c7-8a6c-4bff98f59aeb"
        }
    }
    

    5. Developer Resources

    SDK

    TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.

    Command Line Interface

    6. Error Code

    The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.

    Error Code Description
    InternalError.ModuleError Internal module error
    InvalidParameter.FilterInvalidKey The specified filter condition does not exist.
    InvalidParameterValue.Malformed Invalid input parameter format.
    ResourceNotFound The resource does not exist.