spark_configurations
Creates, updates, deletes, gets or lists a spark_configurations
resource.
Overview
Name | spark_configurations |
Type | Resource |
Id | azure.synapse.spark_configurations |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_workspace
OK.
Name | Datatype | Description |
---|---|---|
properties | object | SparkConfiguration properties. (title: Information about a SparkConfiguration created at the workspace level.) |
OK.
Name | Datatype | Description |
---|---|---|
properties | object | SparkConfiguration properties. (title: Information about a SparkConfiguration created at the workspace level.) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , sparkConfigurationName , workspaceName | Get SparkConfiguration by name in a workspace. | |
list_by_workspace | select | subscriptionId , resourceGroupName , workspaceName | List sparkConfigurations in a workspace. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
sparkConfigurationName | string | SparkConfiguration name |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of the workspace. |
SELECT
examples
- get
- list_by_workspace
Get SparkConfiguration by name in a workspace.
SELECT
properties
FROM azure.synapse.spark_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND sparkConfigurationName = '{{ sparkConfigurationName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
;
List sparkConfigurations in a workspace.
SELECT
properties
FROM azure.synapse.spark_configurations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND workspaceName = '{{ workspaceName }}' -- required
;