/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace CodeCommit { namespace Model { /** */ class MergePullRequestByFastForwardRequest : public CodeCommitRequest { public: AWS_CODECOMMIT_API MergePullRequestByFastForwardRequest(); // 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 "MergePullRequestByFastForward"; } AWS_CODECOMMIT_API Aws::String SerializePayload() const override; AWS_CODECOMMIT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The system-generated ID of the pull request. To get this ID, use * ListPullRequests.

*/ inline const Aws::String& GetPullRequestId() const{ return m_pullRequestId; } /** *

The system-generated ID of the pull request. To get this ID, use * ListPullRequests.

*/ inline bool PullRequestIdHasBeenSet() const { return m_pullRequestIdHasBeenSet; } /** *

The system-generated ID of the pull request. To get this ID, use * ListPullRequests.

*/ inline void SetPullRequestId(const Aws::String& value) { m_pullRequestIdHasBeenSet = true; m_pullRequestId = value; } /** *

The system-generated ID of the pull request. To get this ID, use * ListPullRequests.

*/ inline void SetPullRequestId(Aws::String&& value) { m_pullRequestIdHasBeenSet = true; m_pullRequestId = std::move(value); } /** *

The system-generated ID of the pull request. To get this ID, use * ListPullRequests.

*/ inline void SetPullRequestId(const char* value) { m_pullRequestIdHasBeenSet = true; m_pullRequestId.assign(value); } /** *

The system-generated ID of the pull request. To get this ID, use * ListPullRequests.

*/ inline MergePullRequestByFastForwardRequest& WithPullRequestId(const Aws::String& value) { SetPullRequestId(value); return *this;} /** *

The system-generated ID of the pull request. To get this ID, use * ListPullRequests.

*/ inline MergePullRequestByFastForwardRequest& WithPullRequestId(Aws::String&& value) { SetPullRequestId(std::move(value)); return *this;} /** *

The system-generated ID of the pull request. To get this ID, use * ListPullRequests.

*/ inline MergePullRequestByFastForwardRequest& WithPullRequestId(const char* value) { SetPullRequestId(value); return *this;} /** *

The name of the repository where the pull request was created.

*/ inline const Aws::String& GetRepositoryName() const{ return m_repositoryName; } /** *

The name of the repository where the pull request was created.

*/ inline bool RepositoryNameHasBeenSet() const { return m_repositoryNameHasBeenSet; } /** *

The name of the repository where the pull request was created.

*/ inline void SetRepositoryName(const Aws::String& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = value; } /** *

The name of the repository where the pull request was created.

*/ inline void SetRepositoryName(Aws::String&& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = std::move(value); } /** *

The name of the repository where the pull request was created.

*/ inline void SetRepositoryName(const char* value) { m_repositoryNameHasBeenSet = true; m_repositoryName.assign(value); } /** *

The name of the repository where the pull request was created.

*/ inline MergePullRequestByFastForwardRequest& WithRepositoryName(const Aws::String& value) { SetRepositoryName(value); return *this;} /** *

The name of the repository where the pull request was created.

*/ inline MergePullRequestByFastForwardRequest& WithRepositoryName(Aws::String&& value) { SetRepositoryName(std::move(value)); return *this;} /** *

The name of the repository where the pull request was created.

*/ inline MergePullRequestByFastForwardRequest& WithRepositoryName(const char* value) { SetRepositoryName(value); return *this;} /** *

The full commit ID of the original or updated commit in the pull request * source branch. Pass this value if you want an exception thrown if the current * commit ID of the tip of the source branch does not match this commit ID.

*/ inline const Aws::String& GetSourceCommitId() const{ return m_sourceCommitId; } /** *

The full commit ID of the original or updated commit in the pull request * source branch. Pass this value if you want an exception thrown if the current * commit ID of the tip of the source branch does not match this commit ID.

*/ inline bool SourceCommitIdHasBeenSet() const { return m_sourceCommitIdHasBeenSet; } /** *

The full commit ID of the original or updated commit in the pull request * source branch. Pass this value if you want an exception thrown if the current * commit ID of the tip of the source branch does not match this commit ID.

*/ inline void SetSourceCommitId(const Aws::String& value) { m_sourceCommitIdHasBeenSet = true; m_sourceCommitId = value; } /** *

The full commit ID of the original or updated commit in the pull request * source branch. Pass this value if you want an exception thrown if the current * commit ID of the tip of the source branch does not match this commit ID.

*/ inline void SetSourceCommitId(Aws::String&& value) { m_sourceCommitIdHasBeenSet = true; m_sourceCommitId = std::move(value); } /** *

The full commit ID of the original or updated commit in the pull request * source branch. Pass this value if you want an exception thrown if the current * commit ID of the tip of the source branch does not match this commit ID.

*/ inline void SetSourceCommitId(const char* value) { m_sourceCommitIdHasBeenSet = true; m_sourceCommitId.assign(value); } /** *

The full commit ID of the original or updated commit in the pull request * source branch. Pass this value if you want an exception thrown if the current * commit ID of the tip of the source branch does not match this commit ID.

*/ inline MergePullRequestByFastForwardRequest& WithSourceCommitId(const Aws::String& value) { SetSourceCommitId(value); return *this;} /** *

The full commit ID of the original or updated commit in the pull request * source branch. Pass this value if you want an exception thrown if the current * commit ID of the tip of the source branch does not match this commit ID.

*/ inline MergePullRequestByFastForwardRequest& WithSourceCommitId(Aws::String&& value) { SetSourceCommitId(std::move(value)); return *this;} /** *

The full commit ID of the original or updated commit in the pull request * source branch. Pass this value if you want an exception thrown if the current * commit ID of the tip of the source branch does not match this commit ID.

*/ inline MergePullRequestByFastForwardRequest& WithSourceCommitId(const char* value) { SetSourceCommitId(value); return *this;} private: Aws::String m_pullRequestId; bool m_pullRequestIdHasBeenSet = false; Aws::String m_repositoryName; bool m_repositoryNameHasBeenSet = false; Aws::String m_sourceCommitId; bool m_sourceCommitIdHasBeenSet = false; }; } // namespace Model } // namespace CodeCommit } // namespace Aws