Skip to main content

features

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

Overview

Namefeatures
TypeResource
Idazure_stack.compute_admin.features

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringID of the resource.
namestringName of the resource.
locationstringLocation of the resource.
propertiesobjectFeature properties.
typestringType of Resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, location, featureNameGet an existing feature.
listselectsubscriptionId, locationGet a list of existing features.

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
featureNamestringName of the feature.
locationstringThe name of Azure region.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Get an existing feature.

SELECT
id,
name,
location,
properties,
type
FROM azure_stack.compute_admin.features
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND featureName = '{{ featureName }}' -- required
;