lib/polars/catalog/unity/catalog_info.rb



module Polars
  class Catalog
    module Unity
      # Information for a catalog within a metastore.
      CatalogInfo =
        ::Struct.new(
          :name,
          :comment,
          :properties,
          :options,
          :storage_location,
          :created_at,
          :created_by,
          :updated_at,
          :updated_by,
          keyword_init: true
        )
    end
  end
end