Skip to main content

export_jobs_operation_results

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

Overview

Nameexport_jobs_operation_results
TypeResource
Idazure.recovery_services_backup.export_jobs_operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
headersobjectHTTP headers associated with this operation.
operationobjectOperationResultInfoBaseResource operation
statusCodestringHTTP Status Code of the operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectvaultName, resourceGroupName, subscriptionId, operationIdapi-versionGets 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.

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
operationIdstringOperationID which represents the export job.
resourceGroupNamestringThe name of the resource group where the recovery services vault is present.
subscriptionIdstringThe subscription Id.
vaultNamestringThe name of the recovery services vault.
api-versionstringClient Api Version.

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 vaultName = '{{ vaultName }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND operationId = '{{ operationId }}' -- required
AND api-version = '{{ api-version }}'
;