Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.service_fabric_managed_clusters.operations

Fields

The following fields are returned by SELECT queries:

OK. The request has succeeded.

NameDatatypeDescription
namestringThe name of the operation.
displayobjectThe object that represents the operation.
isDataActionbooleanIndicates whether the operation is a data action
nextLinkstringThe URL to use for getting the next set of results.
originstringOrigin result

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectapi-versionGet the list of available Service Fabric resource provider API operations.

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
api-versionstringThe version of the Service Fabric resource provider API

SELECT examples

Get the list of available Service Fabric resource provider API operations.

SELECT
name,
display,
isDataAction,
nextLink,
origin
FROM azure.service_fabric_managed_clusters.operations
WHERE api-version = '{{ api-version }}'
;