operations
Creates, updates, deletes, gets or lists an operations resource.
Overview
| Name | operations |
| Type | Resource |
| Id | azure.app_configuration.operations |
Fields
The following fields are returned by SELECT queries:
- check_name_availability
- list
| Name | Datatype | Description |
|---|---|---|
message | string | If any, the error message that provides more detail for the reason that the name is not available. |
nameAvailable | boolean | The value indicating whether the resource name is available. |
reason | string | If any, the reason that the name is not available. |
| Name | Datatype | Description |
|---|---|---|
name | string | Operation name: {provider}/{resource}/{operation}. |
display | object | The display information for the configuration store operation. |
isDataAction | boolean | Indicates whether the operation is a data action. |
origin | string | Origin of the operation. |
serviceSpecification | object | Service specifications of the operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
check_name_availability | select | subscription_id | Checks whether the configuration store name is available for use. | |
list | select | $skipToken | List the operations for the provider. | |
regional_check_name_availability | exec | location, subscription_id, name, type | Checks whether the configuration store name is available for use. |
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 |
|---|---|---|
location | string | The location name. Required. |
subscription_id | string | |
$skipToken | string | A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. Default value is None. |
SELECT examples
- check_name_availability
- list
Checks whether the configuration store name is available for use.
SELECT
message,
nameAvailable,
reason
FROM azure.app_configuration.operations
WHERE subscription_id = '{{ subscription_id }}' -- required
;
List the operations for the provider.
SELECT
name,
display,
isDataAction,
origin,
serviceSpecification
FROM azure.app_configuration.operations
WHERE $skipToken = '{{ $skipToken }}'
;
Lifecycle Methods
- regional_check_name_availability
Checks whether the configuration store name is available for use.
EXEC azure.app_configuration.operations.regional_check_name_availability
@location='{{ location }}' --required,
@subscription_id='{{ subscription_id }}' --required
@@json=
'{
"name": "{{ name }}",
"type": "{{ type }}"
}'
;