| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- /*
- * 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/DescribeScalingRulesResult.h>
- #include <json/json.h>
- using namespace AlibabaCloud::Ess;
- using namespace AlibabaCloud::Ess::Model;
- DescribeScalingRulesResult::DescribeScalingRulesResult() :
- ServiceResult()
- {}
- DescribeScalingRulesResult::DescribeScalingRulesResult(const std::string &payload) :
- ServiceResult()
- {
- parse(payload);
- }
- DescribeScalingRulesResult::~DescribeScalingRulesResult()
- {}
- void DescribeScalingRulesResult::parse(const std::string &payload)
- {
- Json::Reader reader;
- Json::Value value;
- reader.parse(payload, value);
- setRequestId(value["RequestId"].asString());
- auto allScalingRules = value["ScalingRules"]["ScalingRule"];
- for (auto value : allScalingRules)
- {
- ScalingRule scalingRulesObject;
- if(!value["ScalingRuleId"].isNull())
- scalingRulesObject.scalingRuleId = value["ScalingRuleId"].asString();
- if(!value["ScalingGroupId"].isNull())
- scalingRulesObject.scalingGroupId = value["ScalingGroupId"].asString();
- if(!value["ScalingRuleName"].isNull())
- scalingRulesObject.scalingRuleName = value["ScalingRuleName"].asString();
- if(!value["Cooldown"].isNull())
- scalingRulesObject.cooldown = std::stoi(value["Cooldown"].asString());
- if(!value["MinAdjustmentMagnitude"].isNull())
- scalingRulesObject.minAdjustmentMagnitude = std::stoi(value["MinAdjustmentMagnitude"].asString());
- if(!value["AdjustmentType"].isNull())
- scalingRulesObject.adjustmentType = value["AdjustmentType"].asString();
- if(!value["AdjustmentValue"].isNull())
- scalingRulesObject.adjustmentValue = std::stoi(value["AdjustmentValue"].asString());
- if(!value["MinSize"].isNull())
- scalingRulesObject.minSize = std::stoi(value["MinSize"].asString());
- if(!value["MaxSize"].isNull())
- scalingRulesObject.maxSize = std::stoi(value["MaxSize"].asString());
- if(!value["ScalingRuleAri"].isNull())
- scalingRulesObject.scalingRuleAri = value["ScalingRuleAri"].asString();
- if(!value["ScalingRuleType"].isNull())
- scalingRulesObject.scalingRuleType = value["ScalingRuleType"].asString();
- if(!value["EstimatedInstanceWarmup"].isNull())
- scalingRulesObject.estimatedInstanceWarmup = std::stoi(value["EstimatedInstanceWarmup"].asString());
- if(!value["MetricName"].isNull())
- scalingRulesObject.metricName = value["MetricName"].asString();
- if(!value["TargetValue"].isNull())
- scalingRulesObject.targetValue = std::stof(value["TargetValue"].asString());
- if(!value["DisableScaleIn"].isNull())
- scalingRulesObject.disableScaleIn = value["DisableScaleIn"].asString() == "true";
- auto allAlarms = value["Alarms"]["Alarm"];
- for (auto value : allAlarms)
- {
- ScalingRule::Alarm alarmsObject;
- if(!value["AlarmTaskName"].isNull())
- alarmsObject.alarmTaskName = value["AlarmTaskName"].asString();
- if(!value["AlarmTaskId"].isNull())
- alarmsObject.alarmTaskId = value["AlarmTaskId"].asString();
- scalingRulesObject.alarms.push_back(alarmsObject);
- }
- auto allStepAdjustments = value["StepAdjustments"]["StepAdjustment"];
- for (auto value : allStepAdjustments)
- {
- ScalingRule::StepAdjustment stepAdjustmentsObject;
- if(!value["MetricIntervalLowerBound"].isNull())
- stepAdjustmentsObject.metricIntervalLowerBound = std::stof(value["MetricIntervalLowerBound"].asString());
- if(!value["MetricIntervalUpperBound"].isNull())
- stepAdjustmentsObject.metricIntervalUpperBound = std::stof(value["MetricIntervalUpperBound"].asString());
- if(!value["ScalingAdjustment"].isNull())
- stepAdjustmentsObject.scalingAdjustment = std::stoi(value["ScalingAdjustment"].asString());
- scalingRulesObject.stepAdjustments.push_back(stepAdjustmentsObject);
- }
- scalingRules_.push_back(scalingRulesObject);
- }
- 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());
- }
- std::vector<DescribeScalingRulesResult::ScalingRule> DescribeScalingRulesResult::getScalingRules()const
- {
- return scalingRules_;
- }
- int DescribeScalingRulesResult::getTotalCount()const
- {
- return totalCount_;
- }
- int DescribeScalingRulesResult::getPageSize()const
- {
- return pageSize_;
- }
- int DescribeScalingRulesResult::getPageNumber()const
- {
- return pageNumber_;
- }
|