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.
@@ -426,67 +426,67 @@ export interface Instance {
426
426
  /**
427
427
  * 实例ID
428
428
  */
429
- InstanceId: string;
429
+ InstanceId?: string;
430
430
  /**
431
431
  * 节点角色, MASTER, WORKER, ETCD, MASTER_ETCD,ALL, 默认为WORKER
432
432
  */
433
- InstanceRole: string;
433
+ InstanceRole?: string;
434
434
  /**
435
435
  * 实例异常(或者处于初始化中)的原因
436
436
  注意:此字段可能返回 null,表示取不到有效值。
437
437
  */
438
- FailedReason: string;
438
+ FailedReason?: string;
439
439
  /**
440
440
  * 实例的状态
441
441
  - initializing创建中
442
442
  - running 运行中
443
443
  - failed 异常
444
444
  */
445
- InstanceState: string;
445
+ InstanceState?: string;
446
446
  /**
447
447
  * 是否不可调度
448
448
  注意:此字段可能返回 null,表示取不到有效值。
449
449
  */
450
- Unschedulable: boolean;
450
+ Unschedulable?: boolean;
451
451
  /**
452
452
  * 添加时间
453
453
  */
454
- CreatedTime: string;
454
+ CreatedTime?: string;
455
455
  /**
456
456
  * 节点内网IP
457
457
  注意:此字段可能返回 null,表示取不到有效值。
458
458
  */
459
- LanIP: string;
459
+ LanIP?: string;
460
460
  /**
461
461
  * 资源池ID
462
462
  注意:此字段可能返回 null,表示取不到有效值。
463
463
  */
464
- NodePoolId: string;
464
+ NodePoolId?: string;
465
465
  /**
466
466
  * 原生节点参数
467
467
  注意:此字段可能返回 null,表示取不到有效值。
468
468
  */
469
- Native: NativeNodeInfo;
469
+ Native?: NativeNodeInfo;
470
470
  /**
471
471
  * 普通节点参数
472
472
  注意:此字段可能返回 null,表示取不到有效值。
473
473
  */
474
- Regular: RegularNodeInfo;
474
+ Regular?: RegularNodeInfo;
475
475
  /**
476
476
  * 超级节点参数
477
477
  注意:此字段可能返回 null,表示取不到有效值。
478
478
  */
479
- Super: SuperNodeInfo;
479
+ Super?: SuperNodeInfo;
480
480
  /**
481
481
  * 第三方节点参数
482
482
  注意:此字段可能返回 null,表示取不到有效值。
483
483
  */
484
- External: ExternalNodeInfo;
484
+ External?: ExternalNodeInfo;
485
485
  /**
486
486
  * 节点类型
487
487
  注意:此字段可能返回 null,表示取不到有效值。
488
488
  */
489
- NodeType: string;
489
+ NodeType?: string;
490
490
  }
491
491
  /**
492
492
  * DescribeHealthCheckPolicyBindings请求参数结构体
@@ -1169,12 +1169,12 @@ export interface RegularNodeInfo {
1169
1169
  * 节点配置
1170
1170
  注意:此字段可能返回 null,表示取不到有效值。
1171
1171
  */
1172
- InstanceAdvancedSettings: InstanceAdvancedSettings;
1172
+ InstanceAdvancedSettings?: InstanceAdvancedSettings;
1173
1173
  /**
1174
1174
  * 自动伸缩组ID
1175
1175
  注意:此字段可能返回 null,表示取不到有效值。
1176
1176
  */
1177
- AutoscalingGroupId: string;
1177
+ AutoscalingGroupId?: string;
1178
1178
  }
1179
1179
  /**
1180
1180
  * DescribeHealthCheckPolicyBindings返回参数结构体