/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace CodeCommit { namespace Model { /** */ class UpdatePullRequestStatusRequest : public CodeCommitRequest { public: AWS_CODECOMMIT_API UpdatePullRequestStatusRequest(); // 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 "UpdatePullRequestStatus"; } 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 UpdatePullRequestStatusRequest& WithPullRequestId(const Aws::String& value) { SetPullRequestId(value); return *this;} /** *

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

*/ inline UpdatePullRequestStatusRequest& 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 UpdatePullRequestStatusRequest& WithPullRequestId(const char* value) { SetPullRequestId(value); return *this;} /** *

The status of the pull request. The only valid operations are to update the * status from OPEN to OPEN, OPEN to * CLOSED or from CLOSED to CLOSED.

*/ inline const PullRequestStatusEnum& GetPullRequestStatus() const{ return m_pullRequestStatus; } /** *

The status of the pull request. The only valid operations are to update the * status from OPEN to OPEN, OPEN to * CLOSED or from CLOSED to CLOSED.

*/ inline bool PullRequestStatusHasBeenSet() const { return m_pullRequestStatusHasBeenSet; } /** *

The status of the pull request. The only valid operations are to update the * status from OPEN to OPEN, OPEN to * CLOSED or from CLOSED to CLOSED.

*/ inline void SetPullRequestStatus(const PullRequestStatusEnum& value) { m_pullRequestStatusHasBeenSet = true; m_pullRequestStatus = value; } /** *

The status of the pull request. The only valid operations are to update the * status from OPEN to OPEN, OPEN to * CLOSED or from CLOSED to CLOSED.

*/ inline void SetPullRequestStatus(PullRequestStatusEnum&& value) { m_pullRequestStatusHasBeenSet = true; m_pullRequestStatus = std::move(value); } /** *

The status of the pull request. The only valid operations are to update the * status from OPEN to OPEN, OPEN to * CLOSED or from CLOSED to CLOSED.

*/ inline UpdatePullRequestStatusRequest& WithPullRequestStatus(const PullRequestStatusEnum& value) { SetPullRequestStatus(value); return *this;} /** *

The status of the pull request. The only valid operations are to update the * status from OPEN to OPEN, OPEN to * CLOSED or from CLOSED to CLOSED.

*/ inline UpdatePullRequestStatusRequest& WithPullRequestStatus(PullRequestStatusEnum&& value) { SetPullRequestStatus(std::move(value)); return *this;} private: Aws::String m_pullRequestId; bool m_pullRequestIdHasBeenSet = false; PullRequestStatusEnum m_pullRequestStatus; bool m_pullRequestStatusHasBeenSet = false; }; } // namespace Model } // namespace CodeCommit } // namespace Aws