operations
Creates, updates, deletes, gets or lists an operations resource.
Overview
| Name | operations |
| Type | Resource |
| Id | azure.engagement_fabric.operations |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the EngagementFabric operation |
display | object | The display content of the EngagementFabric operation |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | |||
check_name_availability | exec | subscriptionId, resourceGroupName, name, type |
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 |
|---|---|---|
resourceGroupName | string | Resource Group Name |
subscriptionId | string | Subscription ID |
SELECT examples
- list
OK
SELECT
name,
display
FROM azure.engagement_fabric.operations
;
Lifecycle Methods
- check_name_availability
OK
EXEC azure.engagement_fabric.operations.check_name_availability
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required
@@json=
'{
"name": "{{ name }}",
"type": "{{ type }}"
}'
;