Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.app_configuration.operations

Fields

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

Methods

NameAccessible byRequired ParamsDescription
listSELECTLists the operations available from this provider.
check_name_availabilityEXECsubscriptionId, data__name, data__typeChecks whether the configuration store name is available for use.
regional_check_name_availabilityEXEClocation, subscriptionId, data__name, data__typeChecks 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
;