SparkConfigProperties

Spark configuration file properties.

AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL

Properties

Name Type Description
time string
content string The content of the Spark configuration.
filename string The filename of the Spark configuration.
configurationType string
View JSON Schema on GitHub

JSON Schema

microsoft-azure-synapse-analytics-sparkconfigproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SparkConfigProperties",
  "title": "SparkConfigProperties",
  "type": "object",
  "description": "Spark configuration file properties.",
  "properties": {
    "time": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "content": {
      "type": "string",
      "description": "The content of the Spark configuration."
    },
    "filename": {
      "type": "string",
      "description": "The filename of the Spark configuration."
    },
    "configurationType": {
      "type": "string",
      "enum": [
        "File",
        "Artifact"
      ]
    }
  }
}