vw_spark_configurations
Creates, updates, deletes, gets or lists a vw_spark_configurations
resource.
Overview
Name | vw_spark_configurations |
Type | View |
Id | azure.synapse.vw_spark_configurations |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.configs') as "configs",
JSON_EXTRACT(properties, '$.annotations') as "annotations",
JSON_EXTRACT(properties, '$.notes') as "notes",
JSON_EXTRACT(properties, '$.createdBy') as "created_by",
JSON_EXTRACT(properties, '$.created') as "created",
JSON_EXTRACT(properties, '$.configMergeRule') as "config_merge_rule",
subscriptionId,
resourceGroupName,
workspaceName,
sparkConfigurationName
FROM azure.synapse.spark_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.description') as "description",
json_extract_path_text(properties, '$.configs') as "configs",
json_extract_path_text(properties, '$.annotations') as "annotations",
json_extract_path_text(properties, '$.notes') as "notes",
json_extract_path_text(properties, '$.createdBy') as "created_by",
json_extract_path_text(properties, '$.created') as "created",
json_extract_path_text(properties, '$.configMergeRule') as "config_merge_rule",
subscriptionId,
resourceGroupName,
workspaceName,
sparkConfigurationName
FROM azure.synapse.spark_configurations
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me';