features
Creates, updates, deletes, gets or lists a features
resource.
Overview
Name | features |
Type | Resource |
Id | azure_stack.compute_admin.features |
Fields
- vw_features
- features
Name | Datatype | Description |
---|---|---|
id | text | ID of the resource. |
name | text | Name of the resource. |
enabled_tenant_subscription_ids | text | field from the properties object |
featureName | text | field from the properties object |
feature_name | text | field from the properties object |
global_feature_settings | text | field from the properties object |
location | text | Location of the resource. |
subscriptionId | text | field from the properties object |
type | text | Type of Resource. |
Name | Datatype | Description |
---|---|---|
id | string | ID of the resource. |
name | string | Name of the resource. |
location | string | Location of the resource. |
properties | object | Properties of features. |
type | string | Type of Resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | featureName, location, subscriptionId | Get an existing feature. |
list | SELECT | location, subscriptionId | Get a list of existing features. |
SELECT
examples
Get a list of existing features.
- vw_features
- 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 }}';
SELECT
id,
name,
location,
properties,
type
FROM azure_stack.compute_admin.features
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';