[][src]Enum rusoto_codecommit::CreateUnreferencedMergeCommitError

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

Errors returned by CreateUnreferencedMergeCommit

Variants

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 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 no file mode has been specified. A file mode is required to update mode permissions for a file.

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.

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.

InvalidMergeOption(String)

The specified merge option is not valid for this operation. Not all merge strategies are supported for all operations.

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)

A specified repository name is not valid.

This exception occurs only 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.

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 number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.

MergeOptionRequired(String)

A merge option or stategy is required, and none was provided.

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 CreateUnreferencedMergeCommitError[src]

Trait Implementations

impl Debug for CreateUnreferencedMergeCommitError[src]

impl Display for CreateUnreferencedMergeCommitError[src]

impl Error for CreateUnreferencedMergeCommitError[src]

impl PartialEq<CreateUnreferencedMergeCommitError> for CreateUnreferencedMergeCommitError[src]

impl StructuralPartialEq for CreateUnreferencedMergeCommitError[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.