Skip to main content

operations

Creates, updates, deletes, gets or lists an operations resource.

Overview

Nameoperations
TypeResource
Idazure.app_configuration.operations

Fields

The following fields are returned by SELECT queries:

The request was successful; the request was well-formed and received properly.

NameDatatypeDescription
namestringOperation name: {provider}/{resource}/{operation}.
displayobjectThe display information for the configuration store operation.
isDataActionbooleanIndicates whether the operation is a data action
originstringOrigin of the operation
propertiesobjectProperties of the operation

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselect$skipTokenLists the operations available from this provider.
check_name_availabilityexecsubscriptionId, name, typeChecks whether the configuration store name is available for use.
regional_check_name_availabilityexecsubscriptionId, location, name, typeChecks 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.

NameDatatypeDescription
locationstringThe name of the Azure region.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.
$skipTokenstringA 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

Lists the operations available from this provider.

SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.app_configuration.operations
WHERE $skipToken = '{{ $skipToken }}'
;

Lifecycle Methods

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 }}"
}'
;