# coding=utf8
# Copyright 2018 JDCLOUD.COM
#
# 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.
#
# NOTE: This class is auto generated by the jdcloud code generator program.
[docs]class NodeConfigSpec(object):
def __init__(self, instanceType, password=None, keyNames=None, systemDisk=None, labels=None, userScripts=None, dataDiskSpec=None, securityGroup=None):
"""
:param instanceType: 实例类型
:param password: (Optional) 云主机密码,默认为集群密码,密码规范参考:[公共参数规范](https://docs.jdcloud.com/cn/virtual-machines/api/general_parameters)
:param keyNames: (Optional) 云主机SSH密钥对名称,当前仅支持一个。使用中的SSH密钥请勿删除。
:param systemDisk: (Optional) 云主机系统盘配置信息
:param labels: (Optional) 工作节点组标签,最多支持 10 个
:param userScripts: (Optional) 云主机脚本,暂定最多支持5个脚本,目前支持脚本类型为启动脚本,key为launch-script。
:param dataDiskSpec: (Optional) 云主机数据盘配置信息
:param securityGroup: (Optional) 工作节点组的安全组配置,为空则使用默认安全组
"""
self.instanceType = instanceType
self.password = password
self.keyNames = keyNames
self.systemDisk = systemDisk
self.labels = labels
self.userScripts = userScripts
self.dataDiskSpec = dataDiskSpec
self.securityGroup = securityGroup