Skip to main content

export_jobs_operation_results

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

Overview

Nameexport_jobs_operation_results
TypeResource
Idazure.recovery_services_backup.export_jobs_operation_results

Fields

NameDatatypeDescription
headersobjectHTTP headers associated with this operation.
operationobjectBase class for operation result info.
statusCodestringHTTP Status Code of the operation.

Methods

NameAccessible byRequired ParamsDescription
getSELECToperationId, resourceGroupName, subscriptionId, vaultNameGets the operation result of operation triggered by Export Jobs API. If the operation is successful, then it also
contains URL of a Blob and a SAS key to access the same. The blob contains exported jobs in JSON serialized format.

SELECT examples

Gets the operation result of operation triggered by Export Jobs API. If the operation is successful, then it also contains URL of a Blob and a SAS key to access the same. The blob contains exported jobs in JSON serialized format.

SELECT
headers,
operation,
statusCode
FROM azure.recovery_services_backup.export_jobs_operation_results
WHERE operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';