Workspace

A workspace resource.

AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL

Properties

Name Type Description
id string Fully qualified resource ID.
name string The name of the resource.
type string The type of the resource.
location string The geo-location where the resource lives.
tags object Resource tags.
identity object
properties object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-synapse-analytics-workspace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Workspace",
  "title": "Workspace",
  "type": "object",
  "description": "A workspace resource.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Fully qualified resource ID.",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "description": "The name of the resource.",
      "readOnly": true
    },
    "type": {
      "type": "string",
      "description": "The type of the resource.",
      "readOnly": true
    },
    "location": {
      "type": "string",
      "description": "The geo-location where the resource lives."
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Resource tags."
    },
    "identity": {
      "$ref": "#/components/schemas/ManagedIdentity"
    },
    "properties": {
      "$ref": "#/components/schemas/WorkspaceProperties"
    }
  }
}