Get Hardware Plans
You can get a representation of a collection of all hardware plans configured in Veeam Cloud Connect.
Request
To get a representation of Veeam Cloud Connect hardware plans, send the GET HTTPS request to the URL of the /hardwarePlans collection.
HTTPS 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 /hardwarePlans collection.
Example
The following request returns a representation of all hardware plans configured in Veeam Cloud Connect.
Request: GET https://localhost:1281/v2/hardwarePlans
Request Header: Authorization: Bearer <Access-Token>
Response Code: 200 Success
Response Body: [ { "id": "8db62bf7-581b-437b-b640-76212ff40b3a", "name": "Silver Hardware Plan", "cloudConnectServerUid": "fd514938-dfa6-4650-8a7e-d90de1064f38", "cloudConnectAgentUid": "d20227a1-b479-457d-ba6f-706f203a1d40", "cpuQuota": 7.77, "cpuQuotaUnits": "GHz", "memoryQuota": 73.68, "memoryQuotaUnits": "GB", "storageQuota": 1.35, "storageQuotaUnits": "TB", "networkQuota": 3, "_links": { "self": { "href": "https://vac.tech.local:1281/v2/hardwarePlans/8db62bf7-581b-437b-b640-76212ff40b3a" } } }, { "id": "f8e4981c-a1f0-4224-b03d-9d352e6d2876", "name": "Gold Hardware Plan", "cloudConnectServerUid": "fd514938-dfa6-4650-8a7e-d90de1064f38", "cloudConnectAgentUid": "02635c89-3607-4069-a14b-7932920ecdf5", "cpuQuota": 9.55, "cpuQuotaUnits": "GHz", "memoryQuota": 120.16, "memoryQuotaUnits": "GB", "storageQuota": 2.05, "storageQuotaUnits": "TB", "networkQuota": 4, "_links": { "self": { "href": "https://vac.tech.local:1281/v2/hardwarePlans/f8e4981c-a1f0-4224-b03d-9d352e6d2876" } } } ] |