This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-directconnect/source/model/Interconnect.cpp

266 lines
5.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/directconnect/model/Interconnect.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace DirectConnect
{
namespace Model
{
Interconnect::Interconnect() :
m_interconnectIdHasBeenSet(false),
m_interconnectNameHasBeenSet(false),
m_interconnectState(InterconnectState::NOT_SET),
m_interconnectStateHasBeenSet(false),
m_regionHasBeenSet(false),
m_locationHasBeenSet(false),
m_bandwidthHasBeenSet(false),
m_loaIssueTimeHasBeenSet(false),
m_lagIdHasBeenSet(false),
m_awsDeviceHasBeenSet(false),
m_jumboFrameCapable(false),
m_jumboFrameCapableHasBeenSet(false),
m_awsDeviceV2HasBeenSet(false),
m_hasLogicalRedundancy(HasLogicalRedundancy::NOT_SET),
m_hasLogicalRedundancyHasBeenSet(false),
m_tagsHasBeenSet(false),
m_providerNameHasBeenSet(false)
{
}
Interconnect::Interconnect(JsonView jsonValue) :
m_interconnectIdHasBeenSet(false),
m_interconnectNameHasBeenSet(false),
m_interconnectState(InterconnectState::NOT_SET),
m_interconnectStateHasBeenSet(false),
m_regionHasBeenSet(false),
m_locationHasBeenSet(false),
m_bandwidthHasBeenSet(false),
m_loaIssueTimeHasBeenSet(false),
m_lagIdHasBeenSet(false),
m_awsDeviceHasBeenSet(false),
m_jumboFrameCapable(false),
m_jumboFrameCapableHasBeenSet(false),
m_awsDeviceV2HasBeenSet(false),
m_hasLogicalRedundancy(HasLogicalRedundancy::NOT_SET),
m_hasLogicalRedundancyHasBeenSet(false),
m_tagsHasBeenSet(false),
m_providerNameHasBeenSet(false)
{
*this = jsonValue;
}
Interconnect& Interconnect::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("interconnectId"))
{
m_interconnectId = jsonValue.GetString("interconnectId");
m_interconnectIdHasBeenSet = true;
}
if(jsonValue.ValueExists("interconnectName"))
{
m_interconnectName = jsonValue.GetString("interconnectName");
m_interconnectNameHasBeenSet = true;
}
if(jsonValue.ValueExists("interconnectState"))
{
m_interconnectState = InterconnectStateMapper::GetInterconnectStateForName(jsonValue.GetString("interconnectState"));
m_interconnectStateHasBeenSet = true;
}
if(jsonValue.ValueExists("region"))
{
m_region = jsonValue.GetString("region");
m_regionHasBeenSet = true;
}
if(jsonValue.ValueExists("location"))
{
m_location = jsonValue.GetString("location");
m_locationHasBeenSet = true;
}
if(jsonValue.ValueExists("bandwidth"))
{
m_bandwidth = jsonValue.GetString("bandwidth");
m_bandwidthHasBeenSet = true;
}
if(jsonValue.ValueExists("loaIssueTime"))
{
m_loaIssueTime = jsonValue.GetDouble("loaIssueTime");
m_loaIssueTimeHasBeenSet = true;
}
if(jsonValue.ValueExists("lagId"))
{
m_lagId = jsonValue.GetString("lagId");
m_lagIdHasBeenSet = true;
}
if(jsonValue.ValueExists("awsDevice"))
{
m_awsDevice = jsonValue.GetString("awsDevice");
m_awsDeviceHasBeenSet = true;
}
if(jsonValue.ValueExists("jumboFrameCapable"))
{
m_jumboFrameCapable = jsonValue.GetBool("jumboFrameCapable");
m_jumboFrameCapableHasBeenSet = true;
}
if(jsonValue.ValueExists("awsDeviceV2"))
{
m_awsDeviceV2 = jsonValue.GetString("awsDeviceV2");
m_awsDeviceV2HasBeenSet = true;
}
if(jsonValue.ValueExists("hasLogicalRedundancy"))
{
m_hasLogicalRedundancy = HasLogicalRedundancyMapper::GetHasLogicalRedundancyForName(jsonValue.GetString("hasLogicalRedundancy"));
m_hasLogicalRedundancyHasBeenSet = true;
}
if(jsonValue.ValueExists("tags"))
{
Array<JsonView> tagsJsonList = jsonValue.GetArray("tags");
for(unsigned tagsIndex = 0; tagsIndex < tagsJsonList.GetLength(); ++tagsIndex)
{
m_tags.push_back(tagsJsonList[tagsIndex].AsObject());
}
m_tagsHasBeenSet = true;
}
if(jsonValue.ValueExists("providerName"))
{
m_providerName = jsonValue.GetString("providerName");
m_providerNameHasBeenSet = true;
}
return *this;
}
JsonValue Interconnect::Jsonize() const
{
JsonValue payload;
if(m_interconnectIdHasBeenSet)
{
payload.WithString("interconnectId", m_interconnectId);
}
if(m_interconnectNameHasBeenSet)
{
payload.WithString("interconnectName", m_interconnectName);
}
if(m_interconnectStateHasBeenSet)
{
payload.WithString("interconnectState", InterconnectStateMapper::GetNameForInterconnectState(m_interconnectState));
}
if(m_regionHasBeenSet)
{
payload.WithString("region", m_region);
}
if(m_locationHasBeenSet)
{
payload.WithString("location", m_location);
}
if(m_bandwidthHasBeenSet)
{
payload.WithString("bandwidth", m_bandwidth);
}
if(m_loaIssueTimeHasBeenSet)
{
payload.WithDouble("loaIssueTime", m_loaIssueTime.SecondsWithMSPrecision());
}
if(m_lagIdHasBeenSet)
{
payload.WithString("lagId", m_lagId);
}
if(m_awsDeviceHasBeenSet)
{
payload.WithString("awsDevice", m_awsDevice);
}
if(m_jumboFrameCapableHasBeenSet)
{
payload.WithBool("jumboFrameCapable", m_jumboFrameCapable);
}
if(m_awsDeviceV2HasBeenSet)
{
payload.WithString("awsDeviceV2", m_awsDeviceV2);
}
if(m_hasLogicalRedundancyHasBeenSet)
{
payload.WithString("hasLogicalRedundancy", HasLogicalRedundancyMapper::GetNameForHasLogicalRedundancy(m_hasLogicalRedundancy));
}
if(m_tagsHasBeenSet)
{
Array<JsonValue> tagsJsonList(m_tags.size());
for(unsigned tagsIndex = 0; tagsIndex < tagsJsonList.GetLength(); ++tagsIndex)
{
tagsJsonList[tagsIndex].AsObject(m_tags[tagsIndex].Jsonize());
}
payload.WithArray("tags", std::move(tagsJsonList));
}
if(m_providerNameHasBeenSet)
{
payload.WithString("providerName", m_providerName);
}
return payload;
}
} // namespace Model
} // namespace DirectConnect
} // namespace Aws