Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetMergeOptionsInput

import type { GetMergeOptionsInput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface GetMergeOptionsInput {
conflictDetailLevel?: ConflictDetailLevelTypeEnum | null;
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum | null;
destinationCommitSpecifier: string;
repositoryName: string;
sourceCommitSpecifier: string;
}

§Properties

§
conflictDetailLevel?: ConflictDetailLevelTypeEnum | null
[src]

The level of conflict detail to use. If unspecified, the default FILE_LEVEL is used, which returns a not-mergeable result if the same file has differences in both branches. If LINE_LEVEL is specified, a conflict is considered not mergeable if the same file in both branches has differences on the same line.

§
conflictResolutionStrategy?: ConflictResolutionStrategyTypeEnum | null
[src]

Specifies which branch to use when resolving conflicts, or whether to attempt automatically merging two versions of a file. The default is NONE, which requires any conflicts to be resolved manually before the merge operation is successful.

§
destinationCommitSpecifier: string
[src]

The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

§
repositoryName: string
[src]

The name of the repository that contains the commits about which you want to get merge options.

§
sourceCommitSpecifier: string
[src]

The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).