Files
aliyun-openapi-cpp-sdk/ess/src/model/DescribeCapacityHistoryResult.cc
wb-hx510875 ba463ae2dc fixed #51
2019-09-19 11:14:07 +08:00

87 lines
3.2 KiB
C++
Executable File

/*
* 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/ess/model/DescribeCapacityHistoryResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Ess;
using namespace AlibabaCloud::Ess::Model;
DescribeCapacityHistoryResult::DescribeCapacityHistoryResult() :
ServiceResult()
{}
DescribeCapacityHistoryResult::DescribeCapacityHistoryResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
DescribeCapacityHistoryResult::~DescribeCapacityHistoryResult()
{}
void DescribeCapacityHistoryResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
auto allCapacityHistoryItemsNode = value["CapacityHistoryItems"]["CapacityHistoryModel"];
for (auto valueCapacityHistoryItemsCapacityHistoryModel : allCapacityHistoryItemsNode)
{
CapacityHistoryModel capacityHistoryItemsObject;
if(!valueCapacityHistoryItemsCapacityHistoryModel["ScalingGroupId"].isNull())
capacityHistoryItemsObject.scalingGroupId = valueCapacityHistoryItemsCapacityHistoryModel["ScalingGroupId"].asString();
if(!valueCapacityHistoryItemsCapacityHistoryModel["TotalCapacity"].isNull())
capacityHistoryItemsObject.totalCapacity = std::stoi(valueCapacityHistoryItemsCapacityHistoryModel["TotalCapacity"].asString());
if(!valueCapacityHistoryItemsCapacityHistoryModel["AttachedCapacity"].isNull())
capacityHistoryItemsObject.attachedCapacity = std::stoi(valueCapacityHistoryItemsCapacityHistoryModel["AttachedCapacity"].asString());
if(!valueCapacityHistoryItemsCapacityHistoryModel["AutoCreatedCapacity"].isNull())
capacityHistoryItemsObject.autoCreatedCapacity = std::stoi(valueCapacityHistoryItemsCapacityHistoryModel["AutoCreatedCapacity"].asString());
if(!valueCapacityHistoryItemsCapacityHistoryModel["Timestamp"].isNull())
capacityHistoryItemsObject.timestamp = valueCapacityHistoryItemsCapacityHistoryModel["Timestamp"].asString();
capacityHistoryItems_.push_back(capacityHistoryItemsObject);
}
if(!value["TotalCount"].isNull())
totalCount_ = std::stoi(value["TotalCount"].asString());
if(!value["PageNumber"].isNull())
pageNumber_ = std::stoi(value["PageNumber"].asString());
if(!value["PageSize"].isNull())
pageSize_ = std::stoi(value["PageSize"].asString());
}
int DescribeCapacityHistoryResult::getTotalCount()const
{
return totalCount_;
}
int DescribeCapacityHistoryResult::getPageSize()const
{
return pageSize_;
}
int DescribeCapacityHistoryResult::getPageNumber()const
{
return pageNumber_;
}
std::vector<DescribeCapacityHistoryResult::CapacityHistoryModel> DescribeCapacityHistoryResult::getCapacityHistoryItems()const
{
return capacityHistoryItems_;
}