jobs
Creates, updates, deletes, gets or lists a jobs
resource.
Overview
Name | jobs |
Type | Resource |
Id | azure_extras.storsimple_1200_series.jobs |
Fields
- vw_jobs
- jobs
Name | Datatype | Description |
---|---|---|
id | text | The identifier. |
name | text | The name. |
backup_point_in_time | text | field from the properties object |
deviceName | text | field from the properties object |
device_id | text | field from the properties object |
download_progress | text | field from the properties object |
end_time | text | field from the properties object |
entity_id | text | field from the properties object |
entity_type | text | field from the properties object |
error | text | The job error information containing List of JobErrorItem. |
install_progress | text | field from the properties object |
is_cancellable | text | field from the properties object |
jobName | text | field from the properties object |
job_stages | text | field from the properties object |
job_type | text | field from the properties object |
managerName | text | field from the properties object |
percent_complete | integer | field from the properties object |
resourceGroupName | text | field from the properties object |
source_device_id | text | field from the properties object |
start_time | text | field from the properties object |
stats | text | field from the properties object |
status | text | Current status of the job |
subscriptionId | text | field from the properties object |
target_id | text | field from the properties object |
target_type | text | field from the properties object |
type | text | The type. |
Name | Datatype | Description |
---|---|---|
id | string | The identifier. |
name | string | The name. |
endTime | string | The UTC time at which the job completed |
error | object | The job error information containing List of JobErrorItem. |
percentComplete | integer | The percentage of the job that is already complete |
properties | object | properties for the job |
startTime | string | The UTC time at which the job was started |
status | string | Current status of the job |
type | string | The type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | deviceName, jobName, managerName, resourceGroupName, subscriptionId | Returns the properties of the specified job name. |
list_by_device | SELECT | deviceName, managerName, resourceGroupName, subscriptionId | Retrieves all the jobs in a device. |
list_by_manager | SELECT | managerName, resourceGroupName, subscriptionId | Retrieves all the jobs in a manager. |
SELECT
examples
Retrieves all the jobs in a manager.
- vw_jobs
- jobs
SELECT
id,
name,
backup_point_in_time,
deviceName,
device_id,
download_progress,
end_time,
entity_id,
entity_type,
error,
install_progress,
is_cancellable,
jobName,
job_stages,
job_type,
managerName,
percent_complete,
resourceGroupName,
source_device_id,
start_time,
stats,
status,
subscriptionId,
target_id,
target_type,
type
FROM azure_extras.storsimple_1200_series.vw_jobs
WHERE managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
endTime,
error,
percentComplete,
properties,
startTime,
status,
type
FROM azure_extras.storsimple_1200_series.jobs
WHERE managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';