features
Creates, updates, deletes, gets or lists a features
resource.
Overview
Name | features |
Type | Resource |
Id | azure.purview.features |
Fields
The following fields are returned by SELECT
queries:
SELECT
not supported for this resource, use SHOW METHODS
to view available operations for the resource.
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
subscription_get | exec | subscriptionId , locations | api-version | Gets details from a list of feature names. |
account_get | exec | subscriptionId , resourceGroupName , accountName | api-version | Gets details from a list of feature names. |
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.
Name | Datatype | Description |
---|---|---|
accountName | string | The name of the account. |
locations | string | Location of feature. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription identifier |
api-version | string | The api version to use. |
Lifecycle Methods
- subscription_get
- account_get
Gets details from a list of feature names.
EXEC azure.purview.features.subscription_get
@subscriptionId='{{ subscriptionId }}' --required,
@locations='{{ locations }}' --required,
@api-version='{{ api-version }}'
@@json=
'{
"features": "{{ features }}"
}'
;
Gets details from a list of feature names.
EXEC azure.purview.features.account_get
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required,
@accountName='{{ accountName }}' --required,
@api-version='{{ api-version }}'
@@json=
'{
"features": "{{ features }}"
}'
;