operations
Creates, updates, deletes, gets or lists an operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.storage_sync.operations |
Fields
The following fields are returned by SELECT
queries:
- list
Array of operations resources in the Resource Provider
Name | Datatype | Description |
---|---|---|
name | string | Operation name: {provider}/{resource}/{operation}. |
display | object | The operation supported by storage sync. |
origin | string | The origin. |
properties | object | Properties of the operations resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | Lists all of the available Storage Sync Rest API operations. | ||
location_operation_status | exec | subscriptionId , locationName , operationId | Get Operation status |
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.
Name | Datatype | Description |
---|---|---|
locationName | string | The desired region to obtain information from. |
operationId | string | operation Id |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
Lists all of the available Storage Sync Rest API operations.
SELECT
name,
display,
origin,
properties
FROM azure.storage_sync.operations
;
Lifecycle Methods
- location_operation_status
Get Operation status
EXEC azure.storage_sync.operations.location_operation_status
@subscriptionId='{{ subscriptionId }}' --required,
@locationName='{{ locationName }}' --required,
@operationId='{{ operationId }}' --required
;