Files
aliyun-openapi-cpp-sdk/cbn/src/model/DescribeCenChildInstanceRouteEntriesResult.cc
Axios c43307bc80 Rebuild sdk (#60)
* rebuild sdk

* fixed ut include Utils.h
2019-08-14 14:34:09 +08:00

131 lines
4.9 KiB
C++

/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <alibabacloud/cbn/model/DescribeCenChildInstanceRouteEntriesResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Cbn;
using namespace AlibabaCloud::Cbn::Model;
DescribeCenChildInstanceRouteEntriesResult::DescribeCenChildInstanceRouteEntriesResult() :
ServiceResult()
{}
DescribeCenChildInstanceRouteEntriesResult::DescribeCenChildInstanceRouteEntriesResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
DescribeCenChildInstanceRouteEntriesResult::~DescribeCenChildInstanceRouteEntriesResult()
{}
void DescribeCenChildInstanceRouteEntriesResult::parse(const std::string &payload)
{
Json::CharReaderBuilder builder;
Json::CharReader *reader = builder.newCharReader();
Json::Value *val;
Json::Value value;
JSONCPP_STRING *errs;
reader->parse(payload.data(), payload.data() + payload.size(), val, errs);
value = *val;
setRequestId(value["RequestId"].asString());
auto allCenRouteEntries = value["CenRouteEntries"]["CenRouteEntry"];
for (auto value : allCenRouteEntries)
{
CenRouteEntry cenRouteEntriesObject;
if(!value["DestinationCidrBlock"].isNull())
cenRouteEntriesObject.destinationCidrBlock = value["DestinationCidrBlock"].asString();
if(!value["Type"].isNull())
cenRouteEntriesObject.type = value["Type"].asString();
if(!value["NextHopInstanceId"].isNull())
cenRouteEntriesObject.nextHopInstanceId = value["NextHopInstanceId"].asString();
if(!value["NextHopType"].isNull())
cenRouteEntriesObject.nextHopType = value["NextHopType"].asString();
if(!value["NextHopRegionId"].isNull())
cenRouteEntriesObject.nextHopRegionId = value["NextHopRegionId"].asString();
if(!value["Status"].isNull())
cenRouteEntriesObject.status = value["Status"].asString();
if(!value["OperationalMode"].isNull())
cenRouteEntriesObject.operationalMode = value["OperationalMode"].asString() == "true";
if(!value["PublishStatus"].isNull())
cenRouteEntriesObject.publishStatus = value["PublishStatus"].asString();
if(!value["RouteTableId"].isNull())
cenRouteEntriesObject.routeTableId = value["RouteTableId"].asString();
auto allCenRouteMapRecords = value["CenRouteMapRecords"]["CenRouteMapRecord"];
for (auto value : allCenRouteMapRecords)
{
CenRouteEntry::CenRouteMapRecord cenRouteMapRecordsObject;
if(!value["RegionId"].isNull())
cenRouteMapRecordsObject.regionId = value["RegionId"].asString();
if(!value["RouteMapId"].isNull())
cenRouteMapRecordsObject.routeMapId = value["RouteMapId"].asString();
cenRouteEntriesObject.cenRouteMapRecords.push_back(cenRouteMapRecordsObject);
}
auto allConflicts = value["Conflicts"]["Conflict"];
for (auto value : allConflicts)
{
CenRouteEntry::Conflict conflictsObject;
if(!value["DestinationCidrBlock"].isNull())
conflictsObject.destinationCidrBlock = value["DestinationCidrBlock"].asString();
if(!value["RegionId"].isNull())
conflictsObject.regionId = value["RegionId"].asString();
if(!value["InstanceId"].isNull())
conflictsObject.instanceId = value["InstanceId"].asString();
if(!value["InstanceType"].isNull())
conflictsObject.instanceType = value["InstanceType"].asString();
if(!value["Status"].isNull())
conflictsObject.status = value["Status"].asString();
cenRouteEntriesObject.conflicts.push_back(conflictsObject);
}
auto allAsPaths = value["AsPaths"]["AsPath"];
for (auto value : allAsPaths)
cenRouteEntriesObject.asPaths.push_back(value.asString());
auto allCommunities = value["Communities"]["Community"];
for (auto value : allCommunities)
cenRouteEntriesObject.communities.push_back(value.asString());
cenRouteEntries_.push_back(cenRouteEntriesObject);
}
if(!value["PageNumber"].isNull())
pageNumber_ = std::stoi(value["PageNumber"].asString());
if(!value["TotalCount"].isNull())
totalCount_ = std::stoi(value["TotalCount"].asString());
if(!value["PageSize"].isNull())
pageSize_ = std::stoi(value["PageSize"].asString());
}
int DescribeCenChildInstanceRouteEntriesResult::getTotalCount()const
{
return totalCount_;
}
int DescribeCenChildInstanceRouteEntriesResult::getPageSize()const
{
return pageSize_;
}
int DescribeCenChildInstanceRouteEntriesResult::getPageNumber()const
{
return pageNumber_;
}
std::vector<DescribeCenChildInstanceRouteEntriesResult::CenRouteEntry> DescribeCenChildInstanceRouteEntriesResult::getCenRouteEntries()const
{
return cenRouteEntries_;
}