Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure.devops_infrastructure.skus

Fields

The following fields are returned by SELECT queries:

Azure operation completed successfully.

NameDatatypeDescription
propertiesobjectThe resource-specific properties for this resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_locationselectsubscriptionId, locationNameList ResourceSku resources by subscription ID

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
locationNamestringName of the location.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

List ResourceSku resources by subscription ID

SELECT
properties
FROM azure.devops_infrastructure.skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND locationName = '{{ locationName }}' -- required
;