From 762267d6af07ed453d3e5716294f13e5457f5c7d Mon Sep 17 00:00:00 2001 From: zoj613 Date: Mon, 18 Nov 2024 18:20:19 +0000 Subject: [PATCH] deploy: 21068ef968f1181f6882d8e7b36f4d823260abae --- zarr-lwt/Zarr_lwt/Storage/AmazonS3Store/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zarr-lwt/Zarr_lwt/Storage/AmazonS3Store/index.html b/zarr-lwt/Zarr_lwt/Storage/AmazonS3Store/index.html index d672b8d..3a90061 100644 --- a/zarr-lwt/Zarr_lwt/Storage/AmazonS3Store/index.html +++ b/zarr-lwt/Zarr_lwt/Storage/AmazonS3Store/index.html @@ -1,5 +1,5 @@ -AmazonS3Store (zarr-lwt.Zarr_lwt.Storage.AmazonS3Store)

Module Storage.AmazonS3Store

An Lwt-aware Amazon S3 bucket storage backend for a Zarr V3 hierarchy.

exception Failed of exn
exception Throttled
exception Forbidden
exception Unknown of int * string
exception Redirected
include Zarr.Storage.STORE with type 'a Deferred.t = 'a Lwt.t
module Deferred : Zarr.Types.Deferred with type 'a t = 'a Lwt.t
type t

The storage type.

module Group : sig ... end
module Array : sig ... end
val hierarchy : +AmazonS3Store (zarr-lwt.Zarr_lwt.Storage.AmazonS3Store)

Module Storage.AmazonS3Store

An Lwt-aware Amazon S3 bucket storage backend for a Zarr V3 hierarchy.

exception S3Error of Aws_s3_lwt.S3.error
include Zarr.Storage.STORE with type 'a Deferred.t = 'a Lwt.t
module Deferred : Zarr.Types.Deferred with type 'a t = 'a Lwt.t
type t

The storage type.

module Group : sig ... end
module Array : sig ... end
val hierarchy : t -> (Zarr.Node.Array.t list * Zarr.Node.Group.t list) Deferred.t

hierarchy t returns p where p is a pair of lists representing all nodes in store t. The first element of the pair is a list of all array nodes, and the second element is a list of all group nodes. This operation returns a pair of empty lists if store t is empty.

  • raises Parse_error

    if any node has invalid node_type metadata.

val clear : t -> unit Deferred.t

clear t clears the store t by deleting all nodes. If the store is already empty, this is a no-op.

val with_open : ?scheme:[ `Http | `Https ] ->