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

The following fields are returned by SELECT queries:

OK. Operation status.

NameDatatypeDescription
idstringThe operation Id.
namestringThe operation name.
endTimestring (date-time)End time of the job in standard ISO8601 format.
errorobjectThe error detail of the operation if any.
startTimestring (date-time)Start time of the job in standard ISO8601 format.
statusstringThe status of the operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectasyncOperationId, resourceGroupName, subscriptionIdGet 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.

NameDatatypeDescription
asyncOperationIdstringThe operation Id.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

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 }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;