400 lines
13 KiB
C++
400 lines
13 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/appconfig/AppConfig_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/appconfig/model/GrowthType.h>
|
|
#include <aws/appconfig/model/DeploymentState.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace AppConfig
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Information about the deployment.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/DeploymentSummary">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_APPCONFIG_API DeploymentSummary
|
|
{
|
|
public:
|
|
DeploymentSummary();
|
|
DeploymentSummary(Aws::Utils::Json::JsonView jsonValue);
|
|
DeploymentSummary& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>The sequence number of the deployment.</p>
|
|
*/
|
|
inline int GetDeploymentNumber() const{ return m_deploymentNumber; }
|
|
|
|
/**
|
|
* <p>The sequence number of the deployment.</p>
|
|
*/
|
|
inline bool DeploymentNumberHasBeenSet() const { return m_deploymentNumberHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The sequence number of the deployment.</p>
|
|
*/
|
|
inline void SetDeploymentNumber(int value) { m_deploymentNumberHasBeenSet = true; m_deploymentNumber = value; }
|
|
|
|
/**
|
|
* <p>The sequence number of the deployment.</p>
|
|
*/
|
|
inline DeploymentSummary& WithDeploymentNumber(int value) { SetDeploymentNumber(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the configuration.</p>
|
|
*/
|
|
inline const Aws::String& GetConfigurationName() const{ return m_configurationName; }
|
|
|
|
/**
|
|
* <p>The name of the configuration.</p>
|
|
*/
|
|
inline bool ConfigurationNameHasBeenSet() const { return m_configurationNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the configuration.</p>
|
|
*/
|
|
inline void SetConfigurationName(const Aws::String& value) { m_configurationNameHasBeenSet = true; m_configurationName = value; }
|
|
|
|
/**
|
|
* <p>The name of the configuration.</p>
|
|
*/
|
|
inline void SetConfigurationName(Aws::String&& value) { m_configurationNameHasBeenSet = true; m_configurationName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the configuration.</p>
|
|
*/
|
|
inline void SetConfigurationName(const char* value) { m_configurationNameHasBeenSet = true; m_configurationName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the configuration.</p>
|
|
*/
|
|
inline DeploymentSummary& WithConfigurationName(const Aws::String& value) { SetConfigurationName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the configuration.</p>
|
|
*/
|
|
inline DeploymentSummary& WithConfigurationName(Aws::String&& value) { SetConfigurationName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the configuration.</p>
|
|
*/
|
|
inline DeploymentSummary& WithConfigurationName(const char* value) { SetConfigurationName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The version of the configuration.</p>
|
|
*/
|
|
inline const Aws::String& GetConfigurationVersion() const{ return m_configurationVersion; }
|
|
|
|
/**
|
|
* <p>The version of the configuration.</p>
|
|
*/
|
|
inline bool ConfigurationVersionHasBeenSet() const { return m_configurationVersionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The version of the configuration.</p>
|
|
*/
|
|
inline void SetConfigurationVersion(const Aws::String& value) { m_configurationVersionHasBeenSet = true; m_configurationVersion = value; }
|
|
|
|
/**
|
|
* <p>The version of the configuration.</p>
|
|
*/
|
|
inline void SetConfigurationVersion(Aws::String&& value) { m_configurationVersionHasBeenSet = true; m_configurationVersion = std::move(value); }
|
|
|
|
/**
|
|
* <p>The version of the configuration.</p>
|
|
*/
|
|
inline void SetConfigurationVersion(const char* value) { m_configurationVersionHasBeenSet = true; m_configurationVersion.assign(value); }
|
|
|
|
/**
|
|
* <p>The version of the configuration.</p>
|
|
*/
|
|
inline DeploymentSummary& WithConfigurationVersion(const Aws::String& value) { SetConfigurationVersion(value); return *this;}
|
|
|
|
/**
|
|
* <p>The version of the configuration.</p>
|
|
*/
|
|
inline DeploymentSummary& WithConfigurationVersion(Aws::String&& value) { SetConfigurationVersion(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The version of the configuration.</p>
|
|
*/
|
|
inline DeploymentSummary& WithConfigurationVersion(const char* value) { SetConfigurationVersion(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Total amount of time the deployment lasted.</p>
|
|
*/
|
|
inline int GetDeploymentDurationInMinutes() const{ return m_deploymentDurationInMinutes; }
|
|
|
|
/**
|
|
* <p>Total amount of time the deployment lasted.</p>
|
|
*/
|
|
inline bool DeploymentDurationInMinutesHasBeenSet() const { return m_deploymentDurationInMinutesHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Total amount of time the deployment lasted.</p>
|
|
*/
|
|
inline void SetDeploymentDurationInMinutes(int value) { m_deploymentDurationInMinutesHasBeenSet = true; m_deploymentDurationInMinutes = value; }
|
|
|
|
/**
|
|
* <p>Total amount of time the deployment lasted.</p>
|
|
*/
|
|
inline DeploymentSummary& WithDeploymentDurationInMinutes(int value) { SetDeploymentDurationInMinutes(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The algorithm used to define how percentage grows over time.</p>
|
|
*/
|
|
inline const GrowthType& GetGrowthType() const{ return m_growthType; }
|
|
|
|
/**
|
|
* <p>The algorithm used to define how percentage grows over time.</p>
|
|
*/
|
|
inline bool GrowthTypeHasBeenSet() const { return m_growthTypeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The algorithm used to define how percentage grows over time.</p>
|
|
*/
|
|
inline void SetGrowthType(const GrowthType& value) { m_growthTypeHasBeenSet = true; m_growthType = value; }
|
|
|
|
/**
|
|
* <p>The algorithm used to define how percentage grows over time.</p>
|
|
*/
|
|
inline void SetGrowthType(GrowthType&& value) { m_growthTypeHasBeenSet = true; m_growthType = std::move(value); }
|
|
|
|
/**
|
|
* <p>The algorithm used to define how percentage grows over time.</p>
|
|
*/
|
|
inline DeploymentSummary& WithGrowthType(const GrowthType& value) { SetGrowthType(value); return *this;}
|
|
|
|
/**
|
|
* <p>The algorithm used to define how percentage grows over time.</p>
|
|
*/
|
|
inline DeploymentSummary& WithGrowthType(GrowthType&& value) { SetGrowthType(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The percentage of targets to receive a deployed configuration during each
|
|
* interval.</p>
|
|
*/
|
|
inline double GetGrowthFactor() const{ return m_growthFactor; }
|
|
|
|
/**
|
|
* <p>The percentage of targets to receive a deployed configuration during each
|
|
* interval.</p>
|
|
*/
|
|
inline bool GrowthFactorHasBeenSet() const { return m_growthFactorHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The percentage of targets to receive a deployed configuration during each
|
|
* interval.</p>
|
|
*/
|
|
inline void SetGrowthFactor(double value) { m_growthFactorHasBeenSet = true; m_growthFactor = value; }
|
|
|
|
/**
|
|
* <p>The percentage of targets to receive a deployed configuration during each
|
|
* interval.</p>
|
|
*/
|
|
inline DeploymentSummary& WithGrowthFactor(double value) { SetGrowthFactor(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The amount of time AppConfig monitors for alarms before considering the
|
|
* deployment to be complete and no longer eligible for automatic roll back.</p>
|
|
*/
|
|
inline int GetFinalBakeTimeInMinutes() const{ return m_finalBakeTimeInMinutes; }
|
|
|
|
/**
|
|
* <p>The amount of time AppConfig monitors for alarms before considering the
|
|
* deployment to be complete and no longer eligible for automatic roll back.</p>
|
|
*/
|
|
inline bool FinalBakeTimeInMinutesHasBeenSet() const { return m_finalBakeTimeInMinutesHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The amount of time AppConfig monitors for alarms before considering the
|
|
* deployment to be complete and no longer eligible for automatic roll back.</p>
|
|
*/
|
|
inline void SetFinalBakeTimeInMinutes(int value) { m_finalBakeTimeInMinutesHasBeenSet = true; m_finalBakeTimeInMinutes = value; }
|
|
|
|
/**
|
|
* <p>The amount of time AppConfig monitors for alarms before considering the
|
|
* deployment to be complete and no longer eligible for automatic roll back.</p>
|
|
*/
|
|
inline DeploymentSummary& WithFinalBakeTimeInMinutes(int value) { SetFinalBakeTimeInMinutes(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The state of the deployment.</p>
|
|
*/
|
|
inline const DeploymentState& GetState() const{ return m_state; }
|
|
|
|
/**
|
|
* <p>The state of the deployment.</p>
|
|
*/
|
|
inline bool StateHasBeenSet() const { return m_stateHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The state of the deployment.</p>
|
|
*/
|
|
inline void SetState(const DeploymentState& value) { m_stateHasBeenSet = true; m_state = value; }
|
|
|
|
/**
|
|
* <p>The state of the deployment.</p>
|
|
*/
|
|
inline void SetState(DeploymentState&& value) { m_stateHasBeenSet = true; m_state = std::move(value); }
|
|
|
|
/**
|
|
* <p>The state of the deployment.</p>
|
|
*/
|
|
inline DeploymentSummary& WithState(const DeploymentState& value) { SetState(value); return *this;}
|
|
|
|
/**
|
|
* <p>The state of the deployment.</p>
|
|
*/
|
|
inline DeploymentSummary& WithState(DeploymentState&& value) { SetState(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The percentage of targets for which the deployment is available.</p>
|
|
*/
|
|
inline double GetPercentageComplete() const{ return m_percentageComplete; }
|
|
|
|
/**
|
|
* <p>The percentage of targets for which the deployment is available.</p>
|
|
*/
|
|
inline bool PercentageCompleteHasBeenSet() const { return m_percentageCompleteHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The percentage of targets for which the deployment is available.</p>
|
|
*/
|
|
inline void SetPercentageComplete(double value) { m_percentageCompleteHasBeenSet = true; m_percentageComplete = value; }
|
|
|
|
/**
|
|
* <p>The percentage of targets for which the deployment is available.</p>
|
|
*/
|
|
inline DeploymentSummary& WithPercentageComplete(double value) { SetPercentageComplete(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Time the deployment started.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetStartedAt() const{ return m_startedAt; }
|
|
|
|
/**
|
|
* <p>Time the deployment started.</p>
|
|
*/
|
|
inline bool StartedAtHasBeenSet() const { return m_startedAtHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Time the deployment started.</p>
|
|
*/
|
|
inline void SetStartedAt(const Aws::Utils::DateTime& value) { m_startedAtHasBeenSet = true; m_startedAt = value; }
|
|
|
|
/**
|
|
* <p>Time the deployment started.</p>
|
|
*/
|
|
inline void SetStartedAt(Aws::Utils::DateTime&& value) { m_startedAtHasBeenSet = true; m_startedAt = std::move(value); }
|
|
|
|
/**
|
|
* <p>Time the deployment started.</p>
|
|
*/
|
|
inline DeploymentSummary& WithStartedAt(const Aws::Utils::DateTime& value) { SetStartedAt(value); return *this;}
|
|
|
|
/**
|
|
* <p>Time the deployment started.</p>
|
|
*/
|
|
inline DeploymentSummary& WithStartedAt(Aws::Utils::DateTime&& value) { SetStartedAt(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>Time the deployment completed.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetCompletedAt() const{ return m_completedAt; }
|
|
|
|
/**
|
|
* <p>Time the deployment completed.</p>
|
|
*/
|
|
inline bool CompletedAtHasBeenSet() const { return m_completedAtHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Time the deployment completed.</p>
|
|
*/
|
|
inline void SetCompletedAt(const Aws::Utils::DateTime& value) { m_completedAtHasBeenSet = true; m_completedAt = value; }
|
|
|
|
/**
|
|
* <p>Time the deployment completed.</p>
|
|
*/
|
|
inline void SetCompletedAt(Aws::Utils::DateTime&& value) { m_completedAtHasBeenSet = true; m_completedAt = std::move(value); }
|
|
|
|
/**
|
|
* <p>Time the deployment completed.</p>
|
|
*/
|
|
inline DeploymentSummary& WithCompletedAt(const Aws::Utils::DateTime& value) { SetCompletedAt(value); return *this;}
|
|
|
|
/**
|
|
* <p>Time the deployment completed.</p>
|
|
*/
|
|
inline DeploymentSummary& WithCompletedAt(Aws::Utils::DateTime&& value) { SetCompletedAt(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
int m_deploymentNumber;
|
|
bool m_deploymentNumberHasBeenSet;
|
|
|
|
Aws::String m_configurationName;
|
|
bool m_configurationNameHasBeenSet;
|
|
|
|
Aws::String m_configurationVersion;
|
|
bool m_configurationVersionHasBeenSet;
|
|
|
|
int m_deploymentDurationInMinutes;
|
|
bool m_deploymentDurationInMinutesHasBeenSet;
|
|
|
|
GrowthType m_growthType;
|
|
bool m_growthTypeHasBeenSet;
|
|
|
|
double m_growthFactor;
|
|
bool m_growthFactorHasBeenSet;
|
|
|
|
int m_finalBakeTimeInMinutes;
|
|
bool m_finalBakeTimeInMinutesHasBeenSet;
|
|
|
|
DeploymentState m_state;
|
|
bool m_stateHasBeenSet;
|
|
|
|
double m_percentageComplete;
|
|
bool m_percentageCompleteHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_startedAt;
|
|
bool m_startedAtHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_completedAt;
|
|
bool m_completedAtHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace AppConfig
|
|
} // namespace Aws
|