Module Values.GetBlobOutputSource

Represents the output of a get blob operation.

Sourcetype nonrec t = {
  1. content : Blob.t option;
    (*

    The content of the blob, usually a file.

    *)
}
Sourcetype nonrec error = [
  1. | `BlobIdDoesNotExistException of BlobIdDoesNotExistException.t
  2. | `BlobIdRequiredException of BlobIdRequiredException.t
  3. | `EncryptionIntegrityChecksFailedException of EncryptionIntegrityChecksFailedException.t
  4. | `EncryptionKeyAccessDeniedException of EncryptionKeyAccessDeniedException.t
  5. | `EncryptionKeyDisabledException of EncryptionKeyDisabledException.t
  6. | `EncryptionKeyNotFoundException of EncryptionKeyNotFoundException.t
  7. | `EncryptionKeyUnavailableException of EncryptionKeyUnavailableException.t
  8. | `FileTooLargeException of FileTooLargeException.t
  9. | `InvalidBlobIdException of InvalidBlobIdException.t
  10. | `InvalidRepositoryNameException of InvalidRepositoryNameException.t
  11. | `RepositoryDoesNotExistException of RepositoryDoesNotExistException.t
  12. | `RepositoryNameRequiredException of RepositoryNameRequiredException.t
  13. | `Unknown_operation_error of string * string option
]
Sourceval make : ?content:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BlobIdDoesNotExistException of unit | `BlobIdRequiredException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `FileTooLargeException of unit | `InvalidBlobIdException of unit | `InvalidRepositoryNameException of unit | `RepositoryDoesNotExistException of unit | `RepositoryNameRequiredException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BlobIdDoesNotExistException of unit | `BlobIdRequiredException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `FileTooLargeException of unit | `InvalidBlobIdException of unit | `InvalidRepositoryNameException of unit | `RepositoryDoesNotExistException of unit | `RepositoryNameRequiredException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval of_header_and_body : ('a * Blob.t) -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of Blob.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t