Module Values.BatchGetRepositoriesOutputSource

Represents the output of a batch get repositories operation.

Sourcetype nonrec t = {
  1. repositories : RepositoryMetadataList.t option;
    (*

    A list of repositories returned by the batch get repositories operation.

    *)
  2. repositoriesNotFound : RepositoryNotFoundList.t option;
    (*

    Returns a list of repository names for which information could not be found.

    *)
  3. errors : BatchGetRepositoriesErrorsList.t option;
    (*

    Returns information about any errors returned when attempting to retrieve information about the repositories.

    *)
}
Sourcetype nonrec error = [
  1. | `EncryptionIntegrityChecksFailedException of EncryptionIntegrityChecksFailedException.t
  2. | `EncryptionKeyAccessDeniedException of EncryptionKeyAccessDeniedException.t
  3. | `EncryptionKeyDisabledException of EncryptionKeyDisabledException.t
  4. | `EncryptionKeyNotFoundException of EncryptionKeyNotFoundException.t
  5. | `EncryptionKeyUnavailableException of EncryptionKeyUnavailableException.t
  6. | `InvalidRepositoryNameException of InvalidRepositoryNameException.t
  7. | `MaximumRepositoryNamesExceededException of MaximumRepositoryNamesExceededException.t
  8. | `RepositoryNamesRequiredException of RepositoryNamesRequiredException.t
  9. | `Unknown_operation_error of string * string option
]
Sourceval make : ?repositories:??? -> ?repositoriesNotFound:??? -> ?errors:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `InvalidRepositoryNameException of unit | `MaximumRepositoryNamesExceededException of unit | `RepositoryNamesRequiredException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `InvalidRepositoryNameException of unit | `MaximumRepositoryNamesExceededException of unit | `RepositoryNamesRequiredException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of RepositoryName.t | `Structure of (string * [> `Enum of string | `String of AccountId.t | `Timestamp of LastModifiedDate.t ]) list ] list ]) 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