Module Values.GetMergeOptionsOutputSource

Returns information about the merge options available for merging two specified branches. For details about why a merge option is not available, use GetMergeConflicts or DescribeMergeConflicts.

Sourcetype nonrec t = {
  1. mergeOptions : MergeOptions.t option;
    (*

    The merge option or strategy used to merge the code.

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

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

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

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

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

    The commit ID of the merge base.

    *)
}
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. | `InvalidRepositoryNameException of InvalidRepositoryNameException.t
  12. | `MaximumFileContentToLoadExceededException of MaximumFileContentToLoadExceededException.t
  13. | `MaximumItemsToCompareExceededException of MaximumItemsToCompareExceededException.t
  14. | `RepositoryDoesNotExistException of RepositoryDoesNotExistException.t
  15. | `RepositoryNameRequiredException of RepositoryNameRequiredException.t
  16. | `TipsDivergenceExceededException of TipsDivergenceExceededException.t
  17. | `Unknown_operation_error of string * string option
]
Sourceval make : ?mergeOptions:??? -> ?sourceCommitId:??? -> ?destinationCommitId:??? -> ?baseCommitId:??? -> 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 | `InvalidRepositoryNameException of unit | `MaximumFileContentToLoadExceededException of unit | `MaximumItemsToCompareExceededException 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 | `InvalidRepositoryNameException of unit | `MaximumFileContentToLoadExceededException of unit | `MaximumItemsToCompareExceededException 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 * [> `List of [> `Enum of string ] 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