Skip to main content

spark_configurations

Creates, updates, deletes, gets or lists a spark_configurations resource.

Overview

Namespark_configurations
TypeResource
Idazure.synapse.spark_configurations

Fields

NameDatatypeDescription
descriptiontextfield from the properties object
annotationstextfield from the properties object
config_merge_ruletextfield from the properties object
configstextfield from the properties object
createdtextfield from the properties object
created_bytextfield from the properties object
notestextfield from the properties object
resourceGroupNametextfield from the properties object
sparkConfigurationNametextfield from the properties object
subscriptionIdtextfield from the properties object
workspaceNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, sparkConfigurationName, subscriptionId, workspaceNameGet SparkConfiguration by name in a workspace.
list_by_workspaceSELECTresourceGroupName, subscriptionId, workspaceNameList sparkConfigurations in a workspace.

SELECT examples

List sparkConfigurations in a workspace.

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 }}';