Get vCD Network Extension Appliances
You can get a representation of a collection of vCloud Director network extension appliances configured for a company with the specified ID.
Request
To get all network extension appliances, send the GET HTTPS request to the URL of the /tenants/{ID}/vcdResources/networkExtensionAppliance collection.
HTTP Request
Request Headers
The request header must contain the authorization token.
Response
The server returns the following response to the client.
Response Code
A successfully completed operation returns response code 200 OK.
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 Service Provider Console returns a representation of the /tenants/{ID}/vcdResources/networkExtensionAppliance collection.
Example
The following request returns all vCloud Director network extension appliances configured for a company with ID 1.
Request: GET https://localhost:1281/v2/tenants/1/replicaResources/networkExtensionAppliance
Request Header: Authorization: Bearer <Access-Token>
Response Code: 200 Success
Response Body: [ { "dataCenterUid": "78a2a765-0cb5-4fb9-90ea-6f5da648e940", "dataCenterName": "Alpha_vDC", "id": "BackupTenantNetworkAppliance:694e3dad-087b-48e9-8186-21a0d5b152bd9ae079a2-73d8-433f-a5b2-9d7c91b91b1a", "name": "Alpha_NEA", "ipAddress": "172.16.2.25", "defaultGateway": "172.16.2.1", "dhcpEnabled": false, "subnetMask": "255.255.255.0" }, { "dataCenterUid": "536147ce-1cca-41fd-afd5-708a8c53b473", "dataCenterName": "Beta_vDC", "id": "BackupTenantNetworkAppliance:d2f2fb19-698a-4054-8fd8-5a064de5eff9f6e06d40-14d8-4933-b428-d50d4b2eacf7", "name": "Beta_NEA", "ipAddress": "", "defaultGateway": "", "dhcpEnabled": true, "subnetMask": "" ] |