export_jobs_operation_result
Creates, updates, deletes, gets or lists an export_jobs_operation_result resource.
Overview
| Name | export_jobs_operation_result |
| Type | Resource |
| Id | azure.data_protection.export_jobs_operation_result |
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 | resource_group_name, vault_name, operation_id, subscription_id | 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 |
|---|---|---|
operation_id | string | OperationID which represents the export job. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
vault_name | string | The name of the BackupVaultResource. Required. |
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_result
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND vault_name = '{{ vault_name }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;