Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.web_pubsub.operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringName of the operation with format: {provider}/{resource}/{operation}.
displayobjectThe object that describes a operation.
isDataActionbooleanIf the operation is a data action. (for data plane rbac).
originstringOptional. The intended executor of the operation; governs the display of the operation in the RBAC UX and the audit logs UX.
serviceSpecificationobjectAn object that describes a specification.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectLists all of the available REST API operations of the Microsoft.SignalRService provider.

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

SELECT examples

Lists all of the available REST API operations of the Microsoft.SignalRService provider.

SELECT
name,
display,
isDataAction,
origin,
serviceSpecification
FROM azure.web_pubsub.operations
;