operation_status_resource_group_contexts
Creates, updates, deletes, gets or lists an operation_status_resource_group_contexts
resource.
Overview
Name | operation_status_resource_group_contexts |
Type | Resource |
Id | azure.data_protection.operation_status_resource_group_contexts |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | It should match what is used to GET the operation result |
name | string | It must match the last segment of the "id" field, and will typically be a GUID / system generated value |
endTime | string (date-time) | End time of the operation |
error | object | Required if status == failed or status == canceled. This is the OData v4 error format, used by the RPC and will go into the v2.2 Azure REST API guidelines. The full set of optional properties (e.g. inner errors / details) can be found in the "Error Response" section. |
properties | object | End time of the operation (title: OperationExtendedInfo) |
startTime | string (date-time) | Start time of the operation |
status | string |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , subscriptionId , operationId |
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 |
---|---|---|
operationId | string | |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- get
OK
SELECT
id,
name,
endTime,
error,
properties,
startTime,
status
FROM azure.data_protection.operation_status_resource_group_contexts
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND operationId = '{{ operationId }}' -- required
;