535 lines
14 KiB
C++
535 lines
14 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/codebuild/model/BuildBatch.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace CodeBuild
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
BuildBatch::BuildBatch() :
|
|||
|
|
m_idHasBeenSet(false),
|
|||
|
|
m_arnHasBeenSet(false),
|
|||
|
|
m_startTimeHasBeenSet(false),
|
|||
|
|
m_endTimeHasBeenSet(false),
|
|||
|
|
m_currentPhaseHasBeenSet(false),
|
|||
|
|
m_buildBatchStatus(StatusType::NOT_SET),
|
|||
|
|
m_buildBatchStatusHasBeenSet(false),
|
|||
|
|
m_sourceVersionHasBeenSet(false),
|
|||
|
|
m_resolvedSourceVersionHasBeenSet(false),
|
|||
|
|
m_projectNameHasBeenSet(false),
|
|||
|
|
m_phasesHasBeenSet(false),
|
|||
|
|
m_sourceHasBeenSet(false),
|
|||
|
|
m_secondarySourcesHasBeenSet(false),
|
|||
|
|
m_secondarySourceVersionsHasBeenSet(false),
|
|||
|
|
m_artifactsHasBeenSet(false),
|
|||
|
|
m_secondaryArtifactsHasBeenSet(false),
|
|||
|
|
m_cacheHasBeenSet(false),
|
|||
|
|
m_environmentHasBeenSet(false),
|
|||
|
|
m_serviceRoleHasBeenSet(false),
|
|||
|
|
m_logConfigHasBeenSet(false),
|
|||
|
|
m_buildTimeoutInMinutes(0),
|
|||
|
|
m_buildTimeoutInMinutesHasBeenSet(false),
|
|||
|
|
m_queuedTimeoutInMinutes(0),
|
|||
|
|
m_queuedTimeoutInMinutesHasBeenSet(false),
|
|||
|
|
m_complete(false),
|
|||
|
|
m_completeHasBeenSet(false),
|
|||
|
|
m_initiatorHasBeenSet(false),
|
|||
|
|
m_vpcConfigHasBeenSet(false),
|
|||
|
|
m_encryptionKeyHasBeenSet(false),
|
|||
|
|
m_buildBatchNumber(0),
|
|||
|
|
m_buildBatchNumberHasBeenSet(false),
|
|||
|
|
m_fileSystemLocationsHasBeenSet(false),
|
|||
|
|
m_buildBatchConfigHasBeenSet(false),
|
|||
|
|
m_buildGroupsHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
BuildBatch::BuildBatch(JsonView jsonValue) :
|
|||
|
|
m_idHasBeenSet(false),
|
|||
|
|
m_arnHasBeenSet(false),
|
|||
|
|
m_startTimeHasBeenSet(false),
|
|||
|
|
m_endTimeHasBeenSet(false),
|
|||
|
|
m_currentPhaseHasBeenSet(false),
|
|||
|
|
m_buildBatchStatus(StatusType::NOT_SET),
|
|||
|
|
m_buildBatchStatusHasBeenSet(false),
|
|||
|
|
m_sourceVersionHasBeenSet(false),
|
|||
|
|
m_resolvedSourceVersionHasBeenSet(false),
|
|||
|
|
m_projectNameHasBeenSet(false),
|
|||
|
|
m_phasesHasBeenSet(false),
|
|||
|
|
m_sourceHasBeenSet(false),
|
|||
|
|
m_secondarySourcesHasBeenSet(false),
|
|||
|
|
m_secondarySourceVersionsHasBeenSet(false),
|
|||
|
|
m_artifactsHasBeenSet(false),
|
|||
|
|
m_secondaryArtifactsHasBeenSet(false),
|
|||
|
|
m_cacheHasBeenSet(false),
|
|||
|
|
m_environmentHasBeenSet(false),
|
|||
|
|
m_serviceRoleHasBeenSet(false),
|
|||
|
|
m_logConfigHasBeenSet(false),
|
|||
|
|
m_buildTimeoutInMinutes(0),
|
|||
|
|
m_buildTimeoutInMinutesHasBeenSet(false),
|
|||
|
|
m_queuedTimeoutInMinutes(0),
|
|||
|
|
m_queuedTimeoutInMinutesHasBeenSet(false),
|
|||
|
|
m_complete(false),
|
|||
|
|
m_completeHasBeenSet(false),
|
|||
|
|
m_initiatorHasBeenSet(false),
|
|||
|
|
m_vpcConfigHasBeenSet(false),
|
|||
|
|
m_encryptionKeyHasBeenSet(false),
|
|||
|
|
m_buildBatchNumber(0),
|
|||
|
|
m_buildBatchNumberHasBeenSet(false),
|
|||
|
|
m_fileSystemLocationsHasBeenSet(false),
|
|||
|
|
m_buildBatchConfigHasBeenSet(false),
|
|||
|
|
m_buildGroupsHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = jsonValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
BuildBatch& BuildBatch::operator =(JsonView jsonValue)
|
|||
|
|
{
|
|||
|
|
if(jsonValue.ValueExists("id"))
|
|||
|
|
{
|
|||
|
|
m_id = jsonValue.GetString("id");
|
|||
|
|
|
|||
|
|
m_idHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("arn"))
|
|||
|
|
{
|
|||
|
|
m_arn = jsonValue.GetString("arn");
|
|||
|
|
|
|||
|
|
m_arnHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("startTime"))
|
|||
|
|
{
|
|||
|
|
m_startTime = jsonValue.GetDouble("startTime");
|
|||
|
|
|
|||
|
|
m_startTimeHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("endTime"))
|
|||
|
|
{
|
|||
|
|
m_endTime = jsonValue.GetDouble("endTime");
|
|||
|
|
|
|||
|
|
m_endTimeHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("currentPhase"))
|
|||
|
|
{
|
|||
|
|
m_currentPhase = jsonValue.GetString("currentPhase");
|
|||
|
|
|
|||
|
|
m_currentPhaseHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("buildBatchStatus"))
|
|||
|
|
{
|
|||
|
|
m_buildBatchStatus = StatusTypeMapper::GetStatusTypeForName(jsonValue.GetString("buildBatchStatus"));
|
|||
|
|
|
|||
|
|
m_buildBatchStatusHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("sourceVersion"))
|
|||
|
|
{
|
|||
|
|
m_sourceVersion = jsonValue.GetString("sourceVersion");
|
|||
|
|
|
|||
|
|
m_sourceVersionHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("resolvedSourceVersion"))
|
|||
|
|
{
|
|||
|
|
m_resolvedSourceVersion = jsonValue.GetString("resolvedSourceVersion");
|
|||
|
|
|
|||
|
|
m_resolvedSourceVersionHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("projectName"))
|
|||
|
|
{
|
|||
|
|
m_projectName = jsonValue.GetString("projectName");
|
|||
|
|
|
|||
|
|
m_projectNameHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("phases"))
|
|||
|
|
{
|
|||
|
|
Array<JsonView> phasesJsonList = jsonValue.GetArray("phases");
|
|||
|
|
for(unsigned phasesIndex = 0; phasesIndex < phasesJsonList.GetLength(); ++phasesIndex)
|
|||
|
|
{
|
|||
|
|
m_phases.push_back(phasesJsonList[phasesIndex].AsObject());
|
|||
|
|
}
|
|||
|
|
m_phasesHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("source"))
|
|||
|
|
{
|
|||
|
|
m_source = jsonValue.GetObject("source");
|
|||
|
|
|
|||
|
|
m_sourceHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("secondarySources"))
|
|||
|
|
{
|
|||
|
|
Array<JsonView> secondarySourcesJsonList = jsonValue.GetArray("secondarySources");
|
|||
|
|
for(unsigned secondarySourcesIndex = 0; secondarySourcesIndex < secondarySourcesJsonList.GetLength(); ++secondarySourcesIndex)
|
|||
|
|
{
|
|||
|
|
m_secondarySources.push_back(secondarySourcesJsonList[secondarySourcesIndex].AsObject());
|
|||
|
|
}
|
|||
|
|
m_secondarySourcesHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("secondarySourceVersions"))
|
|||
|
|
{
|
|||
|
|
Array<JsonView> secondarySourceVersionsJsonList = jsonValue.GetArray("secondarySourceVersions");
|
|||
|
|
for(unsigned secondarySourceVersionsIndex = 0; secondarySourceVersionsIndex < secondarySourceVersionsJsonList.GetLength(); ++secondarySourceVersionsIndex)
|
|||
|
|
{
|
|||
|
|
m_secondarySourceVersions.push_back(secondarySourceVersionsJsonList[secondarySourceVersionsIndex].AsObject());
|
|||
|
|
}
|
|||
|
|
m_secondarySourceVersionsHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("artifacts"))
|
|||
|
|
{
|
|||
|
|
m_artifacts = jsonValue.GetObject("artifacts");
|
|||
|
|
|
|||
|
|
m_artifactsHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("secondaryArtifacts"))
|
|||
|
|
{
|
|||
|
|
Array<JsonView> secondaryArtifactsJsonList = jsonValue.GetArray("secondaryArtifacts");
|
|||
|
|
for(unsigned secondaryArtifactsIndex = 0; secondaryArtifactsIndex < secondaryArtifactsJsonList.GetLength(); ++secondaryArtifactsIndex)
|
|||
|
|
{
|
|||
|
|
m_secondaryArtifacts.push_back(secondaryArtifactsJsonList[secondaryArtifactsIndex].AsObject());
|
|||
|
|
}
|
|||
|
|
m_secondaryArtifactsHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("cache"))
|
|||
|
|
{
|
|||
|
|
m_cache = jsonValue.GetObject("cache");
|
|||
|
|
|
|||
|
|
m_cacheHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("environment"))
|
|||
|
|
{
|
|||
|
|
m_environment = jsonValue.GetObject("environment");
|
|||
|
|
|
|||
|
|
m_environmentHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("serviceRole"))
|
|||
|
|
{
|
|||
|
|
m_serviceRole = jsonValue.GetString("serviceRole");
|
|||
|
|
|
|||
|
|
m_serviceRoleHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("logConfig"))
|
|||
|
|
{
|
|||
|
|
m_logConfig = jsonValue.GetObject("logConfig");
|
|||
|
|
|
|||
|
|
m_logConfigHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("buildTimeoutInMinutes"))
|
|||
|
|
{
|
|||
|
|
m_buildTimeoutInMinutes = jsonValue.GetInteger("buildTimeoutInMinutes");
|
|||
|
|
|
|||
|
|
m_buildTimeoutInMinutesHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("queuedTimeoutInMinutes"))
|
|||
|
|
{
|
|||
|
|
m_queuedTimeoutInMinutes = jsonValue.GetInteger("queuedTimeoutInMinutes");
|
|||
|
|
|
|||
|
|
m_queuedTimeoutInMinutesHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("complete"))
|
|||
|
|
{
|
|||
|
|
m_complete = jsonValue.GetBool("complete");
|
|||
|
|
|
|||
|
|
m_completeHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("initiator"))
|
|||
|
|
{
|
|||
|
|
m_initiator = jsonValue.GetString("initiator");
|
|||
|
|
|
|||
|
|
m_initiatorHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("vpcConfig"))
|
|||
|
|
{
|
|||
|
|
m_vpcConfig = jsonValue.GetObject("vpcConfig");
|
|||
|
|
|
|||
|
|
m_vpcConfigHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("encryptionKey"))
|
|||
|
|
{
|
|||
|
|
m_encryptionKey = jsonValue.GetString("encryptionKey");
|
|||
|
|
|
|||
|
|
m_encryptionKeyHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("buildBatchNumber"))
|
|||
|
|
{
|
|||
|
|
m_buildBatchNumber = jsonValue.GetInt64("buildBatchNumber");
|
|||
|
|
|
|||
|
|
m_buildBatchNumberHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("fileSystemLocations"))
|
|||
|
|
{
|
|||
|
|
Array<JsonView> fileSystemLocationsJsonList = jsonValue.GetArray("fileSystemLocations");
|
|||
|
|
for(unsigned fileSystemLocationsIndex = 0; fileSystemLocationsIndex < fileSystemLocationsJsonList.GetLength(); ++fileSystemLocationsIndex)
|
|||
|
|
{
|
|||
|
|
m_fileSystemLocations.push_back(fileSystemLocationsJsonList[fileSystemLocationsIndex].AsObject());
|
|||
|
|
}
|
|||
|
|
m_fileSystemLocationsHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("buildBatchConfig"))
|
|||
|
|
{
|
|||
|
|
m_buildBatchConfig = jsonValue.GetObject("buildBatchConfig");
|
|||
|
|
|
|||
|
|
m_buildBatchConfigHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("buildGroups"))
|
|||
|
|
{
|
|||
|
|
Array<JsonView> buildGroupsJsonList = jsonValue.GetArray("buildGroups");
|
|||
|
|
for(unsigned buildGroupsIndex = 0; buildGroupsIndex < buildGroupsJsonList.GetLength(); ++buildGroupsIndex)
|
|||
|
|
{
|
|||
|
|
m_buildGroups.push_back(buildGroupsJsonList[buildGroupsIndex].AsObject());
|
|||
|
|
}
|
|||
|
|
m_buildGroupsHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
JsonValue BuildBatch::Jsonize() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_idHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("id", m_id);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_arnHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("arn", m_arn);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_startTimeHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithDouble("startTime", m_startTime.SecondsWithMSPrecision());
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_endTimeHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithDouble("endTime", m_endTime.SecondsWithMSPrecision());
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_currentPhaseHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("currentPhase", m_currentPhase);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_buildBatchStatusHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("buildBatchStatus", StatusTypeMapper::GetNameForStatusType(m_buildBatchStatus));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_sourceVersionHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("sourceVersion", m_sourceVersion);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_resolvedSourceVersionHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("resolvedSourceVersion", m_resolvedSourceVersion);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_projectNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("projectName", m_projectName);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_phasesHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> phasesJsonList(m_phases.size());
|
|||
|
|
for(unsigned phasesIndex = 0; phasesIndex < phasesJsonList.GetLength(); ++phasesIndex)
|
|||
|
|
{
|
|||
|
|
phasesJsonList[phasesIndex].AsObject(m_phases[phasesIndex].Jsonize());
|
|||
|
|
}
|
|||
|
|
payload.WithArray("phases", std::move(phasesJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_sourceHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("source", m_source.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_secondarySourcesHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> secondarySourcesJsonList(m_secondarySources.size());
|
|||
|
|
for(unsigned secondarySourcesIndex = 0; secondarySourcesIndex < secondarySourcesJsonList.GetLength(); ++secondarySourcesIndex)
|
|||
|
|
{
|
|||
|
|
secondarySourcesJsonList[secondarySourcesIndex].AsObject(m_secondarySources[secondarySourcesIndex].Jsonize());
|
|||
|
|
}
|
|||
|
|
payload.WithArray("secondarySources", std::move(secondarySourcesJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_secondarySourceVersionsHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> secondarySourceVersionsJsonList(m_secondarySourceVersions.size());
|
|||
|
|
for(unsigned secondarySourceVersionsIndex = 0; secondarySourceVersionsIndex < secondarySourceVersionsJsonList.GetLength(); ++secondarySourceVersionsIndex)
|
|||
|
|
{
|
|||
|
|
secondarySourceVersionsJsonList[secondarySourceVersionsIndex].AsObject(m_secondarySourceVersions[secondarySourceVersionsIndex].Jsonize());
|
|||
|
|
}
|
|||
|
|
payload.WithArray("secondarySourceVersions", std::move(secondarySourceVersionsJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_artifactsHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("artifacts", m_artifacts.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_secondaryArtifactsHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> secondaryArtifactsJsonList(m_secondaryArtifacts.size());
|
|||
|
|
for(unsigned secondaryArtifactsIndex = 0; secondaryArtifactsIndex < secondaryArtifactsJsonList.GetLength(); ++secondaryArtifactsIndex)
|
|||
|
|
{
|
|||
|
|
secondaryArtifactsJsonList[secondaryArtifactsIndex].AsObject(m_secondaryArtifacts[secondaryArtifactsIndex].Jsonize());
|
|||
|
|
}
|
|||
|
|
payload.WithArray("secondaryArtifacts", std::move(secondaryArtifactsJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_cacheHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("cache", m_cache.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_environmentHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("environment", m_environment.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_serviceRoleHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("serviceRole", m_serviceRole);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_logConfigHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("logConfig", m_logConfig.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_buildTimeoutInMinutesHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithInteger("buildTimeoutInMinutes", m_buildTimeoutInMinutes);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_queuedTimeoutInMinutesHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithInteger("queuedTimeoutInMinutes", m_queuedTimeoutInMinutes);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_completeHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithBool("complete", m_complete);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_initiatorHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("initiator", m_initiator);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_vpcConfigHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("vpcConfig", m_vpcConfig.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_encryptionKeyHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("encryptionKey", m_encryptionKey);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_buildBatchNumberHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithInt64("buildBatchNumber", m_buildBatchNumber);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_fileSystemLocationsHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> fileSystemLocationsJsonList(m_fileSystemLocations.size());
|
|||
|
|
for(unsigned fileSystemLocationsIndex = 0; fileSystemLocationsIndex < fileSystemLocationsJsonList.GetLength(); ++fileSystemLocationsIndex)
|
|||
|
|
{
|
|||
|
|
fileSystemLocationsJsonList[fileSystemLocationsIndex].AsObject(m_fileSystemLocations[fileSystemLocationsIndex].Jsonize());
|
|||
|
|
}
|
|||
|
|
payload.WithArray("fileSystemLocations", std::move(fileSystemLocationsJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_buildBatchConfigHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("buildBatchConfig", m_buildBatchConfig.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_buildGroupsHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> buildGroupsJsonList(m_buildGroups.size());
|
|||
|
|
for(unsigned buildGroupsIndex = 0; buildGroupsIndex < buildGroupsJsonList.GetLength(); ++buildGroupsIndex)
|
|||
|
|
{
|
|||
|
|
buildGroupsJsonList[buildGroupsIndex].AsObject(m_buildGroups[buildGroupsIndex].Jsonize());
|
|||
|
|
}
|
|||
|
|
payload.WithArray("buildGroups", std::move(buildGroupsJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace CodeBuild
|
|||
|
|
} // namespace Aws
|