export_jobs_operation_results
Creates, updates, deletes, gets or lists a export_jobs_operation_results
resource.
Overview
Name | export_jobs_operation_results |
Type | Resource |
Id | azure.data_protection.export_jobs_operation_results |
Fields
Name | Datatype | Description |
---|---|---|
blobSasKey | string | SAS key to access the blob. |
blobUrl | string | URL of the blob into which the serialized string of list of jobs is exported. |
excelFileBlobSasKey | string | SAS key to access the ExcelFile blob. |
excelFileBlobUrl | string | URL of the blob into which the ExcelFile is uploaded. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | operationId, resourceGroupName, subscriptionId, vaultName | 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
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
blobSasKey,
blobUrl,
excelFileBlobSasKey,
excelFileBlobUrl
FROM azure.data_protection.export_jobs_operation_results
WHERE operationId = '{{ operationId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';