Availability Sets

The /cloudInfrastructure/availabilitySets resource collection represents availability sets configured in the Microsoft Azure environment.

Get Collection of Availability Sets

The HTTP GET request to the /cloudInfrastructure/availabilitySets endpoint retrieves a list of configured availability sets.

SecurityBearer
Request
query Parameters
Offset
integer <int32> >= 0

Specifies the first N items of a resource collection that will be excluded from the response.

x-veeam-parameter-group: Veeam.Azure.REST.RequestQuery.V2.PageProperties
Limit
integer <int32> >= -1

Specifies the maximum number of items of a resource collection that will be returned in the response.

x-veeam-parameter-group: Veeam.Azure.REST.RequestQuery.V2.PageProperties
SubscriptionId
string or null <uuid>

Returns only availability sets created in a subscription with the specified ID.

x-veeam-parameter-group: RESTAvailabilitySetFilters
ResourceGroupName
string or null

Returns only availability sets that belong to a resource group with the specified name.

x-veeam-parameter-group: RESTAvailabilitySetFilters
Region
string or null

Returns only availability sets that belong to an Azure region with the specified ID.

x-veeam-parameter-group: RESTAvailabilitySetFilters
ServiceAccountId
string

Returns only availability sets to which a service account with the specified system ID has permissions.

x-veeam-parameter-group: RESTAvailabilitySetFilters
Responses
200

OK

400

Bad Request. The request body is malformed, incomplete or otherwise invalid.

401

Unauthorized. The Authorization header does not contain an access token, or the provided access token is invalid.

403

Forbidden. The user sending a request does not have adequate privileges to access one or more objects specified in the request.

get/api/v8/cloudInfrastructure/availabilitySets
Request samples
curl -i -X GET \
  'https://123.123.123.123/api/v8/cloudInfrastructure/availabilitySets?Offset=0&Limit=-1&SubscriptionId=497f6eca-6276-4993-bfeb-53cbbbba6f08&ResourceGroupName=string&Region=string&ServiceAccountId=string' \
  -H 'Authorization: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "offset": 0,
  • "limit": 0,
  • "totalCount": 0,
  • "_links": {},
  • "results": [
    ]
}