[][src]Enum rusoto_codecommit::MergePullRequestBySquashError

pub enum MergePullRequestBySquashError {
    CommitMessageLengthExceeded(String),
    ConcurrentReferenceUpdate(String),
    EncryptionIntegrityChecksFailed(String),
    EncryptionKeyAccessDenied(String),
    EncryptionKeyDisabled(String),
    EncryptionKeyNotFound(String),
    EncryptionKeyUnavailable(String),
    FileContentSizeLimitExceeded(String),
    FolderContentSizeLimitExceeded(String),
    InvalidCommitId(String),
    InvalidConflictDetailLevel(String),
    InvalidConflictResolution(String),
    InvalidConflictResolutionStrategy(String),
    InvalidEmail(String),
    InvalidFileMode(String),
    InvalidPath(String),
    InvalidPullRequestId(String),
    InvalidReplacementContent(String),
    InvalidReplacementType(String),
    InvalidRepositoryName(String),
    ManualMergeRequired(String),
    MaximumConflictResolutionEntriesExceeded(String),
    MaximumFileContentToLoadExceeded(String),
    MaximumItemsToCompareExceeded(String),
    MultipleConflictResolutionEntries(String),
    NameLengthExceeded(String),
    PathRequired(String),
    PullRequestAlreadyClosed(String),
    PullRequestApprovalRulesNotSatisfied(String),
    PullRequestDoesNotExist(String),
    PullRequestIdRequired(String),
    ReplacementContentRequired(String),
    ReplacementTypeRequired(String),
    RepositoryDoesNotExist(String),
    RepositoryNameRequired(String),
    RepositoryNotAssociatedWithPullRequest(String),
    TipOfSourceReferenceIsDifferent(String),
    TipsDivergenceExceeded(String),
}

Errors returned by MergePullRequestBySquash

Variants

CommitMessageLengthExceeded(String)

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

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.

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.

InvalidCommitId(String)

The specified commit ID 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.

InvalidPullRequestId(String)

The pull request ID is not valid. Make sure that you have provided the full ID and that the pull request is in the specified repository, and then try again.

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.

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.

PullRequestAlreadyClosed(String)

The pull request status cannot be updated because it is already closed.

PullRequestApprovalRulesNotSatisfied(String)

The pull request cannot be merged because one or more approval rules applied to the pull request have conditions that have not been met.

PullRequestDoesNotExist(String)

The pull request ID could not be found. Make sure that you have specified the correct repository name and pull request ID, and then try again.

PullRequestIdRequired(String)

A pull request ID is required, but none was provided.

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.

RepositoryNotAssociatedWithPullRequest(String)

The repository does not contain any pull requests with that pull request ID. Use GetPullRequest to verify the correct repository name for the pull request ID.

TipOfSourceReferenceIsDifferent(String)

The tip of the source branch in the destination repository does not match the tip of the source branch specified in your request. The pull request might have been updated. Make sure that you have the latest changes.

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.

Implementations

impl MergePullRequestBySquashError[src]

Trait Implementations

impl Debug for MergePullRequestBySquashError[src]

impl Display for MergePullRequestBySquashError[src]

impl Error for MergePullRequestBySquashError[src]

impl PartialEq<MergePullRequestBySquashError> for MergePullRequestBySquashError[src]

impl StructuralPartialEq for MergePullRequestBySquashError[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> Instrument 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.