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-xray/source/model/ValueWithServiceIds.cpp

83 lines
1.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/xray/model/ValueWithServiceIds.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace XRay
{
namespace Model
{
ValueWithServiceIds::ValueWithServiceIds() :
m_annotationValueHasBeenSet(false),
m_serviceIdsHasBeenSet(false)
{
}
ValueWithServiceIds::ValueWithServiceIds(JsonView jsonValue) :
m_annotationValueHasBeenSet(false),
m_serviceIdsHasBeenSet(false)
{
*this = jsonValue;
}
ValueWithServiceIds& ValueWithServiceIds::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("AnnotationValue"))
{
m_annotationValue = jsonValue.GetObject("AnnotationValue");
m_annotationValueHasBeenSet = true;
}
if(jsonValue.ValueExists("ServiceIds"))
{
Array<JsonView> serviceIdsJsonList = jsonValue.GetArray("ServiceIds");
for(unsigned serviceIdsIndex = 0; serviceIdsIndex < serviceIdsJsonList.GetLength(); ++serviceIdsIndex)
{
m_serviceIds.push_back(serviceIdsJsonList[serviceIdsIndex].AsObject());
}
m_serviceIdsHasBeenSet = true;
}
return *this;
}
JsonValue ValueWithServiceIds::Jsonize() const
{
JsonValue payload;
if(m_annotationValueHasBeenSet)
{
payload.WithObject("AnnotationValue", m_annotationValue.Jsonize());
}
if(m_serviceIdsHasBeenSet)
{
Array<JsonValue> serviceIdsJsonList(m_serviceIds.size());
for(unsigned serviceIdsIndex = 0; serviceIdsIndex < serviceIdsJsonList.GetLength(); ++serviceIdsIndex)
{
serviceIdsJsonList[serviceIdsIndex].AsObject(m_serviceIds[serviceIdsIndex].Jsonize());
}
payload.WithArray("ServiceIds", std::move(serviceIdsJsonList));
}
return payload;
}
} // namespace Model
} // namespace XRay
} // namespace Aws