Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.mixed_reality.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringOperation name: {provider}/{resource}/{operation}
displayobjectThe object that represents the operation.
isDataActionbooleanWhether or not this is a data plane operation
originstringThe origin
propertiesobjectProperties of the operation

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectExposing Available Operations
check_name_availability_localexecsubscriptionId, location, name, typeCheck Name Availability for local uniqueness

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 in which uniqueness will be verified.
subscriptionIdstringThe Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000)

SELECT examples

Exposing Available Operations

SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.mixed_reality.operations
;

Lifecycle Methods

Check Name Availability for local uniqueness

EXEC azure.mixed_reality.operations.check_name_availability_local 
@subscriptionId='{{ subscriptionId }}' --required,
@location='{{ location }}' --required
@@json=
'{
"name": "{{ name }}",
"type": "{{ type }}"
}'
;