88 lines
2.6 KiB
C++
88 lines
2.6 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/cdn/model/BatchDescribeDomainBpsDataResult.h>
|
|
#include <json/json.h>
|
|
|
|
using namespace AlibabaCloud::Cdn;
|
|
using namespace AlibabaCloud::Cdn::Model;
|
|
|
|
BatchDescribeDomainBpsDataResult::BatchDescribeDomainBpsDataResult() :
|
|
ServiceResult()
|
|
{}
|
|
|
|
BatchDescribeDomainBpsDataResult::BatchDescribeDomainBpsDataResult(const std::string &payload) :
|
|
ServiceResult()
|
|
{
|
|
parse(payload);
|
|
}
|
|
|
|
BatchDescribeDomainBpsDataResult::~BatchDescribeDomainBpsDataResult()
|
|
{}
|
|
|
|
void BatchDescribeDomainBpsDataResult::parse(const std::string &payload)
|
|
{
|
|
Json::Reader reader;
|
|
Json::Value value;
|
|
reader.parse(payload, value);
|
|
|
|
setRequestId(value["RequestId"].asString());
|
|
auto allBpsDatas = value["BpsDatas"]["DataModule"];
|
|
for (auto value : allBpsDatas)
|
|
{
|
|
DataModule bpsDatasObject;
|
|
if(!value["Timestamp"].isNull())
|
|
bpsDatasObject.timestamp = value["Timestamp"].asString();
|
|
if(!value["L1Bps"].isNull())
|
|
bpsDatasObject.l1Bps = std::stof(value["L1Bps"].asString());
|
|
if(!value["L1InnerBps"].isNull())
|
|
bpsDatasObject.l1InnerBps = std::stof(value["L1InnerBps"].asString());
|
|
if(!value["L1OutBps"].isNull())
|
|
bpsDatasObject.l1OutBps = std::stof(value["L1OutBps"].asString());
|
|
if(!value["DomainName"].isNull())
|
|
bpsDatasObject.domainName = value["DomainName"].asString();
|
|
bpsDatas_.push_back(bpsDatasObject);
|
|
}
|
|
if(!value["PageNumber"].isNull())
|
|
pageNumber_ = std::stoi(value["PageNumber"].asString());
|
|
if(!value["PageSize"].isNull())
|
|
pageSize_ = std::stoi(value["PageSize"].asString());
|
|
if(!value["TotalCount"].isNull())
|
|
totalCount_ = std::stoi(value["TotalCount"].asString());
|
|
|
|
}
|
|
|
|
int BatchDescribeDomainBpsDataResult::getTotalCount()const
|
|
{
|
|
return totalCount_;
|
|
}
|
|
|
|
std::vector<BatchDescribeDomainBpsDataResult::DataModule> BatchDescribeDomainBpsDataResult::getBpsDatas()const
|
|
{
|
|
return bpsDatas_;
|
|
}
|
|
|
|
int BatchDescribeDomainBpsDataResult::getPageSize()const
|
|
{
|
|
return pageSize_;
|
|
}
|
|
|
|
int BatchDescribeDomainBpsDataResult::getPageNumber()const
|
|
{
|
|
return pageNumber_;
|
|
}
|
|
|