150 lines
3.1 KiB
C++
150 lines
3.1 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/codecommit/model/PullRequestTarget.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace CodeCommit
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
PullRequestTarget::PullRequestTarget() :
|
|||
|
|
m_repositoryNameHasBeenSet(false),
|
|||
|
|
m_sourceReferenceHasBeenSet(false),
|
|||
|
|
m_destinationReferenceHasBeenSet(false),
|
|||
|
|
m_destinationCommitHasBeenSet(false),
|
|||
|
|
m_sourceCommitHasBeenSet(false),
|
|||
|
|
m_mergeBaseHasBeenSet(false),
|
|||
|
|
m_mergeMetadataHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
PullRequestTarget::PullRequestTarget(JsonView jsonValue) :
|
|||
|
|
m_repositoryNameHasBeenSet(false),
|
|||
|
|
m_sourceReferenceHasBeenSet(false),
|
|||
|
|
m_destinationReferenceHasBeenSet(false),
|
|||
|
|
m_destinationCommitHasBeenSet(false),
|
|||
|
|
m_sourceCommitHasBeenSet(false),
|
|||
|
|
m_mergeBaseHasBeenSet(false),
|
|||
|
|
m_mergeMetadataHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = jsonValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
PullRequestTarget& PullRequestTarget::operator =(JsonView jsonValue)
|
|||
|
|
{
|
|||
|
|
if(jsonValue.ValueExists("repositoryName"))
|
|||
|
|
{
|
|||
|
|
m_repositoryName = jsonValue.GetString("repositoryName");
|
|||
|
|
|
|||
|
|
m_repositoryNameHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("sourceReference"))
|
|||
|
|
{
|
|||
|
|
m_sourceReference = jsonValue.GetString("sourceReference");
|
|||
|
|
|
|||
|
|
m_sourceReferenceHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("destinationReference"))
|
|||
|
|
{
|
|||
|
|
m_destinationReference = jsonValue.GetString("destinationReference");
|
|||
|
|
|
|||
|
|
m_destinationReferenceHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("destinationCommit"))
|
|||
|
|
{
|
|||
|
|
m_destinationCommit = jsonValue.GetString("destinationCommit");
|
|||
|
|
|
|||
|
|
m_destinationCommitHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("sourceCommit"))
|
|||
|
|
{
|
|||
|
|
m_sourceCommit = jsonValue.GetString("sourceCommit");
|
|||
|
|
|
|||
|
|
m_sourceCommitHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("mergeBase"))
|
|||
|
|
{
|
|||
|
|
m_mergeBase = jsonValue.GetString("mergeBase");
|
|||
|
|
|
|||
|
|
m_mergeBaseHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("mergeMetadata"))
|
|||
|
|
{
|
|||
|
|
m_mergeMetadata = jsonValue.GetObject("mergeMetadata");
|
|||
|
|
|
|||
|
|
m_mergeMetadataHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
JsonValue PullRequestTarget::Jsonize() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_repositoryNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("repositoryName", m_repositoryName);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_sourceReferenceHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("sourceReference", m_sourceReference);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_destinationReferenceHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("destinationReference", m_destinationReference);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_destinationCommitHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("destinationCommit", m_destinationCommit);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_sourceCommitHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("sourceCommit", m_sourceCommit);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_mergeBaseHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("mergeBase", m_mergeBase);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_mergeMetadataHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("mergeMetadata", m_mergeMetadata.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace CodeCommit
|
|||
|
|
} // namespace Aws
|