List Private Endpoints (V2)
Lists the private endpoints in a project.
The base URL for this API is in the following format:
https://api.cloud.zilliz.com
The endpoints on the control plane currently supports up to 20 requests per second per user per endpoint.
export BASE_URL="https://api.cloud.zilliz.com"
The authentication token should be an API key with appropriate privileges.
The ID of the project.
The page number to return. The first page is 1.
The number of items to return per page. Values outside 1 to 100 use the default value of 10.
export TOKEN="YOUR_API_KEY"
export projectId="proj-xxxxxxxxxxxxxxxxxxx"
curl --request GET \
--url "${BASE_URL}/v2/projects/${projectId}/privateEndpoints" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Request-Timeout: 5" \
--header "Content-Type: application/json"
Returns a successful result or an error message.
A successful response.
The response code.
A paginated list of private endpoints.
The private endpoints.
A private endpoint and its service status.
The cloud region ID.
The cloud provider ID.
The endpoint service name.
The status of the endpoint service.
The private endpoint ID.
The status of the private endpoint.
The Google Cloud project ID, when applicable.
The current page number.
The number of items per page.
The total number of matching endpoints.
A failure response.
The response code.
The error message.
{
"code": 0,
"data": {
"endpoints": [
{
"regionId": "aws-us-west-2",
"cloudId": "aws",
"endpointService": "com.amazonaws.vpce.us-west-2.vpce-svc-xxxxxxxxxxxxxxxxx",
"endpointServiceStatus": "AVAILABLE",
"endpointId": "vpce-xxxxxxxxxxxxxxxxx",
"endpointStatus": "AVAILABLE"
}
],
"currentPage": 1,
"pageSize": 10,
"count": 1
}
}