Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AnalyticBucket

import type { AnalyticBucket } from "https://esm.sh/@supabase/storage-js@2.89.0/dist/index.d.mts";

Represents an Analytics Bucket using Apache Iceberg table format. Analytics buckets are optimized for analytical queries and data processing.

interface AnalyticBucket {
created_at: string;
format: string;
name: string;
type: "ANALYTICS";
updated_at: string;
}

§Properties

§
created_at: string
[src]

ISO 8601 timestamp of bucket creation

§
format: string
[src]

Storage format used (e.g., 'iceberg')

§
name: string
[src]

Unique identifier for the bucket

§
type: "ANALYTICS"
[src]

Bucket type - always 'ANALYTICS' for analytics buckets

§
updated_at: string
[src]

ISO 8601 timestamp of last update