[][src]Enum rusoto_codecommit::MergeBranchesByThreeWayError

pub enum MergeBranchesByThreeWayError {
    BranchDoesNotExist(String),
    BranchNameIsTagName(String),
    BranchNameRequired(String),
    CommitDoesNotExist(String),
    CommitMessageLengthExceeded(String),
    CommitRequired(String),
    ConcurrentReferenceUpdate(String),
    EncryptionIntegrityChecksFailed(String),
    EncryptionKeyAccessDenied(String),
    EncryptionKeyDisabled(String),
    EncryptionKeyNotFound(String),
    EncryptionKeyUnavailable(String),
    FileContentSizeLimitExceeded(String),
    FileModeRequired(String),
    FolderContentSizeLimitExceeded(String),
    InvalidBranchName(String),
    InvalidCommit(String),
    InvalidConflictDetailLevel(String),
    InvalidConflictResolution(String),
    InvalidConflictResolutionStrategy(String),
    InvalidEmail(String),
    InvalidFileMode(String),
    InvalidPath(String),
    InvalidReplacementContent(String),
    InvalidReplacementType(String),
    InvalidRepositoryName(String),
    InvalidTargetBranch(String),
    ManualMergeRequired(String),
    MaximumConflictResolutionEntriesExceeded(String),
    MaximumFileContentToLoadExceeded(String),
    MaximumItemsToCompareExceeded(String),
    MultipleConflictResolutionEntries(String),
    NameLengthExceeded(String),
    PathRequired(String),
    ReplacementContentRequired(String),
    ReplacementTypeRequired(String),
    RepositoryDoesNotExist(String),
    RepositoryNameRequired(String),
    TipsDivergenceExceeded(String),
}

Errors returned by MergeBranchesByThreeWay

Variants

BranchDoesNotExist(String)

The specified branch does not exist.

BranchNameIsTagName(String)

The specified branch name is not valid because it is a tag name. Type the name of a current branch in the repository. For a list of valid branch names, use ListBranches.

BranchNameRequired(String)

A branch name is required but was not specified.

CommitDoesNotExist(String)

The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

CommitMessageLengthExceeded(String)

The commit message is too long. Provide a shorter string.

CommitRequired(String)

A commit was not specified.

ConcurrentReferenceUpdate(String)

The merge cannot be completed because the target branch has been modified. Another user might have modified the target branch while the merge was in progress. Wait a few minutes, and then try again.

EncryptionIntegrityChecksFailed(String)

An encryption integrity check failed.

EncryptionKeyAccessDenied(String)

An encryption key could not be accessed.

EncryptionKeyDisabled(String)

The encryption key is disabled.

EncryptionKeyNotFound(String)

No encryption key was found.

EncryptionKeyUnavailable(String)

The encryption key is not available.

FileContentSizeLimitExceeded(String)

The file cannot be added because it is too large. The maximum file size that can be added is 6 MB, and the combined file content change size is 7 MB. Consider making these changes using a Git client.

FileModeRequired(String)

The commit cannot be created because a file mode is required to update mode permissions for an existing file, but no file mode has been specified.

FolderContentSizeLimitExceeded(String)

The commit cannot be created because at least one of the overall changes in the commit results in a folder whose contents exceed the limit of 6 MB. Either reduce the number and size of your changes, or split the changes across multiple folders.

InvalidBranchName(String)

The specified reference name is not valid.

InvalidCommit(String)

The specified commit is not valid.

InvalidConflictDetailLevel(String)

The specified conflict detail level is not valid.

InvalidConflictResolution(String)

The specified conflict resolution list is not valid.

InvalidConflictResolutionStrategy(String)

The specified conflict resolution strategy is not valid.

InvalidEmail(String)

The specified email address either contains one or more characters that are not allowed, or it exceeds the maximum number of characters allowed for an email address.

InvalidFileMode(String)

The specified file mode permission is not valid. For a list of valid file mode permissions, see PutFile.

InvalidPath(String)

The specified path is not valid.

InvalidReplacementContent(String)

Automerge was specified for resolving the conflict, but the replacement type is not valid or content is missing.

InvalidReplacementType(String)

Automerge was specified for resolving the conflict, but the specified replacement type is not valid.

InvalidRepositoryName(String)

At least one specified repository name is not valid.

This exception only occurs when a specified repository name is not valid. Other exceptions occur when a required repository parameter is missing, or when a specified repository does not exist.

InvalidTargetBranch(String)

The specified target branch is not valid.

ManualMergeRequired(String)

The pull request cannot be merged automatically into the destination branch. You must manually merge the branches and resolve any conflicts.

MaximumConflictResolutionEntriesExceeded(String)

The number of allowed conflict resolution entries was exceeded.

MaximumFileContentToLoadExceeded(String)

The number of files to load exceeds the allowed limit.

MaximumItemsToCompareExceeded(String)

The maximum number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.

MultipleConflictResolutionEntries(String)

More than one conflict resolution entries exists for the conflict. A conflict can have only one conflict resolution entry.

NameLengthExceeded(String)

The user name is not valid because it has exceeded the character limit for author names.

PathRequired(String)

The folderPath for a location cannot be null.

ReplacementContentRequired(String)

USE_NEW_CONTENT was specified but no replacement content has been provided.

ReplacementTypeRequired(String)

A replacement type is required.

RepositoryDoesNotExist(String)

The specified repository does not exist.

RepositoryNameRequired(String)

A repository name is required but was not specified.

TipsDivergenceExceeded(String)

The divergence between the tips of the provided commit specifiers is too great to determine whether there might be any merge conflicts. Locally compare the specifiers using git diff or a diff tool.

Methods

impl MergeBranchesByThreeWayError[src]

Trait Implementations

impl PartialEq<MergeBranchesByThreeWayError> for MergeBranchesByThreeWayError[src]

impl Display for MergeBranchesByThreeWayError[src]

impl Debug for MergeBranchesByThreeWayError[src]

impl StructuralPartialEq for MergeBranchesByThreeWayError[src]

impl Error for MergeBranchesByThreeWayError[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self