Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure_extras.lab_services.skus

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the SKU.
capabilitiesarrayThe capabilities of the SKU.
capacityobjectThe scale out/in options of the SKU.
costsarrayMetadata for retrieving price info of a lab services SKUs.
familystringThe family of the SKU.
locationsarrayList of locations that are available for a size.
resourceTypestringThe lab services resource type.
restrictionsarrayRestrictions of a lab services SKUs.
sizestringThe SKU size.
tierstringThe tier of the SKU. Known values are: "Standard" and "Premium".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscription_id$filterGets the Azure Lab Services resource SKUs. Returns a list of Azure Lab Services resource 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
$filterstringThe filter to apply to the operation. Default value is None.

SELECT examples

Gets the Azure Lab Services resource SKUs. Returns a list of Azure Lab Services resource SKUs.

SELECT
name,
capabilities,
capacity,
costs,
family,
locations,
resourceType,
restrictions,
size,
tier
FROM azure_extras.lab_services.skus
WHERE subscription_id = '{{ subscription_id }}' -- required
AND $filter = '{{ $filter }}'
;