Snowflake · Schema

StorageLocationAzure

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
azure_tenant_id string Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
storage_base_url string Specifies the base URL for your cloud storage location.
View JSON Schema on GitHub

JSON Schema

snowflake-storagelocationazure-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StorageLocationAzure",
  "title": "StorageLocationAzure",
  "allOf": [
    {
      "$ref": "#/components/schemas/StorageLocation"
    }
  ],
  "properties": {
    "azure_tenant_id": {
      "type": "string",
      "description": "Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.",
      "example": "500123"
    },
    "storage_base_url": {
      "type": "string",
      "description": "Specifies the base URL for your cloud storage location.",
      "example": "https://www.example.com"
    }
  },
  "required": [
    "azure_tenant_id",
    "storage_base_url"
  ]
}