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:
- list
The request was successful; the request was well-formed and received properly.
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 |
properties | object | Properties of the operation |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | $skipToken | Lists the operations available from this provider. | |
check_name_availability | exec | subscriptionId , name , type | Checks whether the configuration store name is available for use. | |
regional_check_name_availability | exec | subscriptionId , location , 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 name of the Azure region. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
$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. |
SELECT
examples
- list
Lists the operations available from this provider.
SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.app_configuration.operations
WHERE $skipToken = '{{ $skipToken }}'
;
Lifecycle Methods
- check_name_availability
- regional_check_name_availability
Checks whether the configuration store name is available for use.
EXEC azure.app_configuration.operations.check_name_availability
@subscriptionId='{{ subscriptionId }}' --required
@@json=
'{
"name": "{{ name }}",
"type": "{{ type }}"
}'
;
Checks whether the configuration store name is available for use.
EXEC azure.app_configuration.operations.regional_check_name_availability
@subscriptionId='{{ subscriptionId }}' --required,
@location='{{ location }}' --required
@@json=
'{
"name": "{{ name }}",
"type": "{{ type }}"
}'
;