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-appmesh/source/model/GrpcRouteAction.cpp

68 lines
1.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/appmesh/model/GrpcRouteAction.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace AppMesh
{
namespace Model
{
GrpcRouteAction::GrpcRouteAction() :
m_weightedTargetsHasBeenSet(false)
{
}
GrpcRouteAction::GrpcRouteAction(JsonView jsonValue) :
m_weightedTargetsHasBeenSet(false)
{
*this = jsonValue;
}
GrpcRouteAction& GrpcRouteAction::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("weightedTargets"))
{
Array<JsonView> weightedTargetsJsonList = jsonValue.GetArray("weightedTargets");
for(unsigned weightedTargetsIndex = 0; weightedTargetsIndex < weightedTargetsJsonList.GetLength(); ++weightedTargetsIndex)
{
m_weightedTargets.push_back(weightedTargetsJsonList[weightedTargetsIndex].AsObject());
}
m_weightedTargetsHasBeenSet = true;
}
return *this;
}
JsonValue GrpcRouteAction::Jsonize() const
{
JsonValue payload;
if(m_weightedTargetsHasBeenSet)
{
Array<JsonValue> weightedTargetsJsonList(m_weightedTargets.size());
for(unsigned weightedTargetsIndex = 0; weightedTargetsIndex < weightedTargetsJsonList.GetLength(); ++weightedTargetsIndex)
{
weightedTargetsJsonList[weightedTargetsIndex].AsObject(m_weightedTargets[weightedTargetsIndex].Jsonize());
}
payload.WithArray("weightedTargets", std::move(weightedTargetsJsonList));
}
return payload;
}
} // namespace Model
} // namespace AppMesh
} // namespace Aws