Skip to main content

private_link_service_resource_operation_results

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

Overview

Nameprivate_link_service_resource_operation_results
TypeResource
Idazure.powerbi_privatelinks.private_link_service_resource_operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe operation id.
namestringThe operation name.
endTimestringThe operation end time.
errorobjectThe error.
startTimestringThe operation start time.
statusstringThe operation status.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, operationIdGets operation result of Private Link Service Resources for Power BI.

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
operationIdstringThe id of Azure async operation.
subscriptionIdstringThe Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).

SELECT examples

Gets operation result of Private Link Service Resources for Power BI.

SELECT
id,
name,
endTime,
error,
startTime,
status
FROM azure.powerbi_privatelinks.private_link_service_resource_operation_results
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND operationId = '{{ operationId }}' -- required
;