Workspace

A workspace resource.

AnalyticsApache SparkBig DataData WarehouseETLSQL

Properties

Name Type Description
id string Resource ID
name string Resource name
type string Resource type
location string Azure region location
tags object Resource tags
properties object
View JSON Schema on GitHub

JSON Schema

azure-synapse-workspace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-synapse/refs/heads/main/json-schema/azure-synapse-workspace-schema.json",
  "title": "Workspace",
  "description": "A workspace resource.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true,
      "description": "Resource ID"
    },
    "name": {
      "type": "string",
      "readOnly": true,
      "description": "Resource name"
    },
    "type": {
      "type": "string",
      "readOnly": true,
      "description": "Resource type"
    },
    "location": {
      "type": "string",
      "description": "Azure region location"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Resource tags"
    },
    "properties": {
      "type": "object",
      "properties": {
        "provisioningState": {
          "type": "string",
          "readOnly": true,
          "description": "Resource provisioning state"
        },
        "sqlAdministratorLogin": {
          "type": "string",
          "description": "SQL admin login name"
        },
        "defaultDataLakeStorage": {
          "type": "object",
          "properties": {
            "accountUrl": {
              "type": "string"
            },
            "filesystem": {
              "type": "string"
            }
          }
        },
        "connectivityEndpoints": {
          "type": "object",
          "readOnly": true,
          "additionalProperties": {
            "type": "string"
          }
        }
      }
    }
  }
}