Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure_stack.subscriptions_admin.operations

Fields

NameDatatypeDescription
namestringName of the operation being performed on an object.
displayobjectContains the localized display information for this particular operation / action.
isDataActionbooleanWhether the operation applies to data-plane. This is "true" for data-plane operations and "false" for ARM/control-plane operations.
originstringOrigin for the operation.

Methods

NameAccessible byRequired ParamsDescription
listSELECTGet the list of Operations.

SELECT examples

Get the list of Operations.

SELECT
name,
display,
isDataAction,
origin
FROM azure_stack.subscriptions_admin.operations
;