Snowflake · Schema

ConvertToManagedIcebergTableRequest

Request model for convert to managed iceberg table

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
base_location string The path to a directory where Snowflake can write data and metadata files for the table.
storage_serialization_policy string Specifies the storage serialization policy for the table.
View JSON Schema on GitHub

JSON Schema

snowflake-converttomanagedicebergtablerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConvertToManagedIcebergTableRequest",
  "title": "ConvertToManagedIcebergTableRequest",
  "type": "object",
  "description": "Request model for convert to managed iceberg table",
  "properties": {
    "base_location": {
      "type": "string",
      "description": "The path to a directory where Snowflake can write data and metadata files for the table.",
      "example": "example_value"
    },
    "storage_serialization_policy": {
      "type": "string",
      "description": "Specifies the storage serialization policy for the table.",
      "enum": [
        "COMPATIBLE",
        "OPTIMIZED"
      ],
      "example": "COMPATIBLE"
    }
  }
}