102 lines
2.2 KiB
C++
102 lines
2.2 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/devicefarm/model/DeviceSelectionResult.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace DeviceFarm
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
DeviceSelectionResult::DeviceSelectionResult() :
|
|||
|
|
m_filtersHasBeenSet(false),
|
|||
|
|
m_matchedDevicesCount(0),
|
|||
|
|
m_matchedDevicesCountHasBeenSet(false),
|
|||
|
|
m_maxDevices(0),
|
|||
|
|
m_maxDevicesHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
DeviceSelectionResult::DeviceSelectionResult(JsonView jsonValue) :
|
|||
|
|
m_filtersHasBeenSet(false),
|
|||
|
|
m_matchedDevicesCount(0),
|
|||
|
|
m_matchedDevicesCountHasBeenSet(false),
|
|||
|
|
m_maxDevices(0),
|
|||
|
|
m_maxDevicesHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = jsonValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
DeviceSelectionResult& DeviceSelectionResult::operator =(JsonView jsonValue)
|
|||
|
|
{
|
|||
|
|
if(jsonValue.ValueExists("filters"))
|
|||
|
|
{
|
|||
|
|
Array<JsonView> filtersJsonList = jsonValue.GetArray("filters");
|
|||
|
|
for(unsigned filtersIndex = 0; filtersIndex < filtersJsonList.GetLength(); ++filtersIndex)
|
|||
|
|
{
|
|||
|
|
m_filters.push_back(filtersJsonList[filtersIndex].AsObject());
|
|||
|
|
}
|
|||
|
|
m_filtersHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("matchedDevicesCount"))
|
|||
|
|
{
|
|||
|
|
m_matchedDevicesCount = jsonValue.GetInteger("matchedDevicesCount");
|
|||
|
|
|
|||
|
|
m_matchedDevicesCountHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("maxDevices"))
|
|||
|
|
{
|
|||
|
|
m_maxDevices = jsonValue.GetInteger("maxDevices");
|
|||
|
|
|
|||
|
|
m_maxDevicesHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
JsonValue DeviceSelectionResult::Jsonize() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_filtersHasBeenSet)
|
|||
|
|
{
|
|||
|
|
Array<JsonValue> filtersJsonList(m_filters.size());
|
|||
|
|
for(unsigned filtersIndex = 0; filtersIndex < filtersJsonList.GetLength(); ++filtersIndex)
|
|||
|
|
{
|
|||
|
|
filtersJsonList[filtersIndex].AsObject(m_filters[filtersIndex].Jsonize());
|
|||
|
|
}
|
|||
|
|
payload.WithArray("filters", std::move(filtersJsonList));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_matchedDevicesCountHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithInteger("matchedDevicesCount", m_matchedDevicesCount);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_maxDevicesHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithInteger("maxDevices", m_maxDevices);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace DeviceFarm
|
|||
|
|
} // namespace Aws
|