Snowflake · Schema

AzureCredentials

Specifies the Azure credentials of the stage.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
azure_sas_token string Specifies the SAS (shared access signature) token for connecting to Azure.
View JSON Schema on GitHub

JSON Schema

snowflake-azurecredentials-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AzureCredentials",
  "title": "AzureCredentials",
  "description": "Specifies the Azure credentials of the stage.",
  "allOf": [
    {
      "$ref": "#/components/schemas/Credentials"
    }
  ],
  "properties": {
    "azure_sas_token": {
      "type": "string",
      "format": "password",
      "description": "Specifies the SAS (shared access signature) token for connecting to Azure.",
      "example": "example_value"
    }
  }
}