Get a Company Replication Resource
You can get a representation of a cloud replication resource with the specified ID.
Request
To get a representation of a company replication resource Veeam Availability Console, send the GET HTTPS request to the URL of its resource.
HTTP Request
GET https://<Availability-Console>:1281/v2/tenants/{ID}/replicaResources/{ID} |
Request Headers
The request header must contain the authorization token for the current logon session.
Response
The server returns the following response to the client.
Response Code
A successfully completed operation returns response code 200 Success.
Response Headers
The response to this request contains the following headers. The response may also include additional standard HTTP headers.
Header | Description |
Content-length | The length of the response body. |
Content-type | The media type and syntax of the request body message: application/json; charset=utf-8 |
Response Body
In the response body, Veeam Availability Console returns a representation of the /tenants/{ID}/replicaResources/{ID} resource.
Example
The following example returns a representation of a replication resource with ID 94e53bbb-64e0-4e41-8245-3d7bcee2236d of a company with ID 2.
Request: GET https://localhost:1281/v2/tenants/2/replicaResources/94e53bbb-64e0-4e41-8245-3d7bcee2236d
Request Header: Authorization: Bearer <Access-Token>
Response Code: 200 Success
Response Body: { "id": "94e53bbb-64e0-4e41-8245-3d7bcee2236d", "wanAccelerationEnabled": true, "wanAcceleratorId": "320b66e1-b0ba-4c3d-83b9-d275a50c1f26", "hardwarePlanId": "64716b59-fde7-42a1-976c-737e78a694de" "failoverCapabilitiesEnabled": true, "publicAllocationEnabled": true, "numberOfPublicIps": 2, "_links": { "self": { "href": "https://vac.tech.local:1281/v2/tenants/2/replicaresources/94e53bbb-64e0-4e41-8245-3d7bcee2236d" }, "hardwarePlans": { "href": "https://vac.tech.local:1281/v2/hardwarePlans/1332c8cc-c669-41a7-8d4d-a89a11c79083" }, "wanAccelerators": { "href": "https://vac.tech.local:1281/v2/wanAccelerators/e8baf0ee-3919-49dc-894e-dbacef8eecd8" }, "networkExtensionAppliance": [ { "href": "https://vac.tech.local:1281/v2/tenants/2/networkextensionAppliance/BackupTenantNetworkAppliance%3abd96471c-70c6-4228-99a4-e55060ed07181332c8cc-c669-41a7-8d4d-a89a11c79083" } ] } } |