ManagedIdentity

The workspace managed identity.

AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL

Properties

Name Type Description
principalId string The principal ID of the workspace managed identity.
tenantId string The tenant ID of the workspace managed identity.
type string The type of managed identity.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-synapse-analytics-managedidentity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedIdentity",
  "title": "ManagedIdentity",
  "type": "object",
  "description": "The workspace managed identity.",
  "properties": {
    "principalId": {
      "type": "string",
      "description": "The principal ID of the workspace managed identity.",
      "readOnly": true
    },
    "tenantId": {
      "type": "string",
      "description": "The tenant ID of the workspace managed identity.",
      "readOnly": true
    },
    "type": {
      "type": "string",
      "description": "The type of managed identity.",
      "enum": [
        "None",
        "SystemAssigned",
        "SystemAssigned,UserAssigned"
      ]
    }
  }
}