private_link_service_resource_operation_results
Creates, updates, deletes, gets or lists a private_link_service_resource_operation_results
resource.
Overview
Name | private_link_service_resource_operation_results |
Type | Resource |
Id | azure.powerbi_privatelinks.private_link_service_resource_operation_results |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | The operation id. |
name | string | The operation name. |
endTime | string | The operation end time. |
error | object | The error. |
startTime | string | The operation start time. |
status | string | The operation status. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , operationId | Gets 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.
Name | Datatype | Description |
---|---|---|
operationId | string | The id of Azure async operation. |
subscriptionId | string | The Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000). |
SELECT
examples
- get
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
;