spark_configurations
Creates, updates, deletes, gets or lists a spark_configurations
resource.
Overview
Name | spark_configurations |
Type | Resource |
Id | azure.synapse.spark_configurations |
Fields
- vw_spark_configurations
- spark_configurations
Name | Datatype | Description |
---|---|---|
description | text | field from the properties object |
annotations | text | field from the properties object |
config_merge_rule | text | field from the properties object |
configs | text | field from the properties object |
created | text | field from the properties object |
created_by | text | field from the properties object |
notes | text | field from the properties object |
resourceGroupName | text | field from the properties object |
sparkConfigurationName | text | field from the properties object |
subscriptionId | text | field from the properties object |
workspaceName | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | SparkConfiguration Artifact information |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | resourceGroupName, sparkConfigurationName, subscriptionId, workspaceName | Get SparkConfiguration by name in a workspace. |
list_by_workspace | SELECT | resourceGroupName, subscriptionId, workspaceName | List sparkConfigurations in a workspace. |
SELECT
examples
List sparkConfigurations in a workspace.
- vw_spark_configurations
- spark_configurations
SELECT
description,
annotations,
config_merge_rule,
configs,
created,
created_by,
notes,
resourceGroupName,
sparkConfigurationName,
subscriptionId,
workspaceName
FROM azure.synapse.vw_spark_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';
SELECT
properties
FROM azure.synapse.spark_configurations
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND workspaceName = '{{ workspaceName }}';