Skip to main content

private_link_scope_operation_status

Creates, updates, deletes, gets or lists a private_link_scope_operation_status resource.

Overview

Nameprivate_link_scope_operation_status
TypeResource
Idazure.monitor.private_link_scope_operation_status

Fields

NameDatatypeDescription
idstringThe operation Id.
namestringThe operation name.
endTimestringEnd time of the job in standard ISO8601 format.
errorobjectThe error detail.
startTimestringStart time of the job in standard ISO8601 format.
statusstringThe status of the operation.

Methods

NameAccessible byRequired ParamsDescription
getSELECTasyncOperationId, resourceGroupName, subscriptionIdGet 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 }}';