109 lines
2.6 KiB
C++
109 lines
2.6 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/codedeploy/model/CreateDeploymentRequest.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::CodeDeploy::Model;
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
CreateDeploymentRequest::CreateDeploymentRequest() :
|
|||
|
|
m_applicationNameHasBeenSet(false),
|
|||
|
|
m_deploymentGroupNameHasBeenSet(false),
|
|||
|
|
m_revisionHasBeenSet(false),
|
|||
|
|
m_deploymentConfigNameHasBeenSet(false),
|
|||
|
|
m_descriptionHasBeenSet(false),
|
|||
|
|
m_ignoreApplicationStopFailures(false),
|
|||
|
|
m_ignoreApplicationStopFailuresHasBeenSet(false),
|
|||
|
|
m_targetInstancesHasBeenSet(false),
|
|||
|
|
m_autoRollbackConfigurationHasBeenSet(false),
|
|||
|
|
m_updateOutdatedInstancesOnly(false),
|
|||
|
|
m_updateOutdatedInstancesOnlyHasBeenSet(false),
|
|||
|
|
m_fileExistsBehavior(FileExistsBehavior::NOT_SET),
|
|||
|
|
m_fileExistsBehaviorHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::String CreateDeploymentRequest::SerializePayload() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_applicationNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("applicationName", m_applicationName);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_deploymentGroupNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("deploymentGroupName", m_deploymentGroupName);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_revisionHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("revision", m_revision.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_deploymentConfigNameHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("deploymentConfigName", m_deploymentConfigName);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_descriptionHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("description", m_description);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_ignoreApplicationStopFailuresHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithBool("ignoreApplicationStopFailures", m_ignoreApplicationStopFailures);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_targetInstancesHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("targetInstances", m_targetInstances.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_autoRollbackConfigurationHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("autoRollbackConfiguration", m_autoRollbackConfiguration.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_updateOutdatedInstancesOnlyHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithBool("updateOutdatedInstancesOnly", m_updateOutdatedInstancesOnly);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_fileExistsBehaviorHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithString("fileExistsBehavior", FileExistsBehaviorMapper::GetNameForFileExistsBehavior(m_fileExistsBehavior));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload.View().WriteReadable();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection CreateDeploymentRequest::GetRequestSpecificHeaders() const
|
|||
|
|
{
|
|||
|
|
Aws::Http::HeaderValueCollection headers;
|
|||
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "CodeDeploy_20141006.CreateDeployment"));
|
|||
|
|
return headers;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|