Module Values.GetMergeConflictsOutputSource

Returns information about merge conflicts between the before and after commit IDs for a pull request in a repository.

Sourcetype nonrec t = {
  1. mergeable : IsMergeable.t option;
    (*

    A Boolean value that indicates whether the code is mergeable by the specified merge option.

    *)
  2. destinationCommitId : ObjectId.t option;
    (*

    The commit ID of the destination commit specifier that was used in the merge evaluation.

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

    The commit ID of the source commit specifier that was used in the merge evaluation.

    *)
  4. baseCommitId : ObjectId.t option;
    (*

    The commit ID of the merge base.

    *)
  5. conflictMetadataList : ConflictMetadataList.t option;
    (*

    A list of metadata for any conflicting files. If the specified merge strategy is FAST_FORWARD_MERGE, this list is always empty.

    *)
  6. 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. | `InvalidConflictDetailLevelException of InvalidConflictDetailLevelException.t
  10. | `InvalidConflictResolutionStrategyException of InvalidConflictResolutionStrategyException.t
  11. | `InvalidContinuationTokenException of InvalidContinuationTokenException.t
  12. | `InvalidDestinationCommitSpecifierException of InvalidDestinationCommitSpecifierException.t
  13. | `InvalidMaxConflictFilesException of InvalidMaxConflictFilesException.t
  14. | `InvalidMergeOptionException of InvalidMergeOptionException.t
  15. | `InvalidRepositoryNameException of InvalidRepositoryNameException.t
  16. | `InvalidSourceCommitSpecifierException of InvalidSourceCommitSpecifierException.t
  17. | `MaximumFileContentToLoadExceededException of MaximumFileContentToLoadExceededException.t
  18. | `MaximumItemsToCompareExceededException of MaximumItemsToCompareExceededException.t
  19. | `MergeOptionRequiredException of MergeOptionRequiredException.t
  20. | `RepositoryDoesNotExistException of RepositoryDoesNotExistException.t
  21. | `RepositoryNameRequiredException of RepositoryNameRequiredException.t
  22. | `TipsDivergenceExceededException of TipsDivergenceExceededException.t
  23. | `Unknown_operation_error of string * string option
]
Sourceval make : ?mergeable:??? -> ?destinationCommitId:??? -> ?sourceCommitId:??? -> ?baseCommitId:??? -> ?conflictMetadataList:??? -> ?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 | `InvalidConflictDetailLevelException of unit | `InvalidConflictResolutionStrategyException of unit | `InvalidContinuationTokenException of unit | `InvalidDestinationCommitSpecifierException of unit | `InvalidMaxConflictFilesException of unit | `InvalidMergeOptionException of unit | `InvalidRepositoryNameException of unit | `InvalidSourceCommitSpecifierException of unit | `MaximumFileContentToLoadExceededException of unit | `MaximumItemsToCompareExceededException of unit | `MergeOptionRequiredException of unit | `RepositoryDoesNotExistException of unit | `RepositoryNameRequiredException of unit | `TipsDivergenceExceededException 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 | `InvalidConflictDetailLevelException of unit | `InvalidConflictResolutionStrategyException of unit | `InvalidContinuationTokenException of unit | `InvalidDestinationCommitSpecifierException of unit | `InvalidMaxConflictFilesException of unit | `InvalidMergeOptionException of unit | `InvalidRepositoryNameException of unit | `InvalidSourceCommitSpecifierException of unit | `MaximumFileContentToLoadExceededException of unit | `MaximumItemsToCompareExceededException of unit | `MergeOptionRequiredException of unit | `RepositoryDoesNotExistException of unit | `RepositoryNameRequiredException of unit | `TipsDivergenceExceededException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IsMergeable.t | `List of [> `Structure of (string * [> `Boolean of IsContentConflict.t | `Integer of NumberOfConflicts.t | `String of Path.t | `Structure of (string * [> `Boolean of CapitalBoolean.t | `Enum of string | `Long of FileSize.t ]) list ]) 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