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/PullRequestSourceReferenceUpdatedEventMetadata.h

246 lines
9.6 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/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace CodeCommit
{
namespace Model
{
/**
* <p>Information about an update to the source branch of a pull
* request.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PullRequestSourceReferenceUpdatedEventMetadata">AWS
* API Reference</a></p>
*/
class AWS_CODECOMMIT_API PullRequestSourceReferenceUpdatedEventMetadata
{
public:
PullRequestSourceReferenceUpdatedEventMetadata();
PullRequestSourceReferenceUpdatedEventMetadata(Aws::Utils::Json::JsonView jsonValue);
PullRequestSourceReferenceUpdatedEventMetadata& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The name of the repository where the pull request was updated.</p>
*/
inline const Aws::String& GetRepositoryName() const{ return m_repositoryName; }
/**
* <p>The name of the repository where the pull request was updated.</p>
*/
inline bool RepositoryNameHasBeenSet() const { return m_repositoryNameHasBeenSet; }
/**
* <p>The name of the repository where the pull request was updated.</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 updated.</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 updated.</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 updated.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithRepositoryName(const Aws::String& value) { SetRepositoryName(value); return *this;}
/**
* <p>The name of the repository where the pull request was updated.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithRepositoryName(Aws::String&& value) { SetRepositoryName(std::move(value)); return *this;}
/**
* <p>The name of the repository where the pull request was updated.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithRepositoryName(const char* value) { SetRepositoryName(value); return *this;}
/**
* <p>The full commit ID of the commit in the destination branch that was the tip
* of the branch at the time the pull request was updated.</p>
*/
inline const Aws::String& GetBeforeCommitId() const{ return m_beforeCommitId; }
/**
* <p>The full commit ID of the commit in the destination branch that was the tip
* of the branch at the time the pull request was updated.</p>
*/
inline bool BeforeCommitIdHasBeenSet() const { return m_beforeCommitIdHasBeenSet; }
/**
* <p>The full commit ID of the commit in the destination branch that was the tip
* of the branch at the time the pull request was updated.</p>
*/
inline void SetBeforeCommitId(const Aws::String& value) { m_beforeCommitIdHasBeenSet = true; m_beforeCommitId = value; }
/**
* <p>The full commit ID of the commit in the destination branch that was the tip
* of the branch at the time the pull request was updated.</p>
*/
inline void SetBeforeCommitId(Aws::String&& value) { m_beforeCommitIdHasBeenSet = true; m_beforeCommitId = std::move(value); }
/**
* <p>The full commit ID of the commit in the destination branch that was the tip
* of the branch at the time the pull request was updated.</p>
*/
inline void SetBeforeCommitId(const char* value) { m_beforeCommitIdHasBeenSet = true; m_beforeCommitId.assign(value); }
/**
* <p>The full commit ID of the commit in the destination branch that was the tip
* of the branch at the time the pull request was updated.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithBeforeCommitId(const Aws::String& value) { SetBeforeCommitId(value); return *this;}
/**
* <p>The full commit ID of the commit in the destination branch that was the tip
* of the branch at the time the pull request was updated.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithBeforeCommitId(Aws::String&& value) { SetBeforeCommitId(std::move(value)); return *this;}
/**
* <p>The full commit ID of the commit in the destination branch that was the tip
* of the branch at the time the pull request was updated.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithBeforeCommitId(const char* value) { SetBeforeCommitId(value); return *this;}
/**
* <p>The full commit ID of the commit in the source branch that was the tip of the
* branch at the time the pull request was updated.</p>
*/
inline const Aws::String& GetAfterCommitId() const{ return m_afterCommitId; }
/**
* <p>The full commit ID of the commit in the source branch that was the tip of the
* branch at the time the pull request was updated.</p>
*/
inline bool AfterCommitIdHasBeenSet() const { return m_afterCommitIdHasBeenSet; }
/**
* <p>The full commit ID of the commit in the source branch that was the tip of the
* branch at the time the pull request was updated.</p>
*/
inline void SetAfterCommitId(const Aws::String& value) { m_afterCommitIdHasBeenSet = true; m_afterCommitId = value; }
/**
* <p>The full commit ID of the commit in the source branch that was the tip of the
* branch at the time the pull request was updated.</p>
*/
inline void SetAfterCommitId(Aws::String&& value) { m_afterCommitIdHasBeenSet = true; m_afterCommitId = std::move(value); }
/**
* <p>The full commit ID of the commit in the source branch that was the tip of the
* branch at the time the pull request was updated.</p>
*/
inline void SetAfterCommitId(const char* value) { m_afterCommitIdHasBeenSet = true; m_afterCommitId.assign(value); }
/**
* <p>The full commit ID of the commit in the source branch that was the tip of the
* branch at the time the pull request was updated.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithAfterCommitId(const Aws::String& value) { SetAfterCommitId(value); return *this;}
/**
* <p>The full commit ID of the commit in the source branch that was the tip of the
* branch at the time the pull request was updated.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithAfterCommitId(Aws::String&& value) { SetAfterCommitId(std::move(value)); return *this;}
/**
* <p>The full commit ID of the commit in the source branch that was the tip of the
* branch at the time the pull request was updated.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithAfterCommitId(const char* value) { SetAfterCommitId(value); return *this;}
/**
* <p>The commit ID of the most recent commit that the source branch and the
* destination branch have in common.</p>
*/
inline const Aws::String& GetMergeBase() const{ return m_mergeBase; }
/**
* <p>The commit ID of the most recent commit that the source branch and the
* destination branch have in common.</p>
*/
inline bool MergeBaseHasBeenSet() const { return m_mergeBaseHasBeenSet; }
/**
* <p>The commit ID of the most recent commit that the source branch and the
* destination branch have in common.</p>
*/
inline void SetMergeBase(const Aws::String& value) { m_mergeBaseHasBeenSet = true; m_mergeBase = value; }
/**
* <p>The commit ID of the most recent commit that the source branch and the
* destination branch have in common.</p>
*/
inline void SetMergeBase(Aws::String&& value) { m_mergeBaseHasBeenSet = true; m_mergeBase = std::move(value); }
/**
* <p>The commit ID of the most recent commit that the source branch and the
* destination branch have in common.</p>
*/
inline void SetMergeBase(const char* value) { m_mergeBaseHasBeenSet = true; m_mergeBase.assign(value); }
/**
* <p>The commit ID of the most recent commit that the source branch and the
* destination branch have in common.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithMergeBase(const Aws::String& value) { SetMergeBase(value); return *this;}
/**
* <p>The commit ID of the most recent commit that the source branch and the
* destination branch have in common.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithMergeBase(Aws::String&& value) { SetMergeBase(std::move(value)); return *this;}
/**
* <p>The commit ID of the most recent commit that the source branch and the
* destination branch have in common.</p>
*/
inline PullRequestSourceReferenceUpdatedEventMetadata& WithMergeBase(const char* value) { SetMergeBase(value); return *this;}
private:
Aws::String m_repositoryName;
bool m_repositoryNameHasBeenSet;
Aws::String m_beforeCommitId;
bool m_beforeCommitIdHasBeenSet;
Aws::String m_afterCommitId;
bool m_afterCommitIdHasBeenSet;
Aws::String m_mergeBase;
bool m_mergeBaseHasBeenSet;
};
} // namespace Model
} // namespace CodeCommit
} // namespace Aws