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-ssm/source/model/InventoryGroup.cpp

83 lines
1.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/ssm/model/InventoryGroup.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace SSM
{
namespace Model
{
InventoryGroup::InventoryGroup() :
m_nameHasBeenSet(false),
m_filtersHasBeenSet(false)
{
}
InventoryGroup::InventoryGroup(JsonView jsonValue) :
m_nameHasBeenSet(false),
m_filtersHasBeenSet(false)
{
*this = jsonValue;
}
InventoryGroup& InventoryGroup::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Name"))
{
m_name = jsonValue.GetString("Name");
m_nameHasBeenSet = true;
}
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;
}
return *this;
}
JsonValue InventoryGroup::Jsonize() const
{
JsonValue payload;
if(m_nameHasBeenSet)
{
payload.WithString("Name", m_name);
}
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));
}
return payload;
}
} // namespace Model
} // namespace SSM
} // namespace Aws