119 lines
5.3 KiB
C++
119 lines
5.3 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/elasticsearch/model/UpdateCollectorResult.h>
|
|
#include <json/json.h>
|
|
|
|
using namespace AlibabaCloud::Elasticsearch;
|
|
using namespace AlibabaCloud::Elasticsearch::Model;
|
|
|
|
UpdateCollectorResult::UpdateCollectorResult() :
|
|
ServiceResult()
|
|
{}
|
|
|
|
UpdateCollectorResult::UpdateCollectorResult(const std::string &payload) :
|
|
ServiceResult()
|
|
{
|
|
parse(payload);
|
|
}
|
|
|
|
UpdateCollectorResult::~UpdateCollectorResult()
|
|
{}
|
|
|
|
void UpdateCollectorResult::parse(const std::string &payload)
|
|
{
|
|
Json::Reader reader;
|
|
Json::Value value;
|
|
reader.parse(payload, value);
|
|
setRequestId(value["RequestId"].asString());
|
|
auto resultNode = value["Result"];
|
|
if(!resultNode["gmtCreatedTime"].isNull())
|
|
result_.gmtCreatedTime = resultNode["gmtCreatedTime"].asString();
|
|
if(!resultNode["gmtUpdateTime"].isNull())
|
|
result_.gmtUpdateTime = resultNode["gmtUpdateTime"].asString();
|
|
if(!resultNode["name"].isNull())
|
|
result_.name = resultNode["name"].asString();
|
|
if(!resultNode["resId"].isNull())
|
|
result_.resId = resultNode["resId"].asString();
|
|
if(!resultNode["resVersion"].isNull())
|
|
result_.resVersion = resultNode["resVersion"].asString();
|
|
if(!resultNode["vpcId"].isNull())
|
|
result_.vpcId = resultNode["vpcId"].asString();
|
|
if(!resultNode["resType"].isNull())
|
|
result_.resType = resultNode["resType"].asString();
|
|
if(!resultNode["ownerId"].isNull())
|
|
result_.ownerId = resultNode["ownerId"].asString();
|
|
if(!resultNode["status"].isNull())
|
|
result_.status = resultNode["status"].asString();
|
|
if(!resultNode["dryRun"].isNull())
|
|
result_.dryRun = resultNode["dryRun"].asString() == "true";
|
|
auto allconfigsNode = resultNode["configs"]["configsItem"];
|
|
for (auto resultNodeconfigsconfigsItem : allconfigsNode)
|
|
{
|
|
Result::ConfigsItem configsItemObject;
|
|
if(!resultNodeconfigsconfigsItem["fileName"].isNull())
|
|
configsItemObject.fileName = resultNodeconfigsconfigsItem["fileName"].asString();
|
|
if(!resultNodeconfigsconfigsItem["content"].isNull())
|
|
configsItemObject.content = resultNodeconfigsconfigsItem["content"].asString();
|
|
result_.configs.push_back(configsItemObject);
|
|
}
|
|
auto allextendConfigsNode = resultNode["extendConfigs"]["extendConfigsItem"];
|
|
for (auto resultNodeextendConfigsextendConfigsItem : allextendConfigsNode)
|
|
{
|
|
Result::ExtendConfigsItem extendConfigsItemObject;
|
|
if(!resultNodeextendConfigsextendConfigsItem["configType"].isNull())
|
|
extendConfigsItemObject.configType = resultNodeextendConfigsextendConfigsItem["configType"].asString();
|
|
if(!resultNodeextendConfigsextendConfigsItem["instanceId"].isNull())
|
|
extendConfigsItemObject.instanceId = resultNodeextendConfigsextendConfigsItem["instanceId"].asString();
|
|
if(!resultNodeextendConfigsextendConfigsItem["instanceType"].isNull())
|
|
extendConfigsItemObject.instanceType = resultNodeextendConfigsextendConfigsItem["instanceType"].asString();
|
|
if(!resultNodeextendConfigsextendConfigsItem["protocol"].isNull())
|
|
extendConfigsItemObject.protocol = resultNodeextendConfigsextendConfigsItem["protocol"].asString();
|
|
if(!resultNodeextendConfigsextendConfigsItem["userName"].isNull())
|
|
extendConfigsItemObject.userName = resultNodeextendConfigsextendConfigsItem["userName"].asString();
|
|
if(!resultNodeextendConfigsextendConfigsItem["enableMonitoring"].isNull())
|
|
extendConfigsItemObject.enableMonitoring = resultNodeextendConfigsextendConfigsItem["enableMonitoring"].asString() == "true";
|
|
if(!resultNodeextendConfigsextendConfigsItem["type"].isNull())
|
|
extendConfigsItemObject.type = resultNodeextendConfigsextendConfigsItem["type"].asString();
|
|
if(!resultNodeextendConfigsextendConfigsItem["groupId"].isNull())
|
|
extendConfigsItemObject.groupId = resultNodeextendConfigsextendConfigsItem["groupId"].asString();
|
|
auto allmachinesNode = allextendConfigsNode["machines"]["machinesItem"];
|
|
for (auto allextendConfigsNodemachinesmachinesItem : allmachinesNode)
|
|
{
|
|
Result::ExtendConfigsItem::MachinesItem machinesObject;
|
|
if(!allextendConfigsNodemachinesmachinesItem["instanceId"].isNull())
|
|
machinesObject.instanceId = allextendConfigsNodemachinesmachinesItem["instanceId"].asString();
|
|
if(!allextendConfigsNodemachinesmachinesItem["agentStatus"].isNull())
|
|
machinesObject.agentStatus = allextendConfigsNodemachinesmachinesItem["agentStatus"].asString();
|
|
extendConfigsItemObject.machines.push_back(machinesObject);
|
|
}
|
|
auto allHosts = value["hosts"]["hosts"];
|
|
for (auto value : allHosts)
|
|
extendConfigsItemObject.hosts.push_back(value.asString());
|
|
result_.extendConfigs.push_back(extendConfigsItemObject);
|
|
}
|
|
auto allCollectorPaths = resultNode["collectorPaths"]["collectorPaths"];
|
|
for (auto value : allCollectorPaths)
|
|
result_.collectorPaths.push_back(value.asString());
|
|
|
|
}
|
|
|
|
UpdateCollectorResult::Result UpdateCollectorResult::getResult()const
|
|
{
|
|
return result_;
|
|
}
|
|
|