SparkStatementOptions

AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL

Properties

Name Type Description
code string The code to execute.
kind string The language of the code.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-synapse-analytics-sparkstatementoptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SparkStatementOptions",
  "title": "SparkStatementOptions",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "The code to execute."
    },
    "kind": {
      "type": "string",
      "description": "The language of the code.",
      "enum": [
        "spark",
        "pyspark",
        "dotnetspark",
        "sql"
      ]
    }
  }
}