@@ -207,8 +207,6 @@ def __init__(self):
207207 r"""删除集群节点
208208 :param ClusterId: 集群ID
209209 :type PathPrefix: String
210- :param NodeIds:
211- :type PathPrefix: Array
212210 :param InstanceDelete: 是否删除主机实例
213211 :type PathPrefix: Boolean
214212 :param KceNodeIds: 节点id集合,同实例 id集合必须二选一
@@ -217,16 +215,13 @@ def __init__(self):
217215 :type PathPrefix: Array
218216 """
219217 self .ClusterId = None
220- self .NodeIds = None
221218 self .InstanceDelete = None
222219 self .KceNodeIds = None
223220 self .InstanceIds = None
224221
225222 def _deserialize (self , params ):
226223 if params .get ("ClusterId" ):
227224 self .ClusterId = params .get ("ClusterId" )
228- if params .get ("NodeIds" ):
229- self .NodeIds = params .get ("NodeIds" )
230225 if params .get ("InstanceDelete" ):
231226 self .InstanceDelete = params .get ("InstanceDelete" )
232227 if params .get ("KceNodeIds" ):
@@ -323,106 +318,6 @@ def _deserialize(self, params):
323318 self .MaxResults = params .get ("MaxResults" )
324319
325320
326- class DescribeNetworkRequest (AbstractModel ):
327- """DescribeNetwork请求参数结构体
328- """
329-
330- def __init__ (self ):
331- r"""查询集群网络
332- :param ClusterId: 集群ID
333- :type PathPrefix: String
334- :param ClusterName: 集群名称
335- :type PathPrefix: String
336- """
337- self .ClusterId = None
338- self .ClusterName = None
339-
340- def _deserialize (self , params ):
341- if params .get ("ClusterId" ):
342- self .ClusterId = params .get ("ClusterId" )
343- if params .get ("ClusterName" ):
344- self .ClusterName = params .get ("ClusterName" )
345-
346-
347- class DescribeComponentParamsRequest (AbstractModel ):
348- """DescribeComponentParams请求参数结构体
349- """
350-
351- def __init__ (self ):
352- r"""查询组件参数版本
353- :param ClusterId: 集群ID
354- :type PathPrefix: String
355- :param Components: 组件查询条件
356- :type PathPrefix: Array
357- :param Marker: 游标起始位置
358- :type PathPrefix: Int
359- :param MaxResults: 分页参数,每页最大数
360- :type PathPrefix: Int
361- """
362- self .ClusterId = None
363- self .Components = None
364- self .Marker = None
365- self .MaxResults = None
366-
367- def _deserialize (self , params ):
368- if params .get ("ClusterId" ):
369- self .ClusterId = params .get ("ClusterId" )
370- if params .get ("Components" ):
371- self .Components = params .get ("Components" )
372- if params .get ("Marker" ):
373- self .Marker = params .get ("Marker" )
374- if params .get ("MaxResults" ):
375- self .MaxResults = params .get ("MaxResults" )
376-
377-
378- class DescribeEventLogsRequest (AbstractModel ):
379- """DescribeEventLogs请求参数结构体
380- """
381-
382- def __init__ (self ):
383- r"""查询集群事件日志
384- :param ClusterId: 集群ID
385- :type PathPrefix: String
386- :param ClusterName: 集群名称
387- :type PathPrefix: String
388- :param NodeId: 节点ID
389- :type PathPrefix: String
390- :param NodeName: 节点名称
391- :type PathPrefix: String
392- :param Inner: 是否查询内部事件
393- :type PathPrefix: Boolean
394- :param Marker: 分页参数 游标起始位置,
395- 每次查询返回
396- :type PathPrefix: Int
397- :param MaxResults: 分页参数,每页最大数
398-
399- :type PathPrefix: Int
400- """
401- self .ClusterId = None
402- self .ClusterName = None
403- self .NodeId = None
404- self .NodeName = None
405- self .Inner = None
406- self .Marker = None
407- self .MaxResults = None
408-
409- def _deserialize (self , params ):
410- if params .get ("ClusterId" ):
411- self .ClusterId = params .get ("ClusterId" )
412- if params .get ("ClusterName" ):
413- self .ClusterName = params .get ("ClusterName" )
414- if params .get ("NodeId" ):
415- self .NodeId = params .get ("NodeId" )
416- if params .get ("NodeName" ):
417- self .NodeName = params .get ("NodeName" )
418- if params .get ("Inner" ):
419- self .Inner = params .get ("Inner" )
420- if params .get ("Marker" ):
421- self .Marker = params .get ("Marker" )
422- if params .get ("MaxResults" ):
423- self .MaxResults = params .get ("MaxResults" )
424-
425-
426321class DescribeClusterVersionListRequest (AbstractModel ):
427322 """DescribeClusterVersionList请求参数结构体
428323 """
0 commit comments