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:

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
getselectasync_operation_id, resource_group_name, subscription_idGet 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
async_operation_idstringThe operation Id. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

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 async_operation_id = '{{ async_operation_id }}' -- required
AND resource_group_name = '{{ resource_group_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;