125 lines
2.6 KiB
C++
125 lines
2.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/globalaccelerator/model/EndpointDescription.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace GlobalAccelerator
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
EndpointDescription::EndpointDescription() :
|
|
m_endpointIdHasBeenSet(false),
|
|
m_weight(0),
|
|
m_weightHasBeenSet(false),
|
|
m_healthState(HealthState::NOT_SET),
|
|
m_healthStateHasBeenSet(false),
|
|
m_healthReasonHasBeenSet(false),
|
|
m_clientIPPreservationEnabled(false),
|
|
m_clientIPPreservationEnabledHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
EndpointDescription::EndpointDescription(JsonView jsonValue) :
|
|
m_endpointIdHasBeenSet(false),
|
|
m_weight(0),
|
|
m_weightHasBeenSet(false),
|
|
m_healthState(HealthState::NOT_SET),
|
|
m_healthStateHasBeenSet(false),
|
|
m_healthReasonHasBeenSet(false),
|
|
m_clientIPPreservationEnabled(false),
|
|
m_clientIPPreservationEnabledHasBeenSet(false)
|
|
{
|
|
*this = jsonValue;
|
|
}
|
|
|
|
EndpointDescription& EndpointDescription::operator =(JsonView jsonValue)
|
|
{
|
|
if(jsonValue.ValueExists("EndpointId"))
|
|
{
|
|
m_endpointId = jsonValue.GetString("EndpointId");
|
|
|
|
m_endpointIdHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("Weight"))
|
|
{
|
|
m_weight = jsonValue.GetInteger("Weight");
|
|
|
|
m_weightHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("HealthState"))
|
|
{
|
|
m_healthState = HealthStateMapper::GetHealthStateForName(jsonValue.GetString("HealthState"));
|
|
|
|
m_healthStateHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("HealthReason"))
|
|
{
|
|
m_healthReason = jsonValue.GetString("HealthReason");
|
|
|
|
m_healthReasonHasBeenSet = true;
|
|
}
|
|
|
|
if(jsonValue.ValueExists("ClientIPPreservationEnabled"))
|
|
{
|
|
m_clientIPPreservationEnabled = jsonValue.GetBool("ClientIPPreservationEnabled");
|
|
|
|
m_clientIPPreservationEnabledHasBeenSet = true;
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
JsonValue EndpointDescription::Jsonize() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_endpointIdHasBeenSet)
|
|
{
|
|
payload.WithString("EndpointId", m_endpointId);
|
|
|
|
}
|
|
|
|
if(m_weightHasBeenSet)
|
|
{
|
|
payload.WithInteger("Weight", m_weight);
|
|
|
|
}
|
|
|
|
if(m_healthStateHasBeenSet)
|
|
{
|
|
payload.WithString("HealthState", HealthStateMapper::GetNameForHealthState(m_healthState));
|
|
}
|
|
|
|
if(m_healthReasonHasBeenSet)
|
|
{
|
|
payload.WithString("HealthReason", m_healthReason);
|
|
|
|
}
|
|
|
|
if(m_clientIPPreservationEnabledHasBeenSet)
|
|
{
|
|
payload.WithBool("ClientIPPreservationEnabled", m_clientIPPreservationEnabled);
|
|
|
|
}
|
|
|
|
return payload;
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace GlobalAccelerator
|
|
} // namespace Aws
|