tencentcloud-sdk-nodejs-tke 4.0.1003 → 4.0.1005

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -457,67 +457,67 @@ export interface Instance {
457
457
  /**
458
458
  * 实例ID
459
459
  */
460
- InstanceId: string
460
+ InstanceId?: string
461
461
  /**
462
462
  * 节点角色, MASTER, WORKER, ETCD, MASTER_ETCD,ALL, 默认为WORKER
463
463
  */
464
- InstanceRole: string
464
+ InstanceRole?: string
465
465
  /**
466
466
  * 实例异常(或者处于初始化中)的原因
467
467
  注意:此字段可能返回 null,表示取不到有效值。
468
468
  */
469
- FailedReason: string
469
+ FailedReason?: string
470
470
  /**
471
471
  * 实例的状态
472
472
  - initializing创建中
473
473
  - running 运行中
474
474
  - failed 异常
475
475
  */
476
- InstanceState: string
476
+ InstanceState?: string
477
477
  /**
478
478
  * 是否不可调度
479
479
  注意:此字段可能返回 null,表示取不到有效值。
480
480
  */
481
- Unschedulable: boolean
481
+ Unschedulable?: boolean
482
482
  /**
483
483
  * 添加时间
484
484
  */
485
- CreatedTime: string
485
+ CreatedTime?: string
486
486
  /**
487
487
  * 节点内网IP
488
488
  注意:此字段可能返回 null,表示取不到有效值。
489
489
  */
490
- LanIP: string
490
+ LanIP?: string
491
491
  /**
492
492
  * 资源池ID
493
493
  注意:此字段可能返回 null,表示取不到有效值。
494
494
  */
495
- NodePoolId: string
495
+ NodePoolId?: string
496
496
  /**
497
497
  * 原生节点参数
498
498
  注意:此字段可能返回 null,表示取不到有效值。
499
499
  */
500
- Native: NativeNodeInfo
500
+ Native?: NativeNodeInfo
501
501
  /**
502
502
  * 普通节点参数
503
503
  注意:此字段可能返回 null,表示取不到有效值。
504
504
  */
505
- Regular: RegularNodeInfo
505
+ Regular?: RegularNodeInfo
506
506
  /**
507
507
  * 超级节点参数
508
508
  注意:此字段可能返回 null,表示取不到有效值。
509
509
  */
510
- Super: SuperNodeInfo
510
+ Super?: SuperNodeInfo
511
511
  /**
512
512
  * 第三方节点参数
513
513
  注意:此字段可能返回 null,表示取不到有效值。
514
514
  */
515
- External: ExternalNodeInfo
515
+ External?: ExternalNodeInfo
516
516
  /**
517
517
  * 节点类型
518
518
  注意:此字段可能返回 null,表示取不到有效值。
519
519
  */
520
- NodeType: string
520
+ NodeType?: string
521
521
  }
522
522
 
523
523
  /**
@@ -1232,12 +1232,12 @@ export interface RegularNodeInfo {
1232
1232
  * 节点配置
1233
1233
  注意:此字段可能返回 null,表示取不到有效值。
1234
1234
  */
1235
- InstanceAdvancedSettings: InstanceAdvancedSettings
1235
+ InstanceAdvancedSettings?: InstanceAdvancedSettings
1236
1236
  /**
1237
1237
  * 自动伸缩组ID
1238
1238
  注意:此字段可能返回 null,表示取不到有效值。
1239
1239
  */
1240
- AutoscalingGroupId: string
1240
+ AutoscalingGroupId?: string
1241
1241
  }
1242
1242
 
1243
1243
  /**