Skip to main content

skus

Creates, updates, deletes, gets or lists a skus resource.

Overview

Nameskus
TypeResource
Idazure_isv.avs.skus

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the SKU. Required.
capabilitiesarrayName value pairs to describe the capability.
familystringThe family of the SKU.
locationInfoarrayA list of locations and availability zones in those locations where the SKU is available. Required.
locationsarrayThe set of locations that the SKU is available. Required.
resourceTypestringThe type of resource the SKU applies to. Required. Known values are: "privateClouds" and "privateClouds/clusters". (privateClouds, privateClouds/clusters)
restrictionsarrayThe restrictions of the SKU. Required.
sizestringThe size of the SKU.
tierstringThe tier of virtual machines in a scale set.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_idA list of SKUs.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
subscription_idstring

SELECT examples

A list of SKUs.

SELECT
name,
capabilities,
family,
locationInfo,
locations,
resourceType,
restrictions,
size,
tier
FROM azure_isv.avs.skus
WHERE subscription_id = '{{ subscription_id }}' -- required
;