export_jobs_operation_results
Creates, updates, deletes, gets or lists an export_jobs_operation_results
resource.
Overview
Name | export_jobs_operation_results |
Type | Resource |
Id | azure.data_protection.export_jobs_operation_results |
Fields
The following fields are returned by SELECT
queries:
- get
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
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , vaultName , operationId | 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. |
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 | OperationID which represents the export job. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
vaultName | string | The name of the backup vault. |
SELECT
examples
- get
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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vaultName = '{{ vaultName }}' -- required
AND operationId = '{{ operationId }}' -- required
;