Get a Hardware Plan
You can get a representation of a hardware plan with the specified ID.
Request
To get a resource representation of a hardware plan, send the GET HTTPS request to the URL of its resource.
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 /hardwarePlans/{ID} resource.
Example
The following example returns an entity representation of a hardware plan with ID 8db62bf7-581b-437b-b640-76212ff40b3a.
Request: GET https://localhost:1281/v2/hardwarePlans/8db62bf7-581b-437b-b640-76212ff40b3a
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" } } } |