Skip to main content

private_endpoint_operation_status

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

Overview

Nameprivate_endpoint_operation_status
TypeResource
Idazure.recovery_services_backup.private_endpoint_operation_status

Fields

NameDatatypeDescription
idtextID of the operation.
nametextName of the operation.
end_timetextfield from the properties object
errortextError information associated with operation status call.
object_typetextfield from the properties object
operationIdtextfield from the properties object
privateEndpointConnectionNametextfield from the properties object
resourceGroupNametextfield from the properties object
start_timetextfield from the properties object
statustextOperation status.
subscriptionIdtextfield from the properties object
vaultNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECToperationId, privateEndpointConnectionName, resourceGroupName, subscriptionId, vaultName

SELECT examples

SELECT
id,
name,
end_time,
error,
object_type,
operationId,
privateEndpointConnectionName,
resourceGroupName,
start_time,
status,
subscriptionId,
vaultName
FROM azure.recovery_services_backup.vw_private_endpoint_operation_status
WHERE operationId = '{{ operationId }}'
AND privateEndpointConnectionName = '{{ privateEndpointConnectionName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';