|
|
@@ -0,0 +1,109 @@
|
|
|
+/*
|
|
|
+ * 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/vod/model/DescribeVodDomainQpsDataResult.h>
|
|
|
+#include <json/json.h>
|
|
|
+
|
|
|
+using namespace AlibabaCloud::Vod;
|
|
|
+using namespace AlibabaCloud::Vod::Model;
|
|
|
+
|
|
|
+DescribeVodDomainQpsDataResult::DescribeVodDomainQpsDataResult() :
|
|
|
+ ServiceResult()
|
|
|
+{}
|
|
|
+
|
|
|
+DescribeVodDomainQpsDataResult::DescribeVodDomainQpsDataResult(const std::string &payload) :
|
|
|
+ ServiceResult()
|
|
|
+{
|
|
|
+ parse(payload);
|
|
|
+}
|
|
|
+
|
|
|
+DescribeVodDomainQpsDataResult::~DescribeVodDomainQpsDataResult()
|
|
|
+{}
|
|
|
+
|
|
|
+void DescribeVodDomainQpsDataResult::parse(const std::string &payload)
|
|
|
+{
|
|
|
+ Json::Reader reader;
|
|
|
+ Json::Value value;
|
|
|
+ reader.parse(payload, value);
|
|
|
+ setRequestId(value["RequestId"].asString());
|
|
|
+ auto allQpsDataIntervalNode = value["QpsDataInterval"]["DataModule"];
|
|
|
+ for (auto valueQpsDataIntervalDataModule : allQpsDataIntervalNode)
|
|
|
+ {
|
|
|
+ DataModule qpsDataIntervalObject;
|
|
|
+ if(!valueQpsDataIntervalDataModule["AccValue"].isNull())
|
|
|
+ qpsDataIntervalObject.accValue = valueQpsDataIntervalDataModule["AccValue"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["AccDomesticValue"].isNull())
|
|
|
+ qpsDataIntervalObject.accDomesticValue = valueQpsDataIntervalDataModule["AccDomesticValue"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["AccOverseasValue"].isNull())
|
|
|
+ qpsDataIntervalObject.accOverseasValue = valueQpsDataIntervalDataModule["AccOverseasValue"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["HttpsValue"].isNull())
|
|
|
+ qpsDataIntervalObject.httpsValue = valueQpsDataIntervalDataModule["HttpsValue"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["HttpsOverseasValue"].isNull())
|
|
|
+ qpsDataIntervalObject.httpsOverseasValue = valueQpsDataIntervalDataModule["HttpsOverseasValue"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["DomesticValue"].isNull())
|
|
|
+ qpsDataIntervalObject.domesticValue = valueQpsDataIntervalDataModule["DomesticValue"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["HttpsAccOverseasValue"].isNull())
|
|
|
+ qpsDataIntervalObject.httpsAccOverseasValue = valueQpsDataIntervalDataModule["HttpsAccOverseasValue"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["HttpsDomesticValue"].isNull())
|
|
|
+ qpsDataIntervalObject.httpsDomesticValue = valueQpsDataIntervalDataModule["HttpsDomesticValue"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["HttpsAccValue"].isNull())
|
|
|
+ qpsDataIntervalObject.httpsAccValue = valueQpsDataIntervalDataModule["HttpsAccValue"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["Value"].isNull())
|
|
|
+ qpsDataIntervalObject.value = valueQpsDataIntervalDataModule["Value"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["OverseasValue"].isNull())
|
|
|
+ qpsDataIntervalObject.overseasValue = valueQpsDataIntervalDataModule["OverseasValue"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["TimeStamp"].isNull())
|
|
|
+ qpsDataIntervalObject.timeStamp = valueQpsDataIntervalDataModule["TimeStamp"].asString();
|
|
|
+ if(!valueQpsDataIntervalDataModule["HttpsAccDomesticValue"].isNull())
|
|
|
+ qpsDataIntervalObject.httpsAccDomesticValue = valueQpsDataIntervalDataModule["HttpsAccDomesticValue"].asString();
|
|
|
+ qpsDataInterval_.push_back(qpsDataIntervalObject);
|
|
|
+ }
|
|
|
+ if(!value["EndTime"].isNull())
|
|
|
+ endTime_ = value["EndTime"].asString();
|
|
|
+ if(!value["StartTime"].isNull())
|
|
|
+ startTime_ = value["StartTime"].asString();
|
|
|
+ if(!value["DomainName"].isNull())
|
|
|
+ domainName_ = value["DomainName"].asString();
|
|
|
+ if(!value["DataInterval"].isNull())
|
|
|
+ dataInterval_ = value["DataInterval"].asString();
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+std::string DescribeVodDomainQpsDataResult::getEndTime()const
|
|
|
+{
|
|
|
+ return endTime_;
|
|
|
+}
|
|
|
+
|
|
|
+std::string DescribeVodDomainQpsDataResult::getDomainName()const
|
|
|
+{
|
|
|
+ return domainName_;
|
|
|
+}
|
|
|
+
|
|
|
+std::string DescribeVodDomainQpsDataResult::getStartTime()const
|
|
|
+{
|
|
|
+ return startTime_;
|
|
|
+}
|
|
|
+
|
|
|
+std::string DescribeVodDomainQpsDataResult::getDataInterval()const
|
|
|
+{
|
|
|
+ return dataInterval_;
|
|
|
+}
|
|
|
+
|
|
|
+std::vector<DescribeVodDomainQpsDataResult::DataModule> DescribeVodDomainQpsDataResult::getQpsDataInterval()const
|
|
|
+{
|
|
|
+ return qpsDataInterval_;
|
|
|
+}
|
|
|
+
|