Updated on 2026-06-11 GMT+08:00

Querying a VPN Connection Monitor

Function

This API is used to query a VPN connection monitor with a specified ID.

Calling Method

For details, see Calling APIs.

Authorization Information

Each account has all the permissions required to call all APIs, but IAM users must be assigned the required permissions.

  • If you are using role/policy-based authorization, see Permissions Policies and Supported Actions for details on the required permissions.
  • If you are using identity policy-based authorization, the following identity policy-based permissions are required.

Action

Access Level

Resource Type (*: required)

Condition Key

Alias

Dependencies

vpn:connectionMonitors:get

read

vpnConnections

  • g:EnterpriseProjectId
  • g:ResourceTag/<tag-key>

-

-

URI

GET /v5/{project_id}/connection-monitors/{connection_monitor_id}

Table 1 Parameter description

Parameter

Type

Mandatory

Description

project_id

String

Yes

Specifies a project ID. You can obtain the project ID by referring to Obtaining the Project ID.

connection_monitor_id

String

Yes

Specifies the ID of a VPN connection monitor.

Request

  • Request parameters

    None

  • Example request
    GET https://{Endpoint}/v5/{project_id}/connection-monitors/{connection_monitor_id}

Response

  • Response parameters

    Returned status code 200: successful query

    Table 2 Parameters in the response body

    Parameter

    Type

    Description

    connection_monitor

    ConnectionMonitorInfo object

    Specifies the connection_monitor object.

    request_id

    String

    Specifies a request ID.

    Table 3 ConnectionMonitorInfo

    Parameter

    Type

    Description

    id

    String

    • Specifies the ID of a VPN connection monitor.
    • The value is a UUID containing 36 characters.

    status

    String

    • Specifies the status of the VPN connection monitor.
    • Value range:

      ACTIVE: normal

      PENDING_CREATE: creating

      PENDING_DELETE: deleting

    vpn_connection_id

    String

    • Specifies the ID of the VPN connection to be monitored.
    • The value is a UUID containing 36 characters.

    type

    String

    • Specifies the type of objects to be monitored.
    • Value range:

      gateway: VPN gateway

    source_ip

    String

    Specifies the source address to be monitored.

    destination_ip

    String

    Specifies the destination address to be monitored.

    proto_type

    String

    • Specifies the protocol used by NQA.
    • Value range:

      icmp: ICMP protocol

  • Example response
    {
        "connection_monitor": {
            "id": "76f64229-demo-a8df-va86-3907e2815b6d",
            "status": "ACTIVE",
            "vpn_connection_id": "cae286f2-demo-a8df-va86-e22416ca1220",
            "type": "gateway",
            "source_ip": "88.***.***.60",
            "destination_ip": "88.***.***.32",
            "proto_type": "icmp"
        },
        "request_id": "6d212bc0-ecb1-457b-977b-5e815fce658d"
    }

Status Codes

For details, see Status Codes.