170 lines
4.4 KiB
C++
170 lines
4.4 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.
|
|
*/
|
|
|
|
#ifndef ALIBABACLOUD_EMR_MODEL_DESCRIBECLUSTERBASICINFORESULT_H_
|
|
#define ALIBABACLOUD_EMR_MODEL_DESCRIBECLUSTERBASICINFORESULT_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <utility>
|
|
#include <alibabacloud/core/ServiceResult.h>
|
|
#include <alibabacloud/emr/EmrExport.h>
|
|
|
|
namespace AlibabaCloud
|
|
{
|
|
namespace Emr
|
|
{
|
|
namespace Model
|
|
{
|
|
class ALIBABACLOUD_EMR_EXPORT DescribeClusterBasicInfoResult : public ServiceResult
|
|
{
|
|
public:
|
|
struct ClusterInfo
|
|
{
|
|
struct RelateClusterInfo
|
|
{
|
|
std::string status;
|
|
std::string clusterId;
|
|
std::string clusterName;
|
|
std::string clusterType;
|
|
};
|
|
struct HostPoolInfo
|
|
{
|
|
std::string hpBizId;
|
|
std::string hpName;
|
|
};
|
|
struct FailReason
|
|
{
|
|
std::string requestId;
|
|
std::string errorMsg;
|
|
std::string errorCode;
|
|
};
|
|
struct SoftwareInfo
|
|
{
|
|
struct Software
|
|
{
|
|
int startTpe;
|
|
std::string version;
|
|
std::string displayName;
|
|
bool onlyDisplay;
|
|
std::string name;
|
|
};
|
|
std::vector<Software> softwares;
|
|
std::string emrVer;
|
|
std::string clusterType;
|
|
};
|
|
struct AccessInfo
|
|
{
|
|
struct ZKLink
|
|
{
|
|
std::string port;
|
|
std::string link;
|
|
};
|
|
std::vector<ZKLink> zKLinks;
|
|
};
|
|
struct GatewayClusterInfo
|
|
{
|
|
std::string status;
|
|
std::string clusterId;
|
|
std::string clusterName;
|
|
};
|
|
struct BootstrapAction
|
|
{
|
|
std::string path;
|
|
std::string arg;
|
|
std::string name;
|
|
};
|
|
int taskNodeInService;
|
|
bool showSoftwareInterface;
|
|
HostPoolInfo hostPoolInfo;
|
|
int coreNodeInService;
|
|
std::vector<BootstrapAction> bootstrapActionList;
|
|
bool resizeDiskEnable;
|
|
FailReason failReason;
|
|
std::string k8sClusterId;
|
|
std::string name;
|
|
bool highAvailabilityEnable;
|
|
std::string clickhouseConf;
|
|
std::string autoScalingVersion;
|
|
long expiredTime;
|
|
std::string createType;
|
|
std::string imageId;
|
|
bool autoScalingSpotWithLimitAllowed;
|
|
std::string userDefinedEmrEcsRole;
|
|
bool autoScalingAllowed;
|
|
long stopTime;
|
|
std::string status;
|
|
std::string createResource;
|
|
bool bootstrapFailed;
|
|
std::string vSwitchId;
|
|
std::string depositType;
|
|
long startTime;
|
|
std::vector<GatewayClusterInfo> gatewayClusterInfoList;
|
|
int period;
|
|
std::string metaStoreType;
|
|
bool easEnable;
|
|
std::string vpcId;
|
|
SoftwareInfo softwareInfo;
|
|
std::string securityGroupName;
|
|
bool resizeClusterEnable;
|
|
bool logEnable;
|
|
int masterNodeInService;
|
|
RelateClusterInfo relateClusterInfo;
|
|
std::string relateClusterId;
|
|
bool autoScalingByLoadAllowed;
|
|
bool autoScalingWithGraceAllowed;
|
|
int coreNodeTotal;
|
|
std::string configurations;
|
|
std::string netType;
|
|
bool localMetaDb;
|
|
std::string gatewayClusterIds;
|
|
bool ioOptimized;
|
|
std::string zoneId;
|
|
std::string clusterId;
|
|
std::string operationId;
|
|
std::string securityGroupId;
|
|
std::string machineType;
|
|
int taskNodeTotal;
|
|
bool dataDiskEncrypted;
|
|
AccessInfo accessInfo;
|
|
std::string extraInfo;
|
|
int masterNodeTotal;
|
|
std::string userId;
|
|
std::string chargeType;
|
|
std::string dataDiskKMSKeyId;
|
|
bool autoScalingEnable;
|
|
std::string instanceGeneration;
|
|
std::string regionId;
|
|
std::string logPath;
|
|
int runningTime;
|
|
};
|
|
|
|
|
|
DescribeClusterBasicInfoResult();
|
|
explicit DescribeClusterBasicInfoResult(const std::string &payload);
|
|
~DescribeClusterBasicInfoResult();
|
|
ClusterInfo getClusterInfo()const;
|
|
|
|
protected:
|
|
void parse(const std::string &payload);
|
|
private:
|
|
ClusterInfo clusterInfo_;
|
|
|
|
};
|
|
}
|
|
}
|
|
}
|
|
#endif // !ALIBABACLOUD_EMR_MODEL_DESCRIBECLUSTERBASICINFORESULT_H_
|