Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.engagement_fabric.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the EngagementFabric operation
displayobjectThe display content of the EngagementFabric operation

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselect
check_name_availabilityexecsubscriptionId, 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.

NameDatatypeDescription
resourceGroupNamestringResource Group Name
subscriptionIdstringSubscription ID

SELECT examples

OK

SELECT
name,
display
FROM azure.engagement_fabric.operations
;

Lifecycle Methods

OK

EXEC azure.engagement_fabric.operations.check_name_availability 
@subscriptionId='{{ subscriptionId }}' --required,
@resourceGroupName='{{ resourceGroupName }}' --required
@@json=
'{
"name": "{{ name }}",
"type": "{{ type }}"
}'
;