operations
Creates, updates, deletes, gets or lists an operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.mixed_reality.operations |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
name | string | Operation name: {provider}/{resource}/{operation} |
display | object | The object that represents the operation. |
isDataAction | boolean | Whether or not this is a data plane operation |
origin | string | The origin |
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 | Exposing Available Operations | ||
check_name_availability_local | exec | subscriptionId , location , name , type | Check 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.
Name | Datatype | Description |
---|---|---|
location | string | The location in which uniqueness will be verified. |
subscriptionId | string | The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000) |
SELECT
examples
- list
Exposing Available Operations
SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.mixed_reality.operations
;
Lifecycle Methods
- check_name_availability_local
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 }}"
}'
;