operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.app_configuration.operations |
Fields
Name | Datatype | Description |
---|---|---|
name | string | Operation name: {provider}/{resource}/{operation}. |
display | object | The display information for a configuration store operation. |
isDataAction | boolean | Indicates whether the operation is a data action |
origin | string | Origin of the operation |
properties | object | Extra Operation properties |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Lists the operations available from this provider. |
check_name_availability | EXEC | subscriptionId, data__name, data__type | Checks whether the configuration store name is available for use. |
regional_check_name_availability | EXEC | location, subscriptionId, data__name, data__type | Checks whether the configuration store name is available for use. |
SELECT
examples
Lists the operations available from this provider.
SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.app_configuration.operations
;