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

218 lines
4.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/networkmanager/model/Link.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace NetworkManager
{
namespace Model
{
Link::Link() :
m_linkIdHasBeenSet(false),
m_linkArnHasBeenSet(false),
m_globalNetworkIdHasBeenSet(false),
m_siteIdHasBeenSet(false),
m_descriptionHasBeenSet(false),
m_typeHasBeenSet(false),
m_bandwidthHasBeenSet(false),
m_providerHasBeenSet(false),
m_createdAtHasBeenSet(false),
m_state(LinkState::NOT_SET),
m_stateHasBeenSet(false),
m_tagsHasBeenSet(false)
{
}
Link::Link(JsonView jsonValue) :
m_linkIdHasBeenSet(false),
m_linkArnHasBeenSet(false),
m_globalNetworkIdHasBeenSet(false),
m_siteIdHasBeenSet(false),
m_descriptionHasBeenSet(false),
m_typeHasBeenSet(false),
m_bandwidthHasBeenSet(false),
m_providerHasBeenSet(false),
m_createdAtHasBeenSet(false),
m_state(LinkState::NOT_SET),
m_stateHasBeenSet(false),
m_tagsHasBeenSet(false)
{
*this = jsonValue;
}
Link& Link::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("LinkId"))
{
m_linkId = jsonValue.GetString("LinkId");
m_linkIdHasBeenSet = true;
}
if(jsonValue.ValueExists("LinkArn"))
{
m_linkArn = jsonValue.GetString("LinkArn");
m_linkArnHasBeenSet = true;
}
if(jsonValue.ValueExists("GlobalNetworkId"))
{
m_globalNetworkId = jsonValue.GetString("GlobalNetworkId");
m_globalNetworkIdHasBeenSet = true;
}
if(jsonValue.ValueExists("SiteId"))
{
m_siteId = jsonValue.GetString("SiteId");
m_siteIdHasBeenSet = true;
}
if(jsonValue.ValueExists("Description"))
{
m_description = jsonValue.GetString("Description");
m_descriptionHasBeenSet = true;
}
if(jsonValue.ValueExists("Type"))
{
m_type = jsonValue.GetString("Type");
m_typeHasBeenSet = true;
}
if(jsonValue.ValueExists("Bandwidth"))
{
m_bandwidth = jsonValue.GetObject("Bandwidth");
m_bandwidthHasBeenSet = true;
}
if(jsonValue.ValueExists("Provider"))
{
m_provider = jsonValue.GetString("Provider");
m_providerHasBeenSet = true;
}
if(jsonValue.ValueExists("CreatedAt"))
{
m_createdAt = jsonValue.GetDouble("CreatedAt");
m_createdAtHasBeenSet = true;
}
if(jsonValue.ValueExists("State"))
{
m_state = LinkStateMapper::GetLinkStateForName(jsonValue.GetString("State"));
m_stateHasBeenSet = 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;
}
return *this;
}
JsonValue Link::Jsonize() const
{
JsonValue payload;
if(m_linkIdHasBeenSet)
{
payload.WithString("LinkId", m_linkId);
}
if(m_linkArnHasBeenSet)
{
payload.WithString("LinkArn", m_linkArn);
}
if(m_globalNetworkIdHasBeenSet)
{
payload.WithString("GlobalNetworkId", m_globalNetworkId);
}
if(m_siteIdHasBeenSet)
{
payload.WithString("SiteId", m_siteId);
}
if(m_descriptionHasBeenSet)
{
payload.WithString("Description", m_description);
}
if(m_typeHasBeenSet)
{
payload.WithString("Type", m_type);
}
if(m_bandwidthHasBeenSet)
{
payload.WithObject("Bandwidth", m_bandwidth.Jsonize());
}
if(m_providerHasBeenSet)
{
payload.WithString("Provider", m_provider);
}
if(m_createdAtHasBeenSet)
{
payload.WithDouble("CreatedAt", m_createdAt.SecondsWithMSPrecision());
}
if(m_stateHasBeenSet)
{
payload.WithString("State", LinkStateMapper::GetNameForLinkState(m_state));
}
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));
}
return payload;
}
} // namespace Model
} // namespace NetworkManager
} // namespace Aws