Module Values.GetDifferencesOutputSource

Returns information about the differences in a valid commit specifier (such as a branch, tag, HEAD, commit ID, or other fully qualified reference). Results can be limited to a specified path.

Sourcetype nonrec t = {
  1. differences : DifferenceList.t option;
    (*

    A data type object that contains information about the differences, including whether the difference is added, modified, or deleted (A, D, M).

    *)
  2. nextToken : NextToken.t option;
    (*

    An enumeration token that can be used in a request to return the next batch of the results.

    *)
}
Sourcetype nonrec error = [
  1. | `CommitDoesNotExistException of CommitDoesNotExistException.t
  2. | `CommitRequiredException of CommitRequiredException.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. | `InvalidCommitException of InvalidCommitException.t
  9. | `InvalidCommitIdException of InvalidCommitIdException.t
  10. | `InvalidContinuationTokenException of InvalidContinuationTokenException.t
  11. | `InvalidMaxResultsException of InvalidMaxResultsException.t
  12. | `InvalidPathException of InvalidPathException.t
  13. | `InvalidRepositoryNameException of InvalidRepositoryNameException.t
  14. | `PathDoesNotExistException of PathDoesNotExistException.t
  15. | `RepositoryDoesNotExistException of RepositoryDoesNotExistException.t
  16. | `RepositoryNameRequiredException of RepositoryNameRequiredException.t
  17. | `Unknown_operation_error of string * string option
]
Sourceval make : ?differences:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `CommitDoesNotExistException of unit | `CommitRequiredException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `InvalidCommitException of unit | `InvalidCommitIdException of unit | `InvalidContinuationTokenException of unit | `InvalidMaxResultsException of unit | `InvalidPathException of unit | `InvalidRepositoryNameException of unit | `PathDoesNotExistException 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 | `CommitRequiredException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `InvalidCommitException of unit | `InvalidCommitIdException of unit | `InvalidContinuationTokenException of unit | `InvalidMaxResultsException of unit | `InvalidPathException of unit | `InvalidRepositoryNameException of unit | `PathDoesNotExistException 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 | `Structure of (string * [> `String of ObjectId.t ]) list ]) list ] list | `String of NextToken.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