/** * 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 OverridePullRequestApprovalRulesRequest : public CodeCommitRequest { public: AWS_CODECOMMIT_API OverridePullRequestApprovalRulesRequest(); // 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 "OverridePullRequestApprovalRules"; } 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 for which you want to override * all approval rule requirements. To get this information, use * GetPullRequest.

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

The system-generated ID of the pull request for which you want to override * all approval rule requirements. To get this information, use * GetPullRequest.

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

The system-generated ID of the pull request for which you want to override * all approval rule requirements. To get this information, use * GetPullRequest.

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

The system-generated ID of the pull request for which you want to override * all approval rule requirements. To get this information, use * GetPullRequest.

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

The system-generated ID of the pull request for which you want to override * all approval rule requirements. To get this information, use * GetPullRequest.

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

The system-generated ID of the pull request for which you want to override * all approval rule requirements. To get this information, use * GetPullRequest.

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

The system-generated ID of the pull request for which you want to override * all approval rule requirements. To get this information, use * GetPullRequest.

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

The system-generated ID of the pull request for which you want to override * all approval rule requirements. To get this information, use * GetPullRequest.

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

The system-generated ID of the most recent revision of the pull request. You * cannot override approval rules for anything but the most recent revision of a * pull request. To get the revision ID, use GetPullRequest.

*/ inline const Aws::String& GetRevisionId() const{ return m_revisionId; } /** *

The system-generated ID of the most recent revision of the pull request. You * cannot override approval rules for anything but the most recent revision of a * pull request. To get the revision ID, use GetPullRequest.

*/ inline bool RevisionIdHasBeenSet() const { return m_revisionIdHasBeenSet; } /** *

The system-generated ID of the most recent revision of the pull request. You * cannot override approval rules for anything but the most recent revision of a * pull request. To get the revision ID, use GetPullRequest.

*/ inline void SetRevisionId(const Aws::String& value) { m_revisionIdHasBeenSet = true; m_revisionId = value; } /** *

The system-generated ID of the most recent revision of the pull request. You * cannot override approval rules for anything but the most recent revision of a * pull request. To get the revision ID, use GetPullRequest.

*/ inline void SetRevisionId(Aws::String&& value) { m_revisionIdHasBeenSet = true; m_revisionId = std::move(value); } /** *

The system-generated ID of the most recent revision of the pull request. You * cannot override approval rules for anything but the most recent revision of a * pull request. To get the revision ID, use GetPullRequest.

*/ inline void SetRevisionId(const char* value) { m_revisionIdHasBeenSet = true; m_revisionId.assign(value); } /** *

The system-generated ID of the most recent revision of the pull request. You * cannot override approval rules for anything but the most recent revision of a * pull request. To get the revision ID, use GetPullRequest.

*/ inline OverridePullRequestApprovalRulesRequest& WithRevisionId(const Aws::String& value) { SetRevisionId(value); return *this;} /** *

The system-generated ID of the most recent revision of the pull request. You * cannot override approval rules for anything but the most recent revision of a * pull request. To get the revision ID, use GetPullRequest.

*/ inline OverridePullRequestApprovalRulesRequest& WithRevisionId(Aws::String&& value) { SetRevisionId(std::move(value)); return *this;} /** *

The system-generated ID of the most recent revision of the pull request. You * cannot override approval rules for anything but the most recent revision of a * pull request. To get the revision ID, use GetPullRequest.

*/ inline OverridePullRequestApprovalRulesRequest& WithRevisionId(const char* value) { SetRevisionId(value); return *this;} /** *

Whether you want to set aside approval rule requirements for the pull request * (OVERRIDE) or revoke a previous override and apply approval rule requirements * (REVOKE). REVOKE status is not stored.

*/ inline const OverrideStatus& GetOverrideStatus() const{ return m_overrideStatus; } /** *

Whether you want to set aside approval rule requirements for the pull request * (OVERRIDE) or revoke a previous override and apply approval rule requirements * (REVOKE). REVOKE status is not stored.

*/ inline bool OverrideStatusHasBeenSet() const { return m_overrideStatusHasBeenSet; } /** *

Whether you want to set aside approval rule requirements for the pull request * (OVERRIDE) or revoke a previous override and apply approval rule requirements * (REVOKE). REVOKE status is not stored.

*/ inline void SetOverrideStatus(const OverrideStatus& value) { m_overrideStatusHasBeenSet = true; m_overrideStatus = value; } /** *

Whether you want to set aside approval rule requirements for the pull request * (OVERRIDE) or revoke a previous override and apply approval rule requirements * (REVOKE). REVOKE status is not stored.

*/ inline void SetOverrideStatus(OverrideStatus&& value) { m_overrideStatusHasBeenSet = true; m_overrideStatus = std::move(value); } /** *

Whether you want to set aside approval rule requirements for the pull request * (OVERRIDE) or revoke a previous override and apply approval rule requirements * (REVOKE). REVOKE status is not stored.

*/ inline OverridePullRequestApprovalRulesRequest& WithOverrideStatus(const OverrideStatus& value) { SetOverrideStatus(value); return *this;} /** *

Whether you want to set aside approval rule requirements for the pull request * (OVERRIDE) or revoke a previous override and apply approval rule requirements * (REVOKE). REVOKE status is not stored.

*/ inline OverridePullRequestApprovalRulesRequest& WithOverrideStatus(OverrideStatus&& value) { SetOverrideStatus(std::move(value)); return *this;} private: Aws::String m_pullRequestId; bool m_pullRequestIdHasBeenSet = false; Aws::String m_revisionId; bool m_revisionIdHasBeenSet = false; OverrideStatus m_overrideStatus; bool m_overrideStatusHasBeenSet = false; }; } // namespace Model } // namespace CodeCommit } // namespace Aws