Resource URLs
Each Veeam Backup for Google Cloud REST API-exposed entity has a resource representing it. To get a resource representation, request its URL.
Veeam Backup for Google Cloud 5.0 REST API requests use the following base URL format:
https://<hostname>:<port>/api/<version> |
where:
- <hostname> is a public IPv4 address or DNS hostname of the VM instance where Veeam Backup for Google Cloud is installed.
- <port> is the number of a port used to communicate with the REST API service running on the backup appliance.
The default port number is 13140.
- <version> is an API version.
The current version is v1.
To get a collection of Veeam Backup for Google Cloud REST API resources, request the base URL followed by a resource collection endpoint. For example:
https://123.123.123.123:13140/api/v1/vmInstances |
To get a representation of an individual resource, enter a resource identifier after the resource collection endpoint. For example:
https://123.123.123.123:13140/api/v1/vmInstances/7876786467083982093 |
The resource identifier is represented by the id property of the resource from the collection. For example:
[ { "id": "7876786467083982093", "resourceId": "dept-gc475akr1", "name": "dept-gc475akr1", "locationId": "1587a0d3-f27a-436e-b0cb-fe2d82a85767", "locationName": "asia-northeast3-a", "projectId": "project-backup-252812", "instanceType": "e2-medium" }, ... } ] |