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-devicefarm/source/model/DeviceSelectionConfiguration.cpp

85 lines
1.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/devicefarm/model/DeviceSelectionConfiguration.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
{
DeviceSelectionConfiguration::DeviceSelectionConfiguration() :
m_filtersHasBeenSet(false),
m_maxDevices(0),
m_maxDevicesHasBeenSet(false)
{
}
DeviceSelectionConfiguration::DeviceSelectionConfiguration(JsonView jsonValue) :
m_filtersHasBeenSet(false),
m_maxDevices(0),
m_maxDevicesHasBeenSet(false)
{
*this = jsonValue;
}
DeviceSelectionConfiguration& DeviceSelectionConfiguration::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("maxDevices"))
{
m_maxDevices = jsonValue.GetInteger("maxDevices");
m_maxDevicesHasBeenSet = true;
}
return *this;
}
JsonValue DeviceSelectionConfiguration::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_maxDevicesHasBeenSet)
{
payload.WithInteger("maxDevices", m_maxDevices);
}
return payload;
}
} // namespace Model
} // namespace DeviceFarm
} // namespace Aws