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
The following fields are returned by SELECT
queries:
- get
OK. Operation status.
Name | Datatype | Description |
---|---|---|
id | string | The operation Id. |
name | string | The operation name. |
endTime | string (date-time) | End time of the job in standard ISO8601 format. |
error | object | The error detail of the operation if any. |
startTime | string (date-time) | Start time of the job in standard ISO8601 format. |
status | string | The status of the operation. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | asyncOperationId , resourceGroupName , subscriptionId | Get the status of an azure asynchronous operation associated with a private link scope operation. |
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 |
---|---|---|
asyncOperationId | string | The operation Id. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
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 }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;