Skip to main content

operations

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

Overview

Nameoperations
TypeResource
Idazure.storage_cache.operations

Fields

The following fields are returned by SELECT queries:

The list of available Resource Provider operations.

NameDatatypeDescription
namestringOperation name: {provider}/{resource}/{operation}
displayobjectThe object that represents the operation.
isDataActionbooleanThe flag that indicates whether the operation applies to data plane.
originstringOrigin of the operation.
propertiesobjectAdditional details about an operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectLists all of the available Resource Provider operations.
check_aml_fs_subnetsexecsubscriptionIdCheck that subnets will be valid for AML file system create calls.

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
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Lists all of the available Resource Provider operations.

SELECT
name,
display,
isDataAction,
origin,
properties
FROM azure.storage_cache.operations
;

Lifecycle Methods

Check that subnets will be valid for AML file system create calls.

EXEC azure.storage_cache.operations.check_aml_fs_subnets 
@subscriptionId='{{ subscriptionId }}' --required
@@json=
'{
"filesystemSubnet": "{{ filesystemSubnet }}",
"storageCapacityTiB": {{ storageCapacityTiB }},
"sku": "{{ sku }}",
"location": "{{ location }}"
}'
;