private_link_scope_operation_status
Creates, updates, deletes, gets or lists a private_link_scope_operation_status
resource.
Overview
Name | private_link_scope_operation_status |
Type | Resource |
Id | azure.monitor.private_link_scope_operation_status |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The operation Id. |
name | string | The operation name. |
endTime | string | End time of the job in standard ISO8601 format. |
error | object | The error detail. |
startTime | string | Start time of the job in standard ISO8601 format. |
status | string | The status of the operation. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | asyncOperationId, resourceGroupName, subscriptionId | Get the status of an azure asynchronous operation associated with a private link scope operation. |
SELECT
examples
Get the status of an azure asynchronous operation associated with a private link scope operation.
SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure.monitor.private_link_scope_operation_status
WHERE asyncOperationId = '{{ asyncOperationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';