vw_job_definitions
Creates, updates, deletes, gets or lists a vw_job_definitions
resource.
Overview
Name | vw_job_definitions |
Type | View |
Id | azure.hybrid_data_manager.vw_job_definitions |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
type as type,
JSON_EXTRACT(properties, '$.dataSourceId') as "data_source_id",
JSON_EXTRACT(properties, '$.dataSinkId') as "data_sink_id",
JSON_EXTRACT(properties, '$.schedules') as "schedules",
JSON_EXTRACT(properties, '$.state') as "state",
JSON_EXTRACT(properties, '$.lastModifiedTime') as "last_modified_time",
JSON_EXTRACT(properties, '$.runLocation') as "run_location",
JSON_EXTRACT(properties, '$.userConfirmation') as "user_confirmation",
JSON_EXTRACT(properties, '$.dataServiceInput') as "data_service_input",
JSON_EXTRACT(properties, '$.customerSecrets') as "customer_secrets",
subscriptionId,
resourceGroupName,
dataManagerName,
dataServiceName,
jobDefinitionName
FROM azure.hybrid_data_manager.job_definitions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND dataManagerName = 'replace-me';
SELECT
id as id,
name as name,
type as type,
json_extract_path_text(properties, '$.dataSourceId') as "data_source_id",
json_extract_path_text(properties, '$.dataSinkId') as "data_sink_id",
json_extract_path_text(properties, '$.schedules') as "schedules",
json_extract_path_text(properties, '$.state') as "state",
json_extract_path_text(properties, '$.lastModifiedTime') as "last_modified_time",
json_extract_path_text(properties, '$.runLocation') as "run_location",
json_extract_path_text(properties, '$.userConfirmation') as "user_confirmation",
json_extract_path_text(properties, '$.dataServiceInput') as "data_service_input",
json_extract_path_text(properties, '$.customerSecrets') as "customer_secrets",
subscriptionId,
resourceGroupName,
dataManagerName,
dataServiceName,
jobDefinitionName
FROM azure.hybrid_data_manager.job_definitions
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND dataManagerName = 'replace-me';