This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-codecommit/include/aws/codecommit/model/GetMergeConflictsRequest.h

413 lines
18 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/codecommit/CodeCommit_EXPORTS.h>
#include <aws/codecommit/CodeCommitRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/codecommit/model/MergeOptionTypeEnum.h>
#include <aws/codecommit/model/ConflictDetailLevelTypeEnum.h>
#include <aws/codecommit/model/ConflictResolutionStrategyTypeEnum.h>
#include <utility>
namespace Aws
{
namespace CodeCommit
{
namespace Model
{
/**
*/
class AWS_CODECOMMIT_API GetMergeConflictsRequest : public CodeCommitRequest
{
public:
GetMergeConflictsRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "GetMergeConflicts"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The name of the repository where the pull request was created.</p>
*/
inline const Aws::String& GetRepositoryName() const{ return m_repositoryName; }
/**
* <p>The name of the repository where the pull request was created.</p>
*/
inline bool RepositoryNameHasBeenSet() const { return m_repositoryNameHasBeenSet; }
/**
* <p>The name of the repository where the pull request was created.</p>
*/
inline void SetRepositoryName(const Aws::String& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = value; }
/**
* <p>The name of the repository where the pull request was created.</p>
*/
inline void SetRepositoryName(Aws::String&& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = std::move(value); }
/**
* <p>The name of the repository where the pull request was created.</p>
*/
inline void SetRepositoryName(const char* value) { m_repositoryNameHasBeenSet = true; m_repositoryName.assign(value); }
/**
* <p>The name of the repository where the pull request was created.</p>
*/
inline GetMergeConflictsRequest& WithRepositoryName(const Aws::String& value) { SetRepositoryName(value); return *this;}
/**
* <p>The name of the repository where the pull request was created.</p>
*/
inline GetMergeConflictsRequest& WithRepositoryName(Aws::String&& value) { SetRepositoryName(std::move(value)); return *this;}
/**
* <p>The name of the repository where the pull request was created.</p>
*/
inline GetMergeConflictsRequest& WithRepositoryName(const char* value) { SetRepositoryName(value); return *this;}
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline const Aws::String& GetDestinationCommitSpecifier() const{ return m_destinationCommitSpecifier; }
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline bool DestinationCommitSpecifierHasBeenSet() const { return m_destinationCommitSpecifierHasBeenSet; }
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline void SetDestinationCommitSpecifier(const Aws::String& value) { m_destinationCommitSpecifierHasBeenSet = true; m_destinationCommitSpecifier = value; }
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline void SetDestinationCommitSpecifier(Aws::String&& value) { m_destinationCommitSpecifierHasBeenSet = true; m_destinationCommitSpecifier = std::move(value); }
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline void SetDestinationCommitSpecifier(const char* value) { m_destinationCommitSpecifierHasBeenSet = true; m_destinationCommitSpecifier.assign(value); }
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline GetMergeConflictsRequest& WithDestinationCommitSpecifier(const Aws::String& value) { SetDestinationCommitSpecifier(value); return *this;}
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline GetMergeConflictsRequest& WithDestinationCommitSpecifier(Aws::String&& value) { SetDestinationCommitSpecifier(std::move(value)); return *this;}
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline GetMergeConflictsRequest& WithDestinationCommitSpecifier(const char* value) { SetDestinationCommitSpecifier(value); return *this;}
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline const Aws::String& GetSourceCommitSpecifier() const{ return m_sourceCommitSpecifier; }
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline bool SourceCommitSpecifierHasBeenSet() const { return m_sourceCommitSpecifierHasBeenSet; }
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline void SetSourceCommitSpecifier(const Aws::String& value) { m_sourceCommitSpecifierHasBeenSet = true; m_sourceCommitSpecifier = value; }
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline void SetSourceCommitSpecifier(Aws::String&& value) { m_sourceCommitSpecifierHasBeenSet = true; m_sourceCommitSpecifier = std::move(value); }
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline void SetSourceCommitSpecifier(const char* value) { m_sourceCommitSpecifierHasBeenSet = true; m_sourceCommitSpecifier.assign(value); }
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline GetMergeConflictsRequest& WithSourceCommitSpecifier(const Aws::String& value) { SetSourceCommitSpecifier(value); return *this;}
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline GetMergeConflictsRequest& WithSourceCommitSpecifier(Aws::String&& value) { SetSourceCommitSpecifier(std::move(value)); return *this;}
/**
* <p>The branch, tag, HEAD, or other fully qualified reference used to identify a
* commit (for example, a branch name or a full commit ID).</p>
*/
inline GetMergeConflictsRequest& WithSourceCommitSpecifier(const char* value) { SetSourceCommitSpecifier(value); return *this;}
/**
* <p>The merge option or strategy you want to use to merge the code. </p>
*/
inline const MergeOptionTypeEnum& GetMergeOption() const{ return m_mergeOption; }
/**
* <p>The merge option or strategy you want to use to merge the code. </p>
*/
inline bool MergeOptionHasBeenSet() const { return m_mergeOptionHasBeenSet; }
/**
* <p>The merge option or strategy you want to use to merge the code. </p>
*/
inline void SetMergeOption(const MergeOptionTypeEnum& value) { m_mergeOptionHasBeenSet = true; m_mergeOption = value; }
/**
* <p>The merge option or strategy you want to use to merge the code. </p>
*/
inline void SetMergeOption(MergeOptionTypeEnum&& value) { m_mergeOptionHasBeenSet = true; m_mergeOption = std::move(value); }
/**
* <p>The merge option or strategy you want to use to merge the code. </p>
*/
inline GetMergeConflictsRequest& WithMergeOption(const MergeOptionTypeEnum& value) { SetMergeOption(value); return *this;}
/**
* <p>The merge option or strategy you want to use to merge the code. </p>
*/
inline GetMergeConflictsRequest& WithMergeOption(MergeOptionTypeEnum&& value) { SetMergeOption(std::move(value)); return *this;}
/**
* <p>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.</p>
*/
inline const ConflictDetailLevelTypeEnum& GetConflictDetailLevel() const{ return m_conflictDetailLevel; }
/**
* <p>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.</p>
*/
inline bool ConflictDetailLevelHasBeenSet() const { return m_conflictDetailLevelHasBeenSet; }
/**
* <p>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.</p>
*/
inline void SetConflictDetailLevel(const ConflictDetailLevelTypeEnum& value) { m_conflictDetailLevelHasBeenSet = true; m_conflictDetailLevel = value; }
/**
* <p>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.</p>
*/
inline void SetConflictDetailLevel(ConflictDetailLevelTypeEnum&& value) { m_conflictDetailLevelHasBeenSet = true; m_conflictDetailLevel = std::move(value); }
/**
* <p>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.</p>
*/
inline GetMergeConflictsRequest& WithConflictDetailLevel(const ConflictDetailLevelTypeEnum& value) { SetConflictDetailLevel(value); return *this;}
/**
* <p>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.</p>
*/
inline GetMergeConflictsRequest& WithConflictDetailLevel(ConflictDetailLevelTypeEnum&& value) { SetConflictDetailLevel(std::move(value)); return *this;}
/**
* <p>The maximum number of files to include in the output.</p>
*/
inline int GetMaxConflictFiles() const{ return m_maxConflictFiles; }
/**
* <p>The maximum number of files to include in the output.</p>
*/
inline bool MaxConflictFilesHasBeenSet() const { return m_maxConflictFilesHasBeenSet; }
/**
* <p>The maximum number of files to include in the output.</p>
*/
inline void SetMaxConflictFiles(int value) { m_maxConflictFilesHasBeenSet = true; m_maxConflictFiles = value; }
/**
* <p>The maximum number of files to include in the output.</p>
*/
inline GetMergeConflictsRequest& WithMaxConflictFiles(int value) { SetMaxConflictFiles(value); return *this;}
/**
* <p>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.</p>
*/
inline const ConflictResolutionStrategyTypeEnum& GetConflictResolutionStrategy() const{ return m_conflictResolutionStrategy; }
/**
* <p>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.</p>
*/
inline bool ConflictResolutionStrategyHasBeenSet() const { return m_conflictResolutionStrategyHasBeenSet; }
/**
* <p>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.</p>
*/
inline void SetConflictResolutionStrategy(const ConflictResolutionStrategyTypeEnum& value) { m_conflictResolutionStrategyHasBeenSet = true; m_conflictResolutionStrategy = value; }
/**
* <p>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.</p>
*/
inline void SetConflictResolutionStrategy(ConflictResolutionStrategyTypeEnum&& value) { m_conflictResolutionStrategyHasBeenSet = true; m_conflictResolutionStrategy = std::move(value); }
/**
* <p>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.</p>
*/
inline GetMergeConflictsRequest& WithConflictResolutionStrategy(const ConflictResolutionStrategyTypeEnum& value) { SetConflictResolutionStrategy(value); return *this;}
/**
* <p>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.</p>
*/
inline GetMergeConflictsRequest& WithConflictResolutionStrategy(ConflictResolutionStrategyTypeEnum&& value) { SetConflictResolutionStrategy(std::move(value)); return *this;}
/**
* <p>An enumeration token that, when provided in a request, returns the next batch
* of the results.</p>
*/
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
/**
* <p>An enumeration token that, when provided in a request, returns the next batch
* of the results.</p>
*/
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
/**
* <p>An enumeration token that, when provided in a request, returns the next batch
* of the results.</p>
*/
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
/**
* <p>An enumeration token that, when provided in a request, returns the next batch
* of the results.</p>
*/
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
/**
* <p>An enumeration token that, when provided in a request, returns the next batch
* of the results.</p>
*/
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
/**
* <p>An enumeration token that, when provided in a request, returns the next batch
* of the results.</p>
*/
inline GetMergeConflictsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>An enumeration token that, when provided in a request, returns the next batch
* of the results.</p>
*/
inline GetMergeConflictsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>An enumeration token that, when provided in a request, returns the next batch
* of the results.</p>
*/
inline GetMergeConflictsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
private:
Aws::String m_repositoryName;
bool m_repositoryNameHasBeenSet;
Aws::String m_destinationCommitSpecifier;
bool m_destinationCommitSpecifierHasBeenSet;
Aws::String m_sourceCommitSpecifier;
bool m_sourceCommitSpecifierHasBeenSet;
MergeOptionTypeEnum m_mergeOption;
bool m_mergeOptionHasBeenSet;
ConflictDetailLevelTypeEnum m_conflictDetailLevel;
bool m_conflictDetailLevelHasBeenSet;
int m_maxConflictFiles;
bool m_maxConflictFilesHasBeenSet;
ConflictResolutionStrategyTypeEnum m_conflictResolutionStrategy;
bool m_conflictResolutionStrategyHasBeenSet;
Aws::String m_nextToken;
bool m_nextTokenHasBeenSet;
};
} // namespace Model
} // namespace CodeCommit
} // namespace Aws