List Cloud Providers
Lists all cloud providers available on Zilliz Cloud.
GET
/v2/cloudsThe base URL for this API is in the following format:
https://api.cloud.zilliz.com
export BASE_URL="https://api.cloud.zilliz.com"
Parameters
Authorizationstringheaderrequired
The authentication token should be an API key with appropriate privileges.
Example Value: Bearer {{TOKEN}}
export TOKEN="YOUR_API_KEY"
curl --request GET \
--url "${BASE_URL}/v2/clouds" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Content-Type: application/json"
Responses200 - application/json
codeinteger
Response code.
dataarray
Response payload which is a list of applicable cloud providers.
[]dataobject
List of applicable cloud providers.
cloudIdstring
ID of a cloud provider.
descriptionstring
Description of the cloud provider.
Returns an error message.
codeinteger
Response code.
messagestring
Error message.
{
"code": 0,
"data": [
{
"cloudId": "aws",
"description": "Amazon Web Services"
},
{
"cloudId": "gcp",
"description": "Google Cloud Platform"
},
{
"cloudId": "azure",
"description": "Microsoft Azure"
}
]
}