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:

NameDatatypeDescription
messagestringIf any, the error message that provides more detail for the reason that the name is not available.
nameAvailablebooleanThe value indicating whether the resource name is available.
reasonstringIf any, the reason that the name is not available.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
check_name_availabilityselectsubscription_idChecks whether the configuration store name is available for use.
listselect$skipTokenList the operations for the provider.
regional_check_name_availabilityexeclocation, subscription_id, 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 location name. Required.
subscription_idstring
$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. Default value is None.

SELECT examples

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
;

Lifecycle Methods

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