Getting Virtual Machine Sizes
You can get a list of Azure archiver appliances. The Azure archiver appliance is a small auxiliary machine in Microsoft Azure that is deployed and configured automatically by Veeam Backup for Microsoft 365.
Request
GET https://<hostname>:4443/v6/AzureServiceAccounts/{serviceAccountId}/Subscriptions/{subscriptionId}/Locations/{locationName}/VirtualMachineSizes |
Request Headers
The request header must contain an authorization token of the current session.
Request Parameters
The following parameters must be specified in the URL of the request:
Parameter | Type | Description |
---|---|---|
serviceAccountId | string | Specifies the identification number of Microsoft Azure service account. For more information on how to get this parameter, see Getting Azure Service Accounts. |
subscriptionId | string | Specifies the Microsoft Azure subscription ID. For more information on how to get this parameter, see Getting Subscriptions. |
locationName | string | Specifies the Microsoft Azure region name. For more information on how to get this parameter, see Getting Locations. |
Request Body
None.
Response
The server returns the following response to the client.
Response Codes
A successfully completed operation returns a response code 200 OK.
Response Headers
The response to this request contains the following headers. The response may also include additional standard HTTPS headers.
Header | Description |
---|---|
Content-length | The length of the response body. |
Content-type | The media type and syntax of the response body message: application/json; charset=utf-8 |
Response Body
In the response body, the server returns a resource representation of the /AzureServiceAccounts/{serviceAccountId}/Subscriptions/{subscriptionId}/Locations/{locationName}/VirtualMachineSizes resource. The response body contains the following properties:
Property | Type | Description |
---|---|---|
name | string | Specifies a name of the Azure archiver appliance. |
coresCount | string | Specifies a number of processor cores. |
memoryMB | integer | Specifies the auxiliary virtual machine memory. |
osDiskSizeMB | integer | Specifies a size of the operating system partition. |
resourceDiskSizeMB | integer | Specifies a size of the resource partition. |
Example
The example returns a resource representation of Azure archiver appliances.
Request: GET https://abc.tech.local:4443/v6/AzureServiceAccounts/576705c3-a1af-49bd-878f-9067865bfcf9/Subscriptions/be7051ea-8fa4-4605-c607-89f3dd09fffd/Locations/westeurope/VirtualMachineSizes
Request Header: Authorization: Bearer <Access-Token>
Response: 200 OK
Response Body: [ { "name": "Basic_A0", "coresCount": "1", "memoryMB": 768, "osDiskSizeMB": 1047552, "resourceDiskSizeMB": 20480 }, { "name": "Basic_A1", "coresCount": "1", "memoryMB": 1792, "osDiskSizeMB": 1047552, "resourceDiskSizeMB": 40960 }, { "name": "Basic_A2", "coresCount": "2", "memoryMB": 3584, "osDiskSizeMB": 1047552, "resourceDiskSizeMB": 61440 }, ... ] |