job_details
Creates, updates, deletes, gets or lists a job_details
resource.
Overview
Name | job_details |
Type | Resource |
Id | azure.recovery_services_backup.job_details |
Fields
- vw_job_details
- job_details
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | text | The name of the resource |
activity_id | text | field from the properties object |
backup_management_type | text | field from the properties object |
end_time | text | field from the properties object |
entity_friendly_name | text | field from the properties object |
jobName | text | field from the properties object |
job_type | text | field from the properties object |
operation | text | field from the properties object |
resourceGroupName | text | field from the properties object |
start_time | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
vaultName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
properties | object | Defines workload agnostic properties for a job. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | jobName, resourceGroupName, subscriptionId, vaultName | Gets extended information associated with the job. |
SELECT
examples
Gets extended information associated with the job.
- vw_job_details
- job_details
SELECT
id,
name,
activity_id,
backup_management_type,
end_time,
entity_friendly_name,
jobName,
job_type,
operation,
resourceGroupName,
start_time,
status,
subscriptionId,
type,
vaultName
FROM azure.recovery_services_backup.vw_job_details
WHERE jobName = '{{ jobName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';
SELECT
id,
name,
properties,
type
FROM azure.recovery_services_backup.job_details
WHERE jobName = '{{ jobName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vaultName = '{{ vaultName }}';