Skip to main content

kql_scripts

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

Overview

Namekql_scripts
TypeResource
Idazure.synapse_artifacts.kql_scripts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring:vartype id: str
namestring:vartype name: str
contentobject:vartype content: ~azure.synapse.artifacts.models.KqlScriptContent
typestring:vartype type: str

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_allselectendpointGet all KQL scripts.

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.

NameDatatypeDescription
endpointstringThe service endpoint host (no scheme). (default: )

SELECT examples

Get all KQL scripts.

SELECT
id,
name,
content,
type
FROM azure.synapse_artifacts.kql_scripts
WHERE endpoint = '{{ endpoint }}' -- required
;