Module Values.GetFolderOutputSource

Returns the contents of a specified folder in a repository.

Sourcetype nonrec t = {
  1. commitId : ObjectId.t option;
    (*

    The full commit ID used as a reference for the returned version of the folder content.

    *)
  2. folderPath : Path.t option;
    (*

    The fully qualified path of the folder whose contents are returned.

    *)
  3. treeId : ObjectId.t option;
    (*

    The full SHA-1 pointer of the tree information for the commit that contains the folder.

    *)
  4. subFolders : FolderList.t option;
    (*

    The list of folders that exist under the specified folder, if any.

    *)
  5. files : FileList.t option;
    (*

    The list of files in the specified folder, if any.

    *)
  6. subModules : SubModuleList.t option;
    (*

    The list of submodules in the specified folder, if any.

    *)
}
Sourcetype nonrec error = [
  1. | `CommitDoesNotExistException of CommitDoesNotExistException.t
  2. | `EncryptionIntegrityChecksFailedException of EncryptionIntegrityChecksFailedException.t
  3. | `EncryptionKeyAccessDeniedException of EncryptionKeyAccessDeniedException.t
  4. | `EncryptionKeyDisabledException of EncryptionKeyDisabledException.t
  5. | `EncryptionKeyNotFoundException of EncryptionKeyNotFoundException.t
  6. | `EncryptionKeyUnavailableException of EncryptionKeyUnavailableException.t
  7. | `FolderDoesNotExistException of FolderDoesNotExistException.t
  8. | `InvalidCommitException of InvalidCommitException.t
  9. | `InvalidPathException of InvalidPathException.t
  10. | `InvalidRepositoryNameException of InvalidRepositoryNameException.t
  11. | `PathRequiredException of PathRequiredException.t
  12. | `RepositoryDoesNotExistException of RepositoryDoesNotExistException.t
  13. | `RepositoryNameRequiredException of RepositoryNameRequiredException.t
  14. | `Unknown_operation_error of string * string option
]
Sourceval make : ?commitId:??? -> ?folderPath:??? -> ?treeId:??? -> ?subFolders:??? -> ?files:??? -> ?symbolicLinks:??? -> ?subModules:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `CommitDoesNotExistException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `FolderDoesNotExistException of unit | `InvalidCommitException of unit | `InvalidPathException of unit | `InvalidRepositoryNameException of unit | `PathRequiredException of unit | `RepositoryDoesNotExistException of unit | `RepositoryNameRequiredException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `CommitDoesNotExistException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `FolderDoesNotExistException of unit | `InvalidCommitException of unit | `InvalidPathException of unit | `InvalidRepositoryNameException of unit | `PathRequiredException of unit | `RepositoryDoesNotExistException of unit | `RepositoryNameRequiredException 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 [> `Structure of (string * [> `Enum of string | `String of ObjectId.t ]) list ] list | `String of ObjectId.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