Snowflake · Schema

StorageLocationGcs

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
storage_base_url string Specifies the base URL for your cloud storage location.
encryption object Specifies the properties needed to encrypt data on the external volume.
View JSON Schema on GitHub

JSON Schema

snowflake-storagelocationgcs-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StorageLocationGcs",
  "title": "StorageLocationGcs",
  "allOf": [
    {
      "$ref": "#/components/schemas/StorageLocation"
    }
  ],
  "properties": {
    "storage_base_url": {
      "type": "string",
      "description": "Specifies the base URL for your cloud storage location.",
      "example": "https://www.example.com"
    },
    "encryption": {
      "$ref": "#/components/schemas/Encryption",
      "description": "Specifies the properties needed to encrypt data on the external volume."
    }
  },
  "required": [
    "storage_base_url"
  ]
}