Skip to main content

features

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

Overview

Namefeatures
TypeResource
Idazure_stack.compute_admin.features

Fields

NameDatatypeDescription
idtextID of the resource.
nametextName of the resource.
enabled_tenant_subscription_idstextfield from the properties object
featureNametextfield from the properties object
feature_nametextfield from the properties object
global_feature_settingstextfield from the properties object
locationtextLocation of the resource.
subscriptionIdtextfield from the properties object
typetextType of Resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTfeatureName, location, subscriptionIdGet an existing feature.
listSELECTlocation, subscriptionIdGet a list of existing features.

SELECT examples

Get a list of existing features.

SELECT
id,
name,
enabled_tenant_subscription_ids,
featureName,
feature_name,
global_feature_settings,
location,
subscriptionId,
type
FROM azure_stack.compute_admin.vw_features
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';