Credential

AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL

Properties

Name Type Description
type string Credential type.
description string
annotations array
typeProperties object Type-specific properties.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-synapse-analytics-credential-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Credential",
  "title": "Credential",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "Credential type.",
      "enum": [
        "ManagedIdentity",
        "ServicePrincipal"
      ]
    },
    "description": {
      "type": "string"
    },
    "annotations": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "typeProperties": {
      "type": "object",
      "description": "Type-specific properties."
    }
  }
}