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/Location.cpp

136 lines
3.5 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/directconnect/model/Location.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
{
Location::Location() :
m_locationCodeHasBeenSet(false),
m_locationNameHasBeenSet(false),
m_regionHasBeenSet(false),
m_availablePortSpeedsHasBeenSet(false),
m_availableProvidersHasBeenSet(false)
{
}
Location::Location(JsonView jsonValue) :
m_locationCodeHasBeenSet(false),
m_locationNameHasBeenSet(false),
m_regionHasBeenSet(false),
m_availablePortSpeedsHasBeenSet(false),
m_availableProvidersHasBeenSet(false)
{
*this = jsonValue;
}
Location& Location::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("locationCode"))
{
m_locationCode = jsonValue.GetString("locationCode");
m_locationCodeHasBeenSet = true;
}
if(jsonValue.ValueExists("locationName"))
{
m_locationName = jsonValue.GetString("locationName");
m_locationNameHasBeenSet = true;
}
if(jsonValue.ValueExists("region"))
{
m_region = jsonValue.GetString("region");
m_regionHasBeenSet = true;
}
if(jsonValue.ValueExists("availablePortSpeeds"))
{
Array<JsonView> availablePortSpeedsJsonList = jsonValue.GetArray("availablePortSpeeds");
for(unsigned availablePortSpeedsIndex = 0; availablePortSpeedsIndex < availablePortSpeedsJsonList.GetLength(); ++availablePortSpeedsIndex)
{
m_availablePortSpeeds.push_back(availablePortSpeedsJsonList[availablePortSpeedsIndex].AsString());
}
m_availablePortSpeedsHasBeenSet = true;
}
if(jsonValue.ValueExists("availableProviders"))
{
Array<JsonView> availableProvidersJsonList = jsonValue.GetArray("availableProviders");
for(unsigned availableProvidersIndex = 0; availableProvidersIndex < availableProvidersJsonList.GetLength(); ++availableProvidersIndex)
{
m_availableProviders.push_back(availableProvidersJsonList[availableProvidersIndex].AsString());
}
m_availableProvidersHasBeenSet = true;
}
return *this;
}
JsonValue Location::Jsonize() const
{
JsonValue payload;
if(m_locationCodeHasBeenSet)
{
payload.WithString("locationCode", m_locationCode);
}
if(m_locationNameHasBeenSet)
{
payload.WithString("locationName", m_locationName);
}
if(m_regionHasBeenSet)
{
payload.WithString("region", m_region);
}
if(m_availablePortSpeedsHasBeenSet)
{
Array<JsonValue> availablePortSpeedsJsonList(m_availablePortSpeeds.size());
for(unsigned availablePortSpeedsIndex = 0; availablePortSpeedsIndex < availablePortSpeedsJsonList.GetLength(); ++availablePortSpeedsIndex)
{
availablePortSpeedsJsonList[availablePortSpeedsIndex].AsString(m_availablePortSpeeds[availablePortSpeedsIndex]);
}
payload.WithArray("availablePortSpeeds", std::move(availablePortSpeedsJsonList));
}
if(m_availableProvidersHasBeenSet)
{
Array<JsonValue> availableProvidersJsonList(m_availableProviders.size());
for(unsigned availableProvidersIndex = 0; availableProvidersIndex < availableProvidersJsonList.GetLength(); ++availableProvidersIndex)
{
availableProvidersJsonList[availableProvidersIndex].AsString(m_availableProviders[availableProvidersIndex]);
}
payload.WithArray("availableProviders", std::move(availableProvidersJsonList));
}
return payload;
}
} // namespace Model
} // namespace DirectConnect
} // namespace Aws