@alicloud/cs20151215 3.3.2 → 3.3.4

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.
package/src/client.ts CHANGED
@@ -450,9 +450,9 @@ export class AttachInstancesResponseBody extends $tea.Model {
450
450
  }
451
451
 
452
452
  export class AttachInstancesResponse extends $tea.Model {
453
- headers: { [key: string]: string };
454
- statusCode: number;
455
- body: AttachInstancesResponseBody;
453
+ headers?: { [key: string]: string };
454
+ statusCode?: number;
455
+ body?: AttachInstancesResponseBody;
456
456
  static names(): { [key: string]: string } {
457
457
  return {
458
458
  headers: 'headers',
@@ -525,9 +525,9 @@ export class AttachInstancesToNodePoolResponseBody extends $tea.Model {
525
525
  }
526
526
 
527
527
  export class AttachInstancesToNodePoolResponse extends $tea.Model {
528
- headers: { [key: string]: string };
529
- statusCode: number;
530
- body: AttachInstancesToNodePoolResponseBody;
528
+ headers?: { [key: string]: string };
529
+ statusCode?: number;
530
+ body?: AttachInstancesToNodePoolResponseBody;
531
531
  static names(): { [key: string]: string } {
532
532
  return {
533
533
  headers: 'headers',
@@ -550,8 +550,8 @@ export class AttachInstancesToNodePoolResponse extends $tea.Model {
550
550
  }
551
551
 
552
552
  export class CancelClusterUpgradeResponse extends $tea.Model {
553
- headers: { [key: string]: string };
554
- statusCode: number;
553
+ headers?: { [key: string]: string };
554
+ statusCode?: number;
555
555
  static names(): { [key: string]: string } {
556
556
  return {
557
557
  headers: 'headers',
@@ -572,8 +572,8 @@ export class CancelClusterUpgradeResponse extends $tea.Model {
572
572
  }
573
573
 
574
574
  export class CancelComponentUpgradeResponse extends $tea.Model {
575
- headers: { [key: string]: string };
576
- statusCode: number;
575
+ headers?: { [key: string]: string };
576
+ statusCode?: number;
577
577
  static names(): { [key: string]: string } {
578
578
  return {
579
579
  headers: 'headers',
@@ -613,9 +613,9 @@ export class CancelOperationPlanResponseBody extends $tea.Model {
613
613
  }
614
614
 
615
615
  export class CancelOperationPlanResponse extends $tea.Model {
616
- headers: { [key: string]: string };
617
- statusCode: number;
618
- body: CancelOperationPlanResponseBody;
616
+ headers?: { [key: string]: string };
617
+ statusCode?: number;
618
+ body?: CancelOperationPlanResponseBody;
619
619
  static names(): { [key: string]: string } {
620
620
  return {
621
621
  headers: 'headers',
@@ -638,8 +638,8 @@ export class CancelOperationPlanResponse extends $tea.Model {
638
638
  }
639
639
 
640
640
  export class CancelTaskResponse extends $tea.Model {
641
- headers: { [key: string]: string };
642
- statusCode: number;
641
+ headers?: { [key: string]: string };
642
+ statusCode?: number;
643
643
  static names(): { [key: string]: string } {
644
644
  return {
645
645
  headers: 'headers',
@@ -679,8 +679,8 @@ export class CancelWorkflowRequest extends $tea.Model {
679
679
  }
680
680
 
681
681
  export class CancelWorkflowResponse extends $tea.Model {
682
- headers: { [key: string]: string };
683
- statusCode: number;
682
+ headers?: { [key: string]: string };
683
+ statusCode?: number;
684
684
  static names(): { [key: string]: string } {
685
685
  return {
686
686
  headers: 'headers',
@@ -729,9 +729,9 @@ export class CheckControlPlaneLogEnableResponseBody extends $tea.Model {
729
729
  }
730
730
 
731
731
  export class CheckControlPlaneLogEnableResponse extends $tea.Model {
732
- headers: { [key: string]: string };
733
- statusCode: number;
734
- body: CheckControlPlaneLogEnableResponseBody;
732
+ headers?: { [key: string]: string };
733
+ statusCode?: number;
734
+ body?: CheckControlPlaneLogEnableResponseBody;
735
735
  static names(): { [key: string]: string } {
736
736
  return {
737
737
  headers: 'headers',
@@ -812,8 +812,8 @@ export class CreateAutoscalingConfigRequest extends $tea.Model {
812
812
  }
813
813
 
814
814
  export class CreateAutoscalingConfigResponse extends $tea.Model {
815
- headers: { [key: string]: string };
816
- statusCode: number;
815
+ headers?: { [key: string]: string };
816
+ statusCode?: number;
817
817
  static names(): { [key: string]: string } {
818
818
  return {
819
819
  headers: 'headers',
@@ -1145,9 +1145,9 @@ export class CreateClusterResponseBody extends $tea.Model {
1145
1145
  }
1146
1146
 
1147
1147
  export class CreateClusterResponse extends $tea.Model {
1148
- headers: { [key: string]: string };
1149
- statusCode: number;
1150
- body: CreateClusterResponseBody;
1148
+ headers?: { [key: string]: string };
1149
+ statusCode?: number;
1150
+ body?: CreateClusterResponseBody;
1151
1151
  static names(): { [key: string]: string } {
1152
1152
  return {
1153
1153
  headers: 'headers',
@@ -1220,10 +1220,12 @@ export class CreateClusterNodePoolRequest extends $tea.Model {
1220
1220
 
1221
1221
  export class CreateClusterNodePoolResponseBody extends $tea.Model {
1222
1222
  nodepoolId?: string;
1223
+ requestId?: string;
1223
1224
  taskId?: string;
1224
1225
  static names(): { [key: string]: string } {
1225
1226
  return {
1226
1227
  nodepoolId: 'nodepool_id',
1228
+ requestId: 'request_id',
1227
1229
  taskId: 'task_id',
1228
1230
  };
1229
1231
  }
@@ -1231,6 +1233,7 @@ export class CreateClusterNodePoolResponseBody extends $tea.Model {
1231
1233
  static types(): { [key: string]: any } {
1232
1234
  return {
1233
1235
  nodepoolId: 'string',
1236
+ requestId: 'string',
1234
1237
  taskId: 'string',
1235
1238
  };
1236
1239
  }
@@ -1241,9 +1244,9 @@ export class CreateClusterNodePoolResponseBody extends $tea.Model {
1241
1244
  }
1242
1245
 
1243
1246
  export class CreateClusterNodePoolResponse extends $tea.Model {
1244
- headers: { [key: string]: string };
1245
- statusCode: number;
1246
- body: CreateClusterNodePoolResponseBody;
1247
+ headers?: { [key: string]: string };
1248
+ statusCode?: number;
1249
+ body?: CreateClusterNodePoolResponseBody;
1247
1250
  static names(): { [key: string]: string } {
1248
1251
  return {
1249
1252
  headers: 'headers',
@@ -1313,9 +1316,9 @@ export class CreateEdgeMachineResponseBody extends $tea.Model {
1313
1316
  }
1314
1317
 
1315
1318
  export class CreateEdgeMachineResponse extends $tea.Model {
1316
- headers: { [key: string]: string };
1317
- statusCode: number;
1318
- body: CreateEdgeMachineResponseBody;
1319
+ headers?: { [key: string]: string };
1320
+ statusCode?: number;
1321
+ body?: CreateEdgeMachineResponseBody;
1319
1322
  static names(): { [key: string]: string } {
1320
1323
  return {
1321
1324
  headers: 'headers',
@@ -1397,9 +1400,9 @@ export class CreateKubernetesTriggerResponseBody extends $tea.Model {
1397
1400
  }
1398
1401
 
1399
1402
  export class CreateKubernetesTriggerResponse extends $tea.Model {
1400
- headers: { [key: string]: string };
1401
- statusCode: number;
1402
- body: CreateKubernetesTriggerResponseBody;
1403
+ headers?: { [key: string]: string };
1404
+ statusCode?: number;
1405
+ body?: CreateKubernetesTriggerResponseBody;
1403
1406
  static names(): { [key: string]: string } {
1404
1407
  return {
1405
1408
  headers: 'headers',
@@ -1472,9 +1475,9 @@ export class CreateTemplateResponseBody extends $tea.Model {
1472
1475
  }
1473
1476
 
1474
1477
  export class CreateTemplateResponse extends $tea.Model {
1475
- headers: { [key: string]: string };
1476
- statusCode: number;
1477
- body: CreateTemplateResponseBody;
1478
+ headers?: { [key: string]: string };
1479
+ statusCode?: number;
1480
+ body?: CreateTemplateResponseBody;
1478
1481
  static names(): { [key: string]: string } {
1479
1482
  return {
1480
1483
  headers: 'headers',
@@ -1556,9 +1559,9 @@ export class CreateTriggerResponseBody extends $tea.Model {
1556
1559
  }
1557
1560
 
1558
1561
  export class CreateTriggerResponse extends $tea.Model {
1559
- headers: { [key: string]: string };
1560
- statusCode: number;
1561
- body: CreateTriggerResponseBody;
1562
+ headers?: { [key: string]: string };
1563
+ statusCode?: number;
1564
+ body?: CreateTriggerResponseBody;
1562
1565
  static names(): { [key: string]: string } {
1563
1566
  return {
1564
1567
  headers: 'headers',
@@ -1581,8 +1584,8 @@ export class CreateTriggerResponse extends $tea.Model {
1581
1584
  }
1582
1585
 
1583
1586
  export class DeleteAlertContactResponse extends $tea.Model {
1584
- headers: { [key: string]: string };
1585
- statusCode: number;
1587
+ headers?: { [key: string]: string };
1588
+ statusCode?: number;
1586
1589
  static names(): { [key: string]: string } {
1587
1590
  return {
1588
1591
  headers: 'headers',
@@ -1603,8 +1606,8 @@ export class DeleteAlertContactResponse extends $tea.Model {
1603
1606
  }
1604
1607
 
1605
1608
  export class DeleteAlertContactGroupResponse extends $tea.Model {
1606
- headers: { [key: string]: string };
1607
- statusCode: number;
1609
+ headers?: { [key: string]: string };
1610
+ statusCode?: number;
1608
1611
  static names(): { [key: string]: string } {
1609
1612
  return {
1610
1613
  headers: 'headers',
@@ -1700,9 +1703,9 @@ export class DeleteClusterResponseBody extends $tea.Model {
1700
1703
  }
1701
1704
 
1702
1705
  export class DeleteClusterResponse extends $tea.Model {
1703
- headers: { [key: string]: string };
1704
- statusCode: number;
1705
- body: DeleteClusterResponseBody;
1706
+ headers?: { [key: string]: string };
1707
+ statusCode?: number;
1708
+ body?: DeleteClusterResponseBody;
1706
1709
  static names(): { [key: string]: string } {
1707
1710
  return {
1708
1711
  headers: 'headers',
@@ -1766,9 +1769,9 @@ export class DeleteClusterNodepoolResponseBody extends $tea.Model {
1766
1769
  }
1767
1770
 
1768
1771
  export class DeleteClusterNodepoolResponse extends $tea.Model {
1769
- headers: { [key: string]: string };
1770
- statusCode: number;
1771
- body: DeleteClusterNodepoolResponseBody;
1772
+ headers?: { [key: string]: string };
1773
+ statusCode?: number;
1774
+ body?: DeleteClusterNodepoolResponseBody;
1772
1775
  static names(): { [key: string]: string } {
1773
1776
  return {
1774
1777
  headers: 'headers',
@@ -1841,9 +1844,9 @@ export class DeleteClusterNodesResponseBody extends $tea.Model {
1841
1844
  }
1842
1845
 
1843
1846
  export class DeleteClusterNodesResponse extends $tea.Model {
1844
- headers: { [key: string]: string };
1845
- statusCode: number;
1846
- body: DeleteClusterNodesResponseBody;
1847
+ headers?: { [key: string]: string };
1848
+ statusCode?: number;
1849
+ body?: DeleteClusterNodesResponseBody;
1847
1850
  static names(): { [key: string]: string } {
1848
1851
  return {
1849
1852
  headers: 'headers',
@@ -1885,8 +1888,8 @@ export class DeleteEdgeMachineRequest extends $tea.Model {
1885
1888
  }
1886
1889
 
1887
1890
  export class DeleteEdgeMachineResponse extends $tea.Model {
1888
- headers: { [key: string]: string };
1889
- statusCode: number;
1891
+ headers?: { [key: string]: string };
1892
+ statusCode?: number;
1890
1893
  static names(): { [key: string]: string } {
1891
1894
  return {
1892
1895
  headers: 'headers',
@@ -1907,8 +1910,8 @@ export class DeleteEdgeMachineResponse extends $tea.Model {
1907
1910
  }
1908
1911
 
1909
1912
  export class DeleteKubernetesTriggerResponse extends $tea.Model {
1910
- headers: { [key: string]: string };
1911
- statusCode: number;
1913
+ headers?: { [key: string]: string };
1914
+ statusCode?: number;
1912
1915
  static names(): { [key: string]: string } {
1913
1916
  return {
1914
1917
  headers: 'headers',
@@ -1967,9 +1970,9 @@ export class DeletePolicyInstanceResponseBody extends $tea.Model {
1967
1970
  }
1968
1971
 
1969
1972
  export class DeletePolicyInstanceResponse extends $tea.Model {
1970
- headers: { [key: string]: string };
1971
- statusCode: number;
1972
- body: DeletePolicyInstanceResponseBody;
1973
+ headers?: { [key: string]: string };
1974
+ statusCode?: number;
1975
+ body?: DeletePolicyInstanceResponseBody;
1973
1976
  static names(): { [key: string]: string } {
1974
1977
  return {
1975
1978
  headers: 'headers',
@@ -1992,8 +1995,8 @@ export class DeletePolicyInstanceResponse extends $tea.Model {
1992
1995
  }
1993
1996
 
1994
1997
  export class DeleteTemplateResponse extends $tea.Model {
1995
- headers: { [key: string]: string };
1996
- statusCode: number;
1998
+ headers?: { [key: string]: string };
1999
+ statusCode?: number;
1997
2000
  static names(): { [key: string]: string } {
1998
2001
  return {
1999
2002
  headers: 'headers',
@@ -2014,8 +2017,8 @@ export class DeleteTemplateResponse extends $tea.Model {
2014
2017
  }
2015
2018
 
2016
2019
  export class DeleteTriggerResponse extends $tea.Model {
2017
- headers: { [key: string]: string };
2018
- statusCode: number;
2020
+ headers?: { [key: string]: string };
2021
+ statusCode?: number;
2019
2022
  static names(): { [key: string]: string } {
2020
2023
  return {
2021
2024
  headers: 'headers',
@@ -2080,9 +2083,9 @@ export class DeployPolicyInstanceResponseBody extends $tea.Model {
2080
2083
  }
2081
2084
 
2082
2085
  export class DeployPolicyInstanceResponse extends $tea.Model {
2083
- headers: { [key: string]: string };
2084
- statusCode: number;
2085
- body: DeployPolicyInstanceResponseBody;
2086
+ headers?: { [key: string]: string };
2087
+ statusCode?: number;
2088
+ body?: DeployPolicyInstanceResponseBody;
2086
2089
  static names(): { [key: string]: string } {
2087
2090
  return {
2088
2091
  headers: 'headers',
@@ -2154,9 +2157,9 @@ export class DescirbeWorkflowResponseBody extends $tea.Model {
2154
2157
  }
2155
2158
 
2156
2159
  export class DescirbeWorkflowResponse extends $tea.Model {
2157
- headers: { [key: string]: string };
2158
- statusCode: number;
2159
- body: DescirbeWorkflowResponseBody;
2160
+ headers?: { [key: string]: string };
2161
+ statusCode?: number;
2162
+ body?: DescirbeWorkflowResponseBody;
2160
2163
  static names(): { [key: string]: string } {
2161
2164
  return {
2162
2165
  headers: 'headers',
@@ -2259,9 +2262,9 @@ export class DescribeAddonResponseBody extends $tea.Model {
2259
2262
  }
2260
2263
 
2261
2264
  export class DescribeAddonResponse extends $tea.Model {
2262
- headers: { [key: string]: string };
2263
- statusCode: number;
2264
- body: DescribeAddonResponseBody;
2265
+ headers?: { [key: string]: string };
2266
+ statusCode?: number;
2267
+ body?: DescribeAddonResponseBody;
2265
2268
  static names(): { [key: string]: string } {
2266
2269
  return {
2267
2270
  headers: 'headers',
@@ -2337,9 +2340,9 @@ export class DescribeAddonsResponseBody extends $tea.Model {
2337
2340
  }
2338
2341
 
2339
2342
  export class DescribeAddonsResponse extends $tea.Model {
2340
- headers: { [key: string]: string };
2341
- statusCode: number;
2342
- body: DescribeAddonsResponseBody;
2343
+ headers?: { [key: string]: string };
2344
+ statusCode?: number;
2345
+ body?: DescribeAddonsResponseBody;
2343
2346
  static names(): { [key: string]: string } {
2344
2347
  return {
2345
2348
  headers: 'headers',
@@ -2390,9 +2393,9 @@ export class DescribeClusterAddonInstanceResponseBody extends $tea.Model {
2390
2393
  }
2391
2394
 
2392
2395
  export class DescribeClusterAddonInstanceResponse extends $tea.Model {
2393
- headers: { [key: string]: string };
2394
- statusCode: number;
2395
- body: DescribeClusterAddonInstanceResponseBody;
2396
+ headers?: { [key: string]: string };
2397
+ statusCode?: number;
2398
+ body?: DescribeClusterAddonInstanceResponseBody;
2396
2399
  static names(): { [key: string]: string } {
2397
2400
  return {
2398
2401
  headers: 'headers',
@@ -2440,9 +2443,9 @@ export class DescribeClusterAddonMetadataResponseBody extends $tea.Model {
2440
2443
  }
2441
2444
 
2442
2445
  export class DescribeClusterAddonMetadataResponse extends $tea.Model {
2443
- headers: { [key: string]: string };
2444
- statusCode: number;
2445
- body: DescribeClusterAddonMetadataResponseBody;
2446
+ headers?: { [key: string]: string };
2447
+ statusCode?: number;
2448
+ body?: DescribeClusterAddonMetadataResponseBody;
2446
2449
  static names(): { [key: string]: string } {
2447
2450
  return {
2448
2451
  headers: 'headers',
@@ -2465,9 +2468,9 @@ export class DescribeClusterAddonMetadataResponse extends $tea.Model {
2465
2468
  }
2466
2469
 
2467
2470
  export class DescribeClusterAddonUpgradeStatusResponse extends $tea.Model {
2468
- headers: { [key: string]: string };
2469
- statusCode: number;
2470
- body: {[key: string]: any};
2471
+ headers?: { [key: string]: string };
2472
+ statusCode?: number;
2473
+ body?: {[key: string]: any};
2471
2474
  static names(): { [key: string]: string } {
2472
2475
  return {
2473
2476
  headers: 'headers',
@@ -2528,9 +2531,9 @@ export class DescribeClusterAddonsUpgradeStatusShrinkRequest extends $tea.Model
2528
2531
  }
2529
2532
 
2530
2533
  export class DescribeClusterAddonsUpgradeStatusResponse extends $tea.Model {
2531
- headers: { [key: string]: string };
2532
- statusCode: number;
2533
- body: {[key: string]: any};
2534
+ headers?: { [key: string]: string };
2535
+ statusCode?: number;
2536
+ body?: {[key: string]: any};
2534
2537
  static names(): { [key: string]: string } {
2535
2538
  return {
2536
2539
  headers: 'headers',
@@ -2553,9 +2556,9 @@ export class DescribeClusterAddonsUpgradeStatusResponse extends $tea.Model {
2553
2556
  }
2554
2557
 
2555
2558
  export class DescribeClusterAddonsVersionResponse extends $tea.Model {
2556
- headers: { [key: string]: string };
2557
- statusCode: number;
2558
- body: {[key: string]: any};
2559
+ headers?: { [key: string]: string };
2560
+ statusCode?: number;
2561
+ body?: {[key: string]: any};
2559
2562
  static names(): { [key: string]: string } {
2560
2563
  return {
2561
2564
  headers: 'headers',
@@ -2612,9 +2615,9 @@ export class DescribeClusterAttachScriptsRequest extends $tea.Model {
2612
2615
  }
2613
2616
 
2614
2617
  export class DescribeClusterAttachScriptsResponse extends $tea.Model {
2615
- headers: { [key: string]: string };
2616
- statusCode: number;
2617
- body: string;
2618
+ headers?: { [key: string]: string };
2619
+ statusCode?: number;
2620
+ body?: string;
2618
2621
  static names(): { [key: string]: string } {
2619
2622
  return {
2620
2623
  headers: 'headers',
@@ -2743,9 +2746,9 @@ export class DescribeClusterDetailResponseBody extends $tea.Model {
2743
2746
  }
2744
2747
 
2745
2748
  export class DescribeClusterDetailResponse extends $tea.Model {
2746
- headers: { [key: string]: string };
2747
- statusCode: number;
2748
- body: DescribeClusterDetailResponseBody;
2749
+ headers?: { [key: string]: string };
2750
+ statusCode?: number;
2751
+ body?: DescribeClusterDetailResponseBody;
2749
2752
  static names(): { [key: string]: string } {
2750
2753
  return {
2751
2754
  headers: 'headers',
@@ -2815,9 +2818,9 @@ export class DescribeClusterEventsResponseBody extends $tea.Model {
2815
2818
  }
2816
2819
 
2817
2820
  export class DescribeClusterEventsResponse extends $tea.Model {
2818
- headers: { [key: string]: string };
2819
- statusCode: number;
2820
- body: DescribeClusterEventsResponseBody;
2821
+ headers?: { [key: string]: string };
2822
+ statusCode?: number;
2823
+ body?: DescribeClusterEventsResponseBody;
2821
2824
  static names(): { [key: string]: string } {
2822
2825
  return {
2823
2826
  headers: 'headers',
@@ -2840,9 +2843,9 @@ export class DescribeClusterEventsResponse extends $tea.Model {
2840
2843
  }
2841
2844
 
2842
2845
  export class DescribeClusterLogsResponse extends $tea.Model {
2843
- headers: { [key: string]: string };
2844
- statusCode: number;
2845
- body: DescribeClusterLogsResponseBody[];
2846
+ headers?: { [key: string]: string };
2847
+ statusCode?: number;
2848
+ body?: DescribeClusterLogsResponseBody[];
2846
2849
  static names(): { [key: string]: string } {
2847
2850
  return {
2848
2851
  headers: 'headers',
@@ -2914,9 +2917,9 @@ export class DescribeClusterNodePoolDetailResponseBody extends $tea.Model {
2914
2917
  }
2915
2918
 
2916
2919
  export class DescribeClusterNodePoolDetailResponse extends $tea.Model {
2917
- headers: { [key: string]: string };
2918
- statusCode: number;
2919
- body: DescribeClusterNodePoolDetailResponseBody;
2920
+ headers?: { [key: string]: string };
2921
+ statusCode?: number;
2922
+ body?: DescribeClusterNodePoolDetailResponseBody;
2920
2923
  static names(): { [key: string]: string } {
2921
2924
  return {
2922
2925
  headers: 'headers',
@@ -2958,9 +2961,9 @@ export class DescribeClusterNodePoolsResponseBody extends $tea.Model {
2958
2961
  }
2959
2962
 
2960
2963
  export class DescribeClusterNodePoolsResponse extends $tea.Model {
2961
- headers: { [key: string]: string };
2962
- statusCode: number;
2963
- body: DescribeClusterNodePoolsResponseBody;
2964
+ headers?: { [key: string]: string };
2965
+ statusCode?: number;
2966
+ body?: DescribeClusterNodePoolsResponseBody;
2964
2967
  static names(): { [key: string]: string } {
2965
2968
  return {
2966
2969
  headers: 'headers',
@@ -3036,9 +3039,9 @@ export class DescribeClusterNodesResponseBody extends $tea.Model {
3036
3039
  }
3037
3040
 
3038
3041
  export class DescribeClusterNodesResponse extends $tea.Model {
3039
- headers: { [key: string]: string };
3040
- statusCode: number;
3041
- body: DescribeClusterNodesResponseBody;
3042
+ headers?: { [key: string]: string };
3043
+ statusCode?: number;
3044
+ body?: DescribeClusterNodesResponseBody;
3042
3045
  static names(): { [key: string]: string } {
3043
3046
  return {
3044
3047
  headers: 'headers',
@@ -3061,9 +3064,9 @@ export class DescribeClusterNodesResponse extends $tea.Model {
3061
3064
  }
3062
3065
 
3063
3066
  export class DescribeClusterResourcesResponse extends $tea.Model {
3064
- headers: { [key: string]: string };
3065
- statusCode: number;
3066
- body: DescribeClusterResourcesResponseBody[];
3067
+ headers?: { [key: string]: string };
3068
+ statusCode?: number;
3069
+ body?: DescribeClusterResourcesResponseBody[];
3067
3070
  static names(): { [key: string]: string } {
3068
3071
  return {
3069
3072
  headers: 'headers',
@@ -3133,9 +3136,9 @@ export class DescribeClusterTasksResponseBody extends $tea.Model {
3133
3136
  }
3134
3137
 
3135
3138
  export class DescribeClusterTasksResponse extends $tea.Model {
3136
- headers: { [key: string]: string };
3137
- statusCode: number;
3138
- body: DescribeClusterTasksResponseBody;
3139
+ headers?: { [key: string]: string };
3140
+ statusCode?: number;
3141
+ body?: DescribeClusterTasksResponseBody;
3139
3142
  static names(): { [key: string]: string } {
3140
3143
  return {
3141
3144
  headers: 'headers',
@@ -3202,9 +3205,9 @@ export class DescribeClusterUserKubeconfigResponseBody extends $tea.Model {
3202
3205
  }
3203
3206
 
3204
3207
  export class DescribeClusterUserKubeconfigResponse extends $tea.Model {
3205
- headers: { [key: string]: string };
3206
- statusCode: number;
3207
- body: DescribeClusterUserKubeconfigResponseBody;
3208
+ headers?: { [key: string]: string };
3209
+ statusCode?: number;
3210
+ body?: DescribeClusterUserKubeconfigResponseBody;
3208
3211
  static names(): { [key: string]: string } {
3209
3212
  return {
3210
3213
  headers: 'headers',
@@ -3265,9 +3268,9 @@ export class DescribeClusterV2UserKubeconfigResponseBody extends $tea.Model {
3265
3268
  }
3266
3269
 
3267
3270
  export class DescribeClusterV2UserKubeconfigResponse extends $tea.Model {
3268
- headers: { [key: string]: string };
3269
- statusCode: number;
3270
- body: DescribeClusterV2UserKubeconfigResponseBody;
3271
+ headers?: { [key: string]: string };
3272
+ statusCode?: number;
3273
+ body?: DescribeClusterV2UserKubeconfigResponseBody;
3271
3274
  static names(): { [key: string]: string } {
3272
3275
  return {
3273
3276
  headers: 'headers',
@@ -3309,9 +3312,9 @@ export class DescribeClusterVulsResponseBody extends $tea.Model {
3309
3312
  }
3310
3313
 
3311
3314
  export class DescribeClusterVulsResponse extends $tea.Model {
3312
- headers: { [key: string]: string };
3313
- statusCode: number;
3314
- body: DescribeClusterVulsResponseBody;
3315
+ headers?: { [key: string]: string };
3316
+ statusCode?: number;
3317
+ body?: DescribeClusterVulsResponseBody;
3315
3318
  static names(): { [key: string]: string } {
3316
3319
  return {
3317
3320
  headers: 'headers',
@@ -3356,9 +3359,9 @@ export class DescribeClustersRequest extends $tea.Model {
3356
3359
  }
3357
3360
 
3358
3361
  export class DescribeClustersResponse extends $tea.Model {
3359
- headers: { [key: string]: string };
3360
- statusCode: number;
3361
- body: DescribeClustersResponseBody[];
3362
+ headers?: { [key: string]: string };
3363
+ statusCode?: number;
3364
+ body?: DescribeClustersResponseBody[];
3362
3365
  static names(): { [key: string]: string } {
3363
3366
  return {
3364
3367
  headers: 'headers',
@@ -3443,9 +3446,9 @@ export class DescribeClustersV1ResponseBody extends $tea.Model {
3443
3446
  }
3444
3447
 
3445
3448
  export class DescribeClustersV1Response extends $tea.Model {
3446
- headers: { [key: string]: string };
3447
- statusCode: number;
3448
- body: DescribeClustersV1ResponseBody;
3449
+ headers?: { [key: string]: string };
3450
+ statusCode?: number;
3451
+ body?: DescribeClustersV1ResponseBody;
3449
3452
  static names(): { [key: string]: string } {
3450
3453
  return {
3451
3454
  headers: 'headers',
@@ -3499,9 +3502,9 @@ export class DescribeEdgeMachineActiveProcessResponseBody extends $tea.Model {
3499
3502
  }
3500
3503
 
3501
3504
  export class DescribeEdgeMachineActiveProcessResponse extends $tea.Model {
3502
- headers: { [key: string]: string };
3503
- statusCode: number;
3504
- body: DescribeEdgeMachineActiveProcessResponseBody;
3505
+ headers?: { [key: string]: string };
3506
+ statusCode?: number;
3507
+ body?: DescribeEdgeMachineActiveProcessResponseBody;
3505
3508
  static names(): { [key: string]: string } {
3506
3509
  return {
3507
3510
  headers: 'headers',
@@ -3543,9 +3546,9 @@ export class DescribeEdgeMachineModelsResponseBody extends $tea.Model {
3543
3546
  }
3544
3547
 
3545
3548
  export class DescribeEdgeMachineModelsResponse extends $tea.Model {
3546
- headers: { [key: string]: string };
3547
- statusCode: number;
3548
- body: DescribeEdgeMachineModelsResponseBody;
3549
+ headers?: { [key: string]: string };
3550
+ statusCode?: number;
3551
+ body?: DescribeEdgeMachineModelsResponseBody;
3549
3552
  static names(): { [key: string]: string } {
3550
3553
  return {
3551
3554
  headers: 'headers',
@@ -3605,9 +3608,9 @@ export class DescribeEdgeMachineTunnelConfigDetailResponseBody extends $tea.Mode
3605
3608
  }
3606
3609
 
3607
3610
  export class DescribeEdgeMachineTunnelConfigDetailResponse extends $tea.Model {
3608
- headers: { [key: string]: string };
3609
- statusCode: number;
3610
- body: DescribeEdgeMachineTunnelConfigDetailResponseBody;
3611
+ headers?: { [key: string]: string };
3612
+ statusCode?: number;
3613
+ body?: DescribeEdgeMachineTunnelConfigDetailResponseBody;
3611
3614
  static names(): { [key: string]: string } {
3612
3615
  return {
3613
3616
  headers: 'headers',
@@ -3686,9 +3689,9 @@ export class DescribeEdgeMachinesResponseBody extends $tea.Model {
3686
3689
  }
3687
3690
 
3688
3691
  export class DescribeEdgeMachinesResponse extends $tea.Model {
3689
- headers: { [key: string]: string };
3690
- statusCode: number;
3691
- body: DescribeEdgeMachinesResponseBody;
3692
+ headers?: { [key: string]: string };
3693
+ statusCode?: number;
3694
+ body?: DescribeEdgeMachinesResponseBody;
3692
3695
  static names(): { [key: string]: string } {
3693
3696
  return {
3694
3697
  headers: 'headers',
@@ -3761,9 +3764,9 @@ export class DescribeEventsResponseBody extends $tea.Model {
3761
3764
  }
3762
3765
 
3763
3766
  export class DescribeEventsResponse extends $tea.Model {
3764
- headers: { [key: string]: string };
3765
- statusCode: number;
3766
- body: DescribeEventsResponseBody;
3767
+ headers?: { [key: string]: string };
3768
+ statusCode?: number;
3769
+ body?: DescribeEventsResponseBody;
3767
3770
  static names(): { [key: string]: string } {
3768
3771
  return {
3769
3772
  headers: 'headers',
@@ -3827,9 +3830,9 @@ export class DescribeExternalAgentResponseBody extends $tea.Model {
3827
3830
  }
3828
3831
 
3829
3832
  export class DescribeExternalAgentResponse extends $tea.Model {
3830
- headers: { [key: string]: string };
3831
- statusCode: number;
3832
- body: DescribeExternalAgentResponseBody;
3833
+ headers?: { [key: string]: string };
3834
+ statusCode?: number;
3835
+ body?: DescribeExternalAgentResponseBody;
3833
3836
  static names(): { [key: string]: string } {
3834
3837
  return {
3835
3838
  headers: 'headers',
@@ -3886,9 +3889,9 @@ export class DescribeKubernetesVersionMetadataRequest extends $tea.Model {
3886
3889
  }
3887
3890
 
3888
3891
  export class DescribeKubernetesVersionMetadataResponse extends $tea.Model {
3889
- headers: { [key: string]: string };
3890
- statusCode: number;
3891
- body: DescribeKubernetesVersionMetadataResponseBody[];
3892
+ headers?: { [key: string]: string };
3893
+ statusCode?: number;
3894
+ body?: DescribeKubernetesVersionMetadataResponseBody[];
3892
3895
  static names(): { [key: string]: string } {
3893
3896
  return {
3894
3897
  headers: 'headers',
@@ -3952,9 +3955,9 @@ export class DescribeNodePoolVulsResponseBody extends $tea.Model {
3952
3955
  }
3953
3956
 
3954
3957
  export class DescribeNodePoolVulsResponse extends $tea.Model {
3955
- headers: { [key: string]: string };
3956
- statusCode: number;
3957
- body: DescribeNodePoolVulsResponseBody;
3958
+ headers?: { [key: string]: string };
3959
+ statusCode?: number;
3960
+ body?: DescribeNodePoolVulsResponseBody;
3958
3961
  static names(): { [key: string]: string } {
3959
3962
  return {
3960
3963
  headers: 'headers',
@@ -3977,9 +3980,9 @@ export class DescribeNodePoolVulsResponse extends $tea.Model {
3977
3980
  }
3978
3981
 
3979
3982
  export class DescribePoliciesResponse extends $tea.Model {
3980
- headers: { [key: string]: string };
3981
- statusCode: number;
3982
- body: {[key: string]: any};
3983
+ headers?: { [key: string]: string };
3984
+ statusCode?: number;
3985
+ body?: {[key: string]: any};
3983
3986
  static names(): { [key: string]: string } {
3984
3987
  return {
3985
3988
  headers: 'headers',
@@ -4042,9 +4045,9 @@ export class DescribePolicyDetailsResponseBody extends $tea.Model {
4042
4045
  }
4043
4046
 
4044
4047
  export class DescribePolicyDetailsResponse extends $tea.Model {
4045
- headers: { [key: string]: string };
4046
- statusCode: number;
4047
- body: DescribePolicyDetailsResponseBody;
4048
+ headers?: { [key: string]: string };
4049
+ statusCode?: number;
4050
+ body?: DescribePolicyDetailsResponseBody;
4048
4051
  static names(): { [key: string]: string } {
4049
4052
  return {
4050
4053
  headers: 'headers',
@@ -4095,9 +4098,9 @@ export class DescribePolicyGovernanceInClusterResponseBody extends $tea.Model {
4095
4098
  }
4096
4099
 
4097
4100
  export class DescribePolicyGovernanceInClusterResponse extends $tea.Model {
4098
- headers: { [key: string]: string };
4099
- statusCode: number;
4100
- body: DescribePolicyGovernanceInClusterResponseBody;
4101
+ headers?: { [key: string]: string };
4102
+ statusCode?: number;
4103
+ body?: DescribePolicyGovernanceInClusterResponseBody;
4101
4104
  static names(): { [key: string]: string } {
4102
4105
  return {
4103
4106
  headers: 'headers',
@@ -4142,9 +4145,9 @@ export class DescribePolicyInstancesRequest extends $tea.Model {
4142
4145
  }
4143
4146
 
4144
4147
  export class DescribePolicyInstancesResponse extends $tea.Model {
4145
- headers: { [key: string]: string };
4146
- statusCode: number;
4147
- body: DescribePolicyInstancesResponseBody[];
4148
+ headers?: { [key: string]: string };
4149
+ statusCode?: number;
4150
+ body?: DescribePolicyInstancesResponseBody[];
4148
4151
  static names(): { [key: string]: string } {
4149
4152
  return {
4150
4153
  headers: 'headers',
@@ -4189,9 +4192,9 @@ export class DescribePolicyInstancesStatusResponseBody extends $tea.Model {
4189
4192
  }
4190
4193
 
4191
4194
  export class DescribePolicyInstancesStatusResponse extends $tea.Model {
4192
- headers: { [key: string]: string };
4193
- statusCode: number;
4194
- body: DescribePolicyInstancesStatusResponseBody;
4195
+ headers?: { [key: string]: string };
4196
+ statusCode?: number;
4197
+ body?: DescribePolicyInstancesStatusResponseBody;
4195
4198
  static names(): { [key: string]: string } {
4196
4199
  return {
4197
4200
  headers: 'headers',
@@ -4258,9 +4261,9 @@ export class DescribeSubaccountK8sClusterUserConfigResponseBody extends $tea.Mod
4258
4261
  }
4259
4262
 
4260
4263
  export class DescribeSubaccountK8sClusterUserConfigResponse extends $tea.Model {
4261
- headers: { [key: string]: string };
4262
- statusCode: number;
4263
- body: DescribeSubaccountK8sClusterUserConfigResponseBody;
4264
+ headers?: { [key: string]: string };
4265
+ statusCode?: number;
4266
+ body?: DescribeSubaccountK8sClusterUserConfigResponseBody;
4264
4267
  static names(): { [key: string]: string } {
4265
4268
  return {
4266
4269
  headers: 'headers',
@@ -4338,9 +4341,9 @@ export class DescribeTaskInfoResponseBody extends $tea.Model {
4338
4341
  }
4339
4342
 
4340
4343
  export class DescribeTaskInfoResponse extends $tea.Model {
4341
- headers: { [key: string]: string };
4342
- statusCode: number;
4343
- body: DescribeTaskInfoResponseBody;
4344
+ headers?: { [key: string]: string };
4345
+ statusCode?: number;
4346
+ body?: DescribeTaskInfoResponseBody;
4344
4347
  static names(): { [key: string]: string } {
4345
4348
  return {
4346
4349
  headers: 'headers',
@@ -4382,9 +4385,9 @@ export class DescribeTemplateAttributeRequest extends $tea.Model {
4382
4385
  }
4383
4386
 
4384
4387
  export class DescribeTemplateAttributeResponse extends $tea.Model {
4385
- headers: { [key: string]: string };
4386
- statusCode: number;
4387
- body: DescribeTemplateAttributeResponseBody[];
4388
+ headers?: { [key: string]: string };
4389
+ statusCode?: number;
4390
+ body?: DescribeTemplateAttributeResponseBody[];
4388
4391
  static names(): { [key: string]: string } {
4389
4392
  return {
4390
4393
  headers: 'headers',
@@ -4454,9 +4457,9 @@ export class DescribeTemplatesResponseBody extends $tea.Model {
4454
4457
  }
4455
4458
 
4456
4459
  export class DescribeTemplatesResponse extends $tea.Model {
4457
- headers: { [key: string]: string };
4458
- statusCode: number;
4459
- body: DescribeTemplatesResponseBody;
4460
+ headers?: { [key: string]: string };
4461
+ statusCode?: number;
4462
+ body?: DescribeTemplatesResponseBody;
4460
4463
  static names(): { [key: string]: string } {
4461
4464
  return {
4462
4465
  headers: 'headers',
@@ -4507,9 +4510,9 @@ export class DescribeTriggerRequest extends $tea.Model {
4507
4510
  }
4508
4511
 
4509
4512
  export class DescribeTriggerResponse extends $tea.Model {
4510
- headers: { [key: string]: string };
4511
- statusCode: number;
4512
- body: DescribeTriggerResponseBody[];
4513
+ headers?: { [key: string]: string };
4514
+ statusCode?: number;
4515
+ body?: DescribeTriggerResponseBody[];
4513
4516
  static names(): { [key: string]: string } {
4514
4517
  return {
4515
4518
  headers: 'headers',
@@ -4532,9 +4535,9 @@ export class DescribeTriggerResponse extends $tea.Model {
4532
4535
  }
4533
4536
 
4534
4537
  export class DescribeUserClusterNamespacesResponse extends $tea.Model {
4535
- headers: { [key: string]: string };
4536
- statusCode: number;
4537
- body: string[];
4538
+ headers?: { [key: string]: string };
4539
+ statusCode?: number;
4540
+ body?: string[];
4538
4541
  static names(): { [key: string]: string } {
4539
4542
  return {
4540
4543
  headers: 'headers',
@@ -4557,9 +4560,9 @@ export class DescribeUserClusterNamespacesResponse extends $tea.Model {
4557
4560
  }
4558
4561
 
4559
4562
  export class DescribeUserPermissionResponse extends $tea.Model {
4560
- headers: { [key: string]: string };
4561
- statusCode: number;
4562
- body: DescribeUserPermissionResponseBody[];
4563
+ headers?: { [key: string]: string };
4564
+ statusCode?: number;
4565
+ body?: DescribeUserPermissionResponseBody[];
4563
4566
  static names(): { [key: string]: string } {
4564
4567
  return {
4565
4568
  headers: 'headers',
@@ -4619,9 +4622,9 @@ export class DescribeUserQuotaResponseBody extends $tea.Model {
4619
4622
  }
4620
4623
 
4621
4624
  export class DescribeUserQuotaResponse extends $tea.Model {
4622
- headers: { [key: string]: string };
4623
- statusCode: number;
4624
- body: DescribeUserQuotaResponseBody;
4625
+ headers?: { [key: string]: string };
4626
+ statusCode?: number;
4627
+ body?: DescribeUserQuotaResponseBody;
4625
4628
  static names(): { [key: string]: string } {
4626
4629
  return {
4627
4630
  headers: 'headers',
@@ -4663,9 +4666,9 @@ export class DescribeWorkflowsResponseBody extends $tea.Model {
4663
4666
  }
4664
4667
 
4665
4668
  export class DescribeWorkflowsResponse extends $tea.Model {
4666
- headers: { [key: string]: string };
4667
- statusCode: number;
4668
- body: DescribeWorkflowsResponseBody;
4669
+ headers?: { [key: string]: string };
4670
+ statusCode?: number;
4671
+ body?: DescribeWorkflowsResponseBody;
4669
4672
  static names(): { [key: string]: string } {
4670
4673
  return {
4671
4674
  headers: 'headers',
@@ -4735,9 +4738,9 @@ export class EdgeClusterAddEdgeMachineResponseBody extends $tea.Model {
4735
4738
  }
4736
4739
 
4737
4740
  export class EdgeClusterAddEdgeMachineResponse extends $tea.Model {
4738
- headers: { [key: string]: string };
4739
- statusCode: number;
4740
- body: EdgeClusterAddEdgeMachineResponseBody;
4741
+ headers?: { [key: string]: string };
4742
+ statusCode?: number;
4743
+ body?: EdgeClusterAddEdgeMachineResponseBody;
4741
4744
  static names(): { [key: string]: string } {
4742
4745
  return {
4743
4746
  headers: 'headers',
@@ -4807,9 +4810,9 @@ export class FixNodePoolVulsResponseBody extends $tea.Model {
4807
4810
  }
4808
4811
 
4809
4812
  export class FixNodePoolVulsResponse extends $tea.Model {
4810
- headers: { [key: string]: string };
4811
- statusCode: number;
4812
- body: FixNodePoolVulsResponseBody;
4813
+ headers?: { [key: string]: string };
4814
+ statusCode?: number;
4815
+ body?: FixNodePoolVulsResponseBody;
4813
4816
  static names(): { [key: string]: string } {
4814
4817
  return {
4815
4818
  headers: 'headers',
@@ -4863,9 +4866,9 @@ export class GetClusterAddonInstanceResponseBody extends $tea.Model {
4863
4866
  }
4864
4867
 
4865
4868
  export class GetClusterAddonInstanceResponse extends $tea.Model {
4866
- headers: { [key: string]: string };
4867
- statusCode: number;
4868
- body: GetClusterAddonInstanceResponseBody;
4869
+ headers?: { [key: string]: string };
4870
+ statusCode?: number;
4871
+ body?: GetClusterAddonInstanceResponseBody;
4869
4872
  static names(): { [key: string]: string } {
4870
4873
  return {
4871
4874
  headers: 'headers',
@@ -4925,9 +4928,9 @@ export class GetClusterCheckResponseBody extends $tea.Model {
4925
4928
  }
4926
4929
 
4927
4930
  export class GetClusterCheckResponse extends $tea.Model {
4928
- headers: { [key: string]: string };
4929
- statusCode: number;
4930
- body: GetClusterCheckResponseBody;
4931
+ headers?: { [key: string]: string };
4932
+ statusCode?: number;
4933
+ body?: GetClusterCheckResponseBody;
4931
4934
  static names(): { [key: string]: string } {
4932
4935
  return {
4933
4936
  headers: 'headers',
@@ -4978,9 +4981,9 @@ export class GetKubernetesTriggerRequest extends $tea.Model {
4978
4981
  }
4979
4982
 
4980
4983
  export class GetKubernetesTriggerResponse extends $tea.Model {
4981
- headers: { [key: string]: string };
4982
- statusCode: number;
4983
- body: GetKubernetesTriggerResponseBody[];
4984
+ headers?: { [key: string]: string };
4985
+ statusCode?: number;
4986
+ body?: GetKubernetesTriggerResponseBody[];
4984
4987
  static names(): { [key: string]: string } {
4985
4988
  return {
4986
4989
  headers: 'headers',
@@ -5034,9 +5037,9 @@ export class GetUpgradeStatusResponseBody extends $tea.Model {
5034
5037
  }
5035
5038
 
5036
5039
  export class GetUpgradeStatusResponse extends $tea.Model {
5037
- headers: { [key: string]: string };
5038
- statusCode: number;
5039
- body: GetUpgradeStatusResponseBody;
5040
+ headers?: { [key: string]: string };
5041
+ statusCode?: number;
5042
+ body?: GetUpgradeStatusResponseBody;
5040
5043
  static names(): { [key: string]: string } {
5041
5044
  return {
5042
5045
  headers: 'headers',
@@ -5078,8 +5081,8 @@ export class GrantPermissionsRequest extends $tea.Model {
5078
5081
  }
5079
5082
 
5080
5083
  export class GrantPermissionsResponse extends $tea.Model {
5081
- headers: { [key: string]: string };
5082
- statusCode: number;
5084
+ headers?: { [key: string]: string };
5085
+ statusCode?: number;
5083
5086
  static names(): { [key: string]: string } {
5084
5087
  return {
5085
5088
  headers: 'headers',
@@ -5119,8 +5122,8 @@ export class InstallClusterAddonsRequest extends $tea.Model {
5119
5122
  }
5120
5123
 
5121
5124
  export class InstallClusterAddonsResponse extends $tea.Model {
5122
- headers: { [key: string]: string };
5123
- statusCode: number;
5125
+ headers?: { [key: string]: string };
5126
+ statusCode?: number;
5124
5127
  static names(): { [key: string]: string } {
5125
5128
  return {
5126
5129
  headers: 'headers',
@@ -5194,9 +5197,9 @@ export class ListAddonsResponseBody extends $tea.Model {
5194
5197
  }
5195
5198
 
5196
5199
  export class ListAddonsResponse extends $tea.Model {
5197
- headers: { [key: string]: string };
5198
- statusCode: number;
5199
- body: ListAddonsResponseBody;
5200
+ headers?: { [key: string]: string };
5201
+ statusCode?: number;
5202
+ body?: ListAddonsResponseBody;
5200
5203
  static names(): { [key: string]: string } {
5201
5204
  return {
5202
5205
  headers: 'headers',
@@ -5238,9 +5241,9 @@ export class ListClusterAddonInstancesResponseBody extends $tea.Model {
5238
5241
  }
5239
5242
 
5240
5243
  export class ListClusterAddonInstancesResponse extends $tea.Model {
5241
- headers: { [key: string]: string };
5242
- statusCode: number;
5243
- body: ListClusterAddonInstancesResponseBody;
5244
+ headers?: { [key: string]: string };
5245
+ statusCode?: number;
5246
+ body?: ListClusterAddonInstancesResponseBody;
5244
5247
  static names(): { [key: string]: string } {
5245
5248
  return {
5246
5249
  headers: 'headers',
@@ -5301,9 +5304,9 @@ export class ListClusterChecksResponseBody extends $tea.Model {
5301
5304
  }
5302
5305
 
5303
5306
  export class ListClusterChecksResponse extends $tea.Model {
5304
- headers: { [key: string]: string };
5305
- statusCode: number;
5306
- body: ListClusterChecksResponseBody;
5307
+ headers?: { [key: string]: string };
5308
+ statusCode?: number;
5309
+ body?: ListClusterChecksResponseBody;
5307
5310
  static names(): { [key: string]: string } {
5308
5311
  return {
5309
5312
  headers: 'headers',
@@ -5367,9 +5370,9 @@ export class ListOperationPlansResponseBody extends $tea.Model {
5367
5370
  }
5368
5371
 
5369
5372
  export class ListOperationPlansResponse extends $tea.Model {
5370
- headers: { [key: string]: string };
5371
- statusCode: number;
5372
- body: ListOperationPlansResponseBody;
5373
+ headers?: { [key: string]: string };
5374
+ statusCode?: number;
5375
+ body?: ListOperationPlansResponseBody;
5373
5376
  static names(): { [key: string]: string } {
5374
5377
  return {
5375
5378
  headers: 'headers',
@@ -5479,9 +5482,9 @@ export class ListTagResourcesResponseBody extends $tea.Model {
5479
5482
  }
5480
5483
 
5481
5484
  export class ListTagResourcesResponse extends $tea.Model {
5482
- headers: { [key: string]: string };
5483
- statusCode: number;
5484
- body: ListTagResourcesResponseBody;
5485
+ headers?: { [key: string]: string };
5486
+ statusCode?: number;
5487
+ body?: ListTagResourcesResponseBody;
5485
5488
  static names(): { [key: string]: string } {
5486
5489
  return {
5487
5490
  headers: 'headers',
@@ -5551,9 +5554,9 @@ export class MigrateClusterResponseBody extends $tea.Model {
5551
5554
  }
5552
5555
 
5553
5556
  export class MigrateClusterResponse extends $tea.Model {
5554
- headers: { [key: string]: string };
5555
- statusCode: number;
5556
- body: MigrateClusterResponseBody;
5557
+ headers?: { [key: string]: string };
5558
+ statusCode?: number;
5559
+ body?: MigrateClusterResponseBody;
5557
5560
  static names(): { [key: string]: string } {
5558
5561
  return {
5559
5562
  headers: 'headers',
@@ -5656,9 +5659,9 @@ export class ModifyClusterResponseBody extends $tea.Model {
5656
5659
  }
5657
5660
 
5658
5661
  export class ModifyClusterResponse extends $tea.Model {
5659
- headers: { [key: string]: string };
5660
- statusCode: number;
5661
- body: ModifyClusterResponseBody;
5662
+ headers?: { [key: string]: string };
5663
+ statusCode?: number;
5664
+ body?: ModifyClusterResponseBody;
5662
5665
  static names(): { [key: string]: string } {
5663
5666
  return {
5664
5667
  headers: 'headers',
@@ -5700,8 +5703,8 @@ export class ModifyClusterAddonRequest extends $tea.Model {
5700
5703
  }
5701
5704
 
5702
5705
  export class ModifyClusterAddonResponse extends $tea.Model {
5703
- headers: { [key: string]: string };
5704
- statusCode: number;
5706
+ headers?: { [key: string]: string };
5707
+ statusCode?: number;
5705
5708
  static names(): { [key: string]: string } {
5706
5709
  return {
5707
5710
  headers: 'headers',
@@ -5741,8 +5744,8 @@ export class ModifyClusterConfigurationRequest extends $tea.Model {
5741
5744
  }
5742
5745
 
5743
5746
  export class ModifyClusterConfigurationResponse extends $tea.Model {
5744
- headers: { [key: string]: string };
5745
- statusCode: number;
5747
+ headers?: { [key: string]: string };
5748
+ statusCode?: number;
5746
5749
  static names(): { [key: string]: string } {
5747
5750
  return {
5748
5751
  headers: 'headers',
@@ -5804,10 +5807,12 @@ export class ModifyClusterNodePoolRequest extends $tea.Model {
5804
5807
 
5805
5808
  export class ModifyClusterNodePoolResponseBody extends $tea.Model {
5806
5809
  nodepoolId?: string;
5810
+ requestId?: string;
5807
5811
  taskId?: string;
5808
5812
  static names(): { [key: string]: string } {
5809
5813
  return {
5810
5814
  nodepoolId: 'nodepool_id',
5815
+ requestId: 'request_id',
5811
5816
  taskId: 'task_id',
5812
5817
  };
5813
5818
  }
@@ -5815,6 +5820,7 @@ export class ModifyClusterNodePoolResponseBody extends $tea.Model {
5815
5820
  static types(): { [key: string]: any } {
5816
5821
  return {
5817
5822
  nodepoolId: 'string',
5823
+ requestId: 'string',
5818
5824
  taskId: 'string',
5819
5825
  };
5820
5826
  }
@@ -5825,9 +5831,9 @@ export class ModifyClusterNodePoolResponseBody extends $tea.Model {
5825
5831
  }
5826
5832
 
5827
5833
  export class ModifyClusterNodePoolResponse extends $tea.Model {
5828
- headers: { [key: string]: string };
5829
- statusCode: number;
5830
- body: ModifyClusterNodePoolResponseBody;
5834
+ headers?: { [key: string]: string };
5835
+ statusCode?: number;
5836
+ body?: ModifyClusterNodePoolResponseBody;
5831
5837
  static names(): { [key: string]: string } {
5832
5838
  return {
5833
5839
  headers: 'headers',
@@ -5869,8 +5875,8 @@ export class ModifyClusterTagsRequest extends $tea.Model {
5869
5875
  }
5870
5876
 
5871
5877
  export class ModifyClusterTagsResponse extends $tea.Model {
5872
- headers: { [key: string]: string };
5873
- statusCode: number;
5878
+ headers?: { [key: string]: string };
5879
+ statusCode?: number;
5874
5880
  static names(): { [key: string]: string } {
5875
5881
  return {
5876
5882
  headers: 'headers',
@@ -5938,9 +5944,9 @@ export class ModifyNodePoolNodeConfigResponseBody extends $tea.Model {
5938
5944
  }
5939
5945
 
5940
5946
  export class ModifyNodePoolNodeConfigResponse extends $tea.Model {
5941
- headers: { [key: string]: string };
5942
- statusCode: number;
5943
- body: ModifyNodePoolNodeConfigResponseBody;
5947
+ headers?: { [key: string]: string };
5948
+ statusCode?: number;
5949
+ body?: ModifyNodePoolNodeConfigResponseBody;
5944
5950
  static names(): { [key: string]: string } {
5945
5951
  return {
5946
5952
  headers: 'headers',
@@ -6010,9 +6016,9 @@ export class ModifyPolicyInstanceResponseBody extends $tea.Model {
6010
6016
  }
6011
6017
 
6012
6018
  export class ModifyPolicyInstanceResponse extends $tea.Model {
6013
- headers: { [key: string]: string };
6014
- statusCode: number;
6015
- body: ModifyPolicyInstanceResponseBody;
6019
+ headers?: { [key: string]: string };
6020
+ statusCode?: number;
6021
+ body?: ModifyPolicyInstanceResponseBody;
6016
6022
  static names(): { [key: string]: string } {
6017
6023
  return {
6018
6024
  headers: 'headers',
@@ -6076,9 +6082,9 @@ export class OpenAckServiceResponseBody extends $tea.Model {
6076
6082
  }
6077
6083
 
6078
6084
  export class OpenAckServiceResponse extends $tea.Model {
6079
- headers: { [key: string]: string };
6080
- statusCode: number;
6081
- body: OpenAckServiceResponseBody;
6085
+ headers?: { [key: string]: string };
6086
+ statusCode?: number;
6087
+ body?: OpenAckServiceResponseBody;
6082
6088
  static names(): { [key: string]: string } {
6083
6089
  return {
6084
6090
  headers: 'headers',
@@ -6101,8 +6107,8 @@ export class OpenAckServiceResponse extends $tea.Model {
6101
6107
  }
6102
6108
 
6103
6109
  export class PauseClusterUpgradeResponse extends $tea.Model {
6104
- headers: { [key: string]: string };
6105
- statusCode: number;
6110
+ headers?: { [key: string]: string };
6111
+ statusCode?: number;
6106
6112
  static names(): { [key: string]: string } {
6107
6113
  return {
6108
6114
  headers: 'headers',
@@ -6123,8 +6129,8 @@ export class PauseClusterUpgradeResponse extends $tea.Model {
6123
6129
  }
6124
6130
 
6125
6131
  export class PauseComponentUpgradeResponse extends $tea.Model {
6126
- headers: { [key: string]: string };
6127
- statusCode: number;
6132
+ headers?: { [key: string]: string };
6133
+ statusCode?: number;
6128
6134
  static names(): { [key: string]: string } {
6129
6135
  return {
6130
6136
  headers: 'headers',
@@ -6145,8 +6151,8 @@ export class PauseComponentUpgradeResponse extends $tea.Model {
6145
6151
  }
6146
6152
 
6147
6153
  export class PauseTaskResponse extends $tea.Model {
6148
- headers: { [key: string]: string };
6149
- statusCode: number;
6154
+ headers?: { [key: string]: string };
6155
+ statusCode?: number;
6150
6156
  static names(): { [key: string]: string } {
6151
6157
  return {
6152
6158
  headers: 'headers',
@@ -6192,8 +6198,8 @@ export class RemoveClusterNodesRequest extends $tea.Model {
6192
6198
  }
6193
6199
 
6194
6200
  export class RemoveClusterNodesResponse extends $tea.Model {
6195
- headers: { [key: string]: string };
6196
- statusCode: number;
6201
+ headers?: { [key: string]: string };
6202
+ statusCode?: number;
6197
6203
  static names(): { [key: string]: string } {
6198
6204
  return {
6199
6205
  headers: 'headers',
@@ -6298,9 +6304,9 @@ export class RemoveNodePoolNodesResponseBody extends $tea.Model {
6298
6304
  }
6299
6305
 
6300
6306
  export class RemoveNodePoolNodesResponse extends $tea.Model {
6301
- headers: { [key: string]: string };
6302
- statusCode: number;
6303
- body: RemoveNodePoolNodesResponseBody;
6307
+ headers?: { [key: string]: string };
6308
+ statusCode?: number;
6309
+ body?: RemoveNodePoolNodesResponseBody;
6304
6310
  static names(): { [key: string]: string } {
6305
6311
  return {
6306
6312
  headers: 'headers',
@@ -6323,8 +6329,8 @@ export class RemoveNodePoolNodesResponse extends $tea.Model {
6323
6329
  }
6324
6330
 
6325
6331
  export class RemoveWorkflowResponse extends $tea.Model {
6326
- headers: { [key: string]: string };
6327
- statusCode: number;
6332
+ headers?: { [key: string]: string };
6333
+ statusCode?: number;
6328
6334
  static names(): { [key: string]: string } {
6329
6335
  return {
6330
6336
  headers: 'headers',
@@ -6389,9 +6395,9 @@ export class RepairClusterNodePoolResponseBody extends $tea.Model {
6389
6395
  }
6390
6396
 
6391
6397
  export class RepairClusterNodePoolResponse extends $tea.Model {
6392
- headers: { [key: string]: string };
6393
- statusCode: number;
6394
- body: RepairClusterNodePoolResponseBody;
6398
+ headers?: { [key: string]: string };
6399
+ statusCode?: number;
6400
+ body?: RepairClusterNodePoolResponseBody;
6395
6401
  static names(): { [key: string]: string } {
6396
6402
  return {
6397
6403
  headers: 'headers',
@@ -6414,8 +6420,8 @@ export class RepairClusterNodePoolResponse extends $tea.Model {
6414
6420
  }
6415
6421
 
6416
6422
  export class ResumeComponentUpgradeResponse extends $tea.Model {
6417
- headers: { [key: string]: string };
6418
- statusCode: number;
6423
+ headers?: { [key: string]: string };
6424
+ statusCode?: number;
6419
6425
  static names(): { [key: string]: string } {
6420
6426
  return {
6421
6427
  headers: 'headers',
@@ -6436,8 +6442,8 @@ export class ResumeComponentUpgradeResponse extends $tea.Model {
6436
6442
  }
6437
6443
 
6438
6444
  export class ResumeTaskResponse extends $tea.Model {
6439
- headers: { [key: string]: string };
6440
- statusCode: number;
6445
+ headers?: { [key: string]: string };
6446
+ statusCode?: number;
6441
6447
  static names(): { [key: string]: string } {
6442
6448
  return {
6443
6449
  headers: 'headers',
@@ -6458,8 +6464,8 @@ export class ResumeTaskResponse extends $tea.Model {
6458
6464
  }
6459
6465
 
6460
6466
  export class ResumeUpgradeClusterResponse extends $tea.Model {
6461
- headers: { [key: string]: string };
6462
- statusCode: number;
6467
+ headers?: { [key: string]: string };
6468
+ statusCode?: number;
6463
6469
  static names(): { [key: string]: string } {
6464
6470
  return {
6465
6471
  headers: 'headers',
@@ -6524,9 +6530,9 @@ export class RunClusterCheckResponseBody extends $tea.Model {
6524
6530
  }
6525
6531
 
6526
6532
  export class RunClusterCheckResponse extends $tea.Model {
6527
- headers: { [key: string]: string };
6528
- statusCode: number;
6529
- body: RunClusterCheckResponseBody;
6533
+ headers?: { [key: string]: string };
6534
+ statusCode?: number;
6535
+ body?: RunClusterCheckResponseBody;
6530
6536
  static names(): { [key: string]: string } {
6531
6537
  return {
6532
6538
  headers: 'headers',
@@ -6647,9 +6653,9 @@ export class ScaleClusterResponseBody extends $tea.Model {
6647
6653
  }
6648
6654
 
6649
6655
  export class ScaleClusterResponse extends $tea.Model {
6650
- headers: { [key: string]: string };
6651
- statusCode: number;
6652
- body: ScaleClusterResponseBody;
6656
+ headers?: { [key: string]: string };
6657
+ statusCode?: number;
6658
+ body?: ScaleClusterResponseBody;
6653
6659
  static names(): { [key: string]: string } {
6654
6660
  return {
6655
6661
  headers: 'headers',
@@ -6710,9 +6716,9 @@ export class ScaleClusterNodePoolResponseBody extends $tea.Model {
6710
6716
  }
6711
6717
 
6712
6718
  export class ScaleClusterNodePoolResponse extends $tea.Model {
6713
- headers: { [key: string]: string };
6714
- statusCode: number;
6715
- body: ScaleClusterNodePoolResponseBody;
6719
+ headers?: { [key: string]: string };
6720
+ statusCode?: number;
6721
+ body?: ScaleClusterNodePoolResponseBody;
6716
6722
  static names(): { [key: string]: string } {
6717
6723
  return {
6718
6724
  headers: 'headers',
@@ -6839,9 +6845,9 @@ export class ScaleOutClusterResponseBody extends $tea.Model {
6839
6845
  }
6840
6846
 
6841
6847
  export class ScaleOutClusterResponse extends $tea.Model {
6842
- headers: { [key: string]: string };
6843
- statusCode: number;
6844
- body: ScaleOutClusterResponseBody;
6848
+ headers?: { [key: string]: string };
6849
+ statusCode?: number;
6850
+ body?: ScaleOutClusterResponseBody;
6845
6851
  static names(): { [key: string]: string } {
6846
6852
  return {
6847
6853
  headers: 'headers',
@@ -6886,9 +6892,9 @@ export class ScanClusterVulsResponseBody extends $tea.Model {
6886
6892
  }
6887
6893
 
6888
6894
  export class ScanClusterVulsResponse extends $tea.Model {
6889
- headers: { [key: string]: string };
6890
- statusCode: number;
6891
- body: ScanClusterVulsResponseBody;
6895
+ headers?: { [key: string]: string };
6896
+ statusCode?: number;
6897
+ body?: ScanClusterVulsResponseBody;
6892
6898
  static names(): { [key: string]: string } {
6893
6899
  return {
6894
6900
  headers: 'headers',
@@ -6933,9 +6939,9 @@ export class StartAlertResponseBody extends $tea.Model {
6933
6939
  }
6934
6940
 
6935
6941
  export class StartAlertResponse extends $tea.Model {
6936
- headers: { [key: string]: string };
6937
- statusCode: number;
6938
- body: StartAlertResponseBody;
6942
+ headers?: { [key: string]: string };
6943
+ statusCode?: number;
6944
+ body?: StartAlertResponseBody;
6939
6945
  static names(): { [key: string]: string } {
6940
6946
  return {
6941
6947
  headers: 'headers',
@@ -7050,9 +7056,9 @@ export class StartWorkflowResponseBody extends $tea.Model {
7050
7056
  }
7051
7057
 
7052
7058
  export class StartWorkflowResponse extends $tea.Model {
7053
- headers: { [key: string]: string };
7054
- statusCode: number;
7055
- body: StartWorkflowResponseBody;
7059
+ headers?: { [key: string]: string };
7060
+ statusCode?: number;
7061
+ body?: StartWorkflowResponseBody;
7056
7062
  static names(): { [key: string]: string } {
7057
7063
  return {
7058
7064
  headers: 'headers',
@@ -7097,9 +7103,9 @@ export class StopAlertResponseBody extends $tea.Model {
7097
7103
  }
7098
7104
 
7099
7105
  export class StopAlertResponse extends $tea.Model {
7100
- headers: { [key: string]: string };
7101
- statusCode: number;
7102
- body: StopAlertResponseBody;
7106
+ headers?: { [key: string]: string };
7107
+ statusCode?: number;
7108
+ body?: StopAlertResponseBody;
7103
7109
  static names(): { [key: string]: string } {
7104
7110
  return {
7105
7111
  headers: 'headers',
@@ -7141,9 +7147,9 @@ export class SyncClusterNodePoolResponseBody extends $tea.Model {
7141
7147
  }
7142
7148
 
7143
7149
  export class SyncClusterNodePoolResponse extends $tea.Model {
7144
- headers: { [key: string]: string };
7145
- statusCode: number;
7146
- body: SyncClusterNodePoolResponseBody;
7150
+ headers?: { [key: string]: string };
7151
+ statusCode?: number;
7152
+ body?: SyncClusterNodePoolResponseBody;
7147
7153
  static names(): { [key: string]: string } {
7148
7154
  return {
7149
7155
  headers: 'headers',
@@ -7213,9 +7219,9 @@ export class TagResourcesResponseBody extends $tea.Model {
7213
7219
  }
7214
7220
 
7215
7221
  export class TagResourcesResponse extends $tea.Model {
7216
- headers: { [key: string]: string };
7217
- statusCode: number;
7218
- body: TagResourcesResponseBody;
7222
+ headers?: { [key: string]: string };
7223
+ statusCode?: number;
7224
+ body?: TagResourcesResponseBody;
7219
7225
  static names(): { [key: string]: string } {
7220
7226
  return {
7221
7227
  headers: 'headers',
@@ -7257,8 +7263,8 @@ export class UnInstallClusterAddonsRequest extends $tea.Model {
7257
7263
  }
7258
7264
 
7259
7265
  export class UnInstallClusterAddonsResponse extends $tea.Model {
7260
- headers: { [key: string]: string };
7261
- statusCode: number;
7266
+ headers?: { [key: string]: string };
7267
+ statusCode?: number;
7262
7268
  static names(): { [key: string]: string } {
7263
7269
  return {
7264
7270
  headers: 'headers',
@@ -7360,9 +7366,9 @@ export class UntagResourcesResponseBody extends $tea.Model {
7360
7366
  }
7361
7367
 
7362
7368
  export class UntagResourcesResponse extends $tea.Model {
7363
- headers: { [key: string]: string };
7364
- statusCode: number;
7365
- body: UntagResourcesResponseBody;
7369
+ headers?: { [key: string]: string };
7370
+ statusCode?: number;
7371
+ body?: UntagResourcesResponseBody;
7366
7372
  static names(): { [key: string]: string } {
7367
7373
  return {
7368
7374
  headers: 'headers',
@@ -7385,8 +7391,8 @@ export class UntagResourcesResponse extends $tea.Model {
7385
7391
  }
7386
7392
 
7387
7393
  export class UpdateContactGroupForAlertResponse extends $tea.Model {
7388
- headers: { [key: string]: string };
7389
- statusCode: number;
7394
+ headers?: { [key: string]: string };
7395
+ statusCode?: number;
7390
7396
  static names(): { [key: string]: string } {
7391
7397
  return {
7392
7398
  headers: 'headers',
@@ -7460,9 +7466,9 @@ export class UpdateControlPlaneLogResponseBody extends $tea.Model {
7460
7466
  }
7461
7467
 
7462
7468
  export class UpdateControlPlaneLogResponse extends $tea.Model {
7463
- headers: { [key: string]: string };
7464
- statusCode: number;
7465
- body: UpdateControlPlaneLogResponseBody;
7469
+ headers?: { [key: string]: string };
7470
+ statusCode?: number;
7471
+ body?: UpdateControlPlaneLogResponseBody;
7466
7472
  static names(): { [key: string]: string } {
7467
7473
  return {
7468
7474
  headers: 'headers',
@@ -7507,8 +7513,8 @@ export class UpdateK8sClusterUserConfigExpireRequest extends $tea.Model {
7507
7513
  }
7508
7514
 
7509
7515
  export class UpdateK8sClusterUserConfigExpireResponse extends $tea.Model {
7510
- headers: { [key: string]: string };
7511
- statusCode: number;
7516
+ headers?: { [key: string]: string };
7517
+ statusCode?: number;
7512
7518
  static names(): { [key: string]: string } {
7513
7519
  return {
7514
7520
  headers: 'headers',
@@ -7560,8 +7566,8 @@ export class UpdateTemplateRequest extends $tea.Model {
7560
7566
  }
7561
7567
 
7562
7568
  export class UpdateTemplateResponse extends $tea.Model {
7563
- headers: { [key: string]: string };
7564
- statusCode: number;
7569
+ headers?: { [key: string]: string };
7570
+ statusCode?: number;
7565
7571
  static names(): { [key: string]: string } {
7566
7572
  return {
7567
7573
  headers: 'headers',
@@ -7609,13 +7615,40 @@ export class UpgradeClusterRequest extends $tea.Model {
7609
7615
  }
7610
7616
  }
7611
7617
 
7618
+ export class UpgradeClusterResponseBody extends $tea.Model {
7619
+ clusterId?: string;
7620
+ requestId?: string;
7621
+ taskId?: string;
7622
+ static names(): { [key: string]: string } {
7623
+ return {
7624
+ clusterId: 'cluster_id',
7625
+ requestId: 'request_id',
7626
+ taskId: 'task_id',
7627
+ };
7628
+ }
7629
+
7630
+ static types(): { [key: string]: any } {
7631
+ return {
7632
+ clusterId: 'string',
7633
+ requestId: 'string',
7634
+ taskId: 'string',
7635
+ };
7636
+ }
7637
+
7638
+ constructor(map?: { [key: string]: any }) {
7639
+ super(map);
7640
+ }
7641
+ }
7642
+
7612
7643
  export class UpgradeClusterResponse extends $tea.Model {
7613
- headers: { [key: string]: string };
7614
- statusCode: number;
7644
+ headers?: { [key: string]: string };
7645
+ statusCode?: number;
7646
+ body?: UpgradeClusterResponseBody;
7615
7647
  static names(): { [key: string]: string } {
7616
7648
  return {
7617
7649
  headers: 'headers',
7618
7650
  statusCode: 'statusCode',
7651
+ body: 'body',
7619
7652
  };
7620
7653
  }
7621
7654
 
@@ -7623,6 +7656,7 @@ export class UpgradeClusterResponse extends $tea.Model {
7623
7656
  return {
7624
7657
  headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
7625
7658
  statusCode: 'number',
7659
+ body: UpgradeClusterResponseBody,
7626
7660
  };
7627
7661
  }
7628
7662
 
@@ -7651,8 +7685,8 @@ export class UpgradeClusterAddonsRequest extends $tea.Model {
7651
7685
  }
7652
7686
 
7653
7687
  export class UpgradeClusterAddonsResponse extends $tea.Model {
7654
- headers: { [key: string]: string };
7655
- statusCode: number;
7688
+ headers?: { [key: string]: string };
7689
+ statusCode?: number;
7656
7690
  static names(): { [key: string]: string } {
7657
7691
  return {
7658
7692
  headers: 'headers',
@@ -7723,9 +7757,9 @@ export class UpgradeClusterNodepoolResponseBody extends $tea.Model {
7723
7757
  }
7724
7758
 
7725
7759
  export class UpgradeClusterNodepoolResponse extends $tea.Model {
7726
- headers: { [key: string]: string };
7727
- statusCode: number;
7728
- body: UpgradeClusterNodepoolResponseBody;
7760
+ headers?: { [key: string]: string };
7761
+ statusCode?: number;
7762
+ body?: UpgradeClusterNodepoolResponseBody;
7729
7763
  static names(): { [key: string]: string } {
7730
7764
  return {
7731
7765
  headers: 'headers',
@@ -12204,6 +12238,7 @@ export class ModifyClusterNodePoolRequestKubernetesConfig extends $tea.Model {
12204
12238
  runtime?: string;
12205
12239
  runtimeVersion?: string;
12206
12240
  taints?: Taint[];
12241
+ unschedulable?: boolean;
12207
12242
  userData?: string;
12208
12243
  static names(): { [key: string]: string } {
12209
12244
  return {
@@ -12213,6 +12248,7 @@ export class ModifyClusterNodePoolRequestKubernetesConfig extends $tea.Model {
12213
12248
  runtime: 'runtime',
12214
12249
  runtimeVersion: 'runtime_version',
12215
12250
  taints: 'taints',
12251
+ unschedulable: 'unschedulable',
12216
12252
  userData: 'user_data',
12217
12253
  };
12218
12254
  }
@@ -12225,6 +12261,7 @@ export class ModifyClusterNodePoolRequestKubernetesConfig extends $tea.Model {
12225
12261
  runtime: 'string',
12226
12262
  runtimeVersion: 'string',
12227
12263
  taints: { 'type': 'array', 'itemType': Taint },
12264
+ unschedulable: 'boolean',
12228
12265
  userData: 'string',
12229
12266
  };
12230
12267
  }
@@ -12921,6 +12958,14 @@ export default class Client extends OpenApi {
12921
12958
  return await this.attachInstancesToNodePoolWithOptions(ClusterId, NodepoolId, request, headers, runtime);
12922
12959
  }
12923
12960
 
12961
+ /**
12962
+ * @deprecated
12963
+ *
12964
+ * @param headers map
12965
+ * @param runtime runtime options for this request RuntimeOptions
12966
+ * @return CancelClusterUpgradeResponse
12967
+ */
12968
+ // Deprecated
12924
12969
  async cancelClusterUpgradeWithOptions(ClusterId: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CancelClusterUpgradeResponse> {
12925
12970
  let req = new $OpenApi.OpenApiRequest({
12926
12971
  headers: headers,
@@ -12939,6 +12984,12 @@ export default class Client extends OpenApi {
12939
12984
  return $tea.cast<CancelClusterUpgradeResponse>(await this.callApi(params, req, runtime), new CancelClusterUpgradeResponse({}));
12940
12985
  }
12941
12986
 
12987
+ /**
12988
+ * @deprecated
12989
+ *
12990
+ * @return CancelClusterUpgradeResponse
12991
+ */
12992
+ // Deprecated
12942
12993
  async cancelClusterUpgrade(ClusterId: string): Promise<CancelClusterUpgradeResponse> {
12943
12994
  let runtime = new $Util.RuntimeOptions({ });
12944
12995
  let headers : {[key: string ]: string} = { };
@@ -13160,9 +13211,9 @@ export default class Client extends OpenApi {
13160
13211
  * * [Create an ACK managed cluster](~~90776~~)
13161
13212
  * * [Create an ACK dedicated cluster](~~197620~~)
13162
13213
  * * [Create an ACK Serverless cluster](~~144246~~)
13163
- * * [Create an ACK Edge cluster](128204)
13214
+ * * [Create an ACK Edge cluster](~~128204~~)
13164
13215
  * * [Create an ACK Basic cluster that supports sandboxed containers](~~196321~~)
13165
- * * [Create an ACK Pro cluster that supports sandboxed containers](140623)
13216
+ * * [Create an ACK Pro cluster that supports sandboxed containers](~~140623~~)
13166
13217
  *
13167
13218
  * @param request CreateClusterRequest
13168
13219
  * @param headers map
@@ -13555,9 +13606,9 @@ export default class Client extends OpenApi {
13555
13606
  * * [Create an ACK managed cluster](~~90776~~)
13556
13607
  * * [Create an ACK dedicated cluster](~~197620~~)
13557
13608
  * * [Create an ACK Serverless cluster](~~144246~~)
13558
- * * [Create an ACK Edge cluster](128204)
13609
+ * * [Create an ACK Edge cluster](~~128204~~)
13559
13610
  * * [Create an ACK Basic cluster that supports sandboxed containers](~~196321~~)
13560
- * * [Create an ACK Pro cluster that supports sandboxed containers](140623)
13611
+ * * [Create an ACK Pro cluster that supports sandboxed containers](~~140623~~)
13561
13612
  *
13562
13613
  * @param request CreateClusterRequest
13563
13614
  * @return CreateClusterResponse
@@ -14108,7 +14159,7 @@ export default class Client extends OpenApi {
14108
14159
  action: "DeleteTrigger",
14109
14160
  version: "2015-12-15",
14110
14161
  protocol: "HTTPS",
14111
- pathname: `/clusters/%5Bcluster_id%5D/triggers/%5BId%5D`,
14162
+ pathname: `/clusters/${OpenApiUtil.getEncodeParam(clusterId)}/triggers/${OpenApiUtil.getEncodeParam(Id)}`,
14112
14163
  method: "DELETE",
14113
14164
  authType: "AK",
14114
14165
  style: "ROA",
@@ -14242,6 +14293,15 @@ export default class Client extends OpenApi {
14242
14293
  return await this.describeAddonWithOptions(addonName, request, headers, runtime);
14243
14294
  }
14244
14295
 
14296
+ /**
14297
+ * @deprecated
14298
+ *
14299
+ * @param request DescribeAddonsRequest
14300
+ * @param headers map
14301
+ * @param runtime runtime options for this request RuntimeOptions
14302
+ * @return DescribeAddonsResponse
14303
+ */
14304
+ // Deprecated
14245
14305
  async describeAddonsWithOptions(request: DescribeAddonsRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeAddonsResponse> {
14246
14306
  Util.validateModel(request);
14247
14307
  let query : {[key: string ]: any} = { };
@@ -14283,12 +14343,27 @@ export default class Client extends OpenApi {
14283
14343
  return $tea.cast<DescribeAddonsResponse>(await this.callApi(params, req, runtime), new DescribeAddonsResponse({}));
14284
14344
  }
14285
14345
 
14346
+ /**
14347
+ * @deprecated
14348
+ *
14349
+ * @param request DescribeAddonsRequest
14350
+ * @return DescribeAddonsResponse
14351
+ */
14352
+ // Deprecated
14286
14353
  async describeAddons(request: DescribeAddonsRequest): Promise<DescribeAddonsResponse> {
14287
14354
  let runtime = new $Util.RuntimeOptions({ });
14288
14355
  let headers : {[key: string ]: string} = { };
14289
14356
  return await this.describeAddonsWithOptions(request, headers, runtime);
14290
14357
  }
14291
14358
 
14359
+ /**
14360
+ * @deprecated
14361
+ *
14362
+ * @param headers map
14363
+ * @param runtime runtime options for this request RuntimeOptions
14364
+ * @return DescribeClusterAddonInstanceResponse
14365
+ */
14366
+ // Deprecated
14292
14367
  async describeClusterAddonInstanceWithOptions(ClusterID: string, AddonName: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeClusterAddonInstanceResponse> {
14293
14368
  let req = new $OpenApi.OpenApiRequest({
14294
14369
  headers: headers,
@@ -14307,12 +14382,26 @@ export default class Client extends OpenApi {
14307
14382
  return $tea.cast<DescribeClusterAddonInstanceResponse>(await this.callApi(params, req, runtime), new DescribeClusterAddonInstanceResponse({}));
14308
14383
  }
14309
14384
 
14385
+ /**
14386
+ * @deprecated
14387
+ *
14388
+ * @return DescribeClusterAddonInstanceResponse
14389
+ */
14390
+ // Deprecated
14310
14391
  async describeClusterAddonInstance(ClusterID: string, AddonName: string): Promise<DescribeClusterAddonInstanceResponse> {
14311
14392
  let runtime = new $Util.RuntimeOptions({ });
14312
14393
  let headers : {[key: string ]: string} = { };
14313
14394
  return await this.describeClusterAddonInstanceWithOptions(ClusterID, AddonName, headers, runtime);
14314
14395
  }
14315
14396
 
14397
+ /**
14398
+ * @deprecated
14399
+ *
14400
+ * @param headers map
14401
+ * @param runtime runtime options for this request RuntimeOptions
14402
+ * @return DescribeClusterAddonMetadataResponse
14403
+ */
14404
+ // Deprecated
14316
14405
  async describeClusterAddonMetadataWithOptions(clusterId: string, componentId: string, version: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeClusterAddonMetadataResponse> {
14317
14406
  let req = new $OpenApi.OpenApiRequest({
14318
14407
  headers: headers,
@@ -14331,6 +14420,12 @@ export default class Client extends OpenApi {
14331
14420
  return $tea.cast<DescribeClusterAddonMetadataResponse>(await this.callApi(params, req, runtime), new DescribeClusterAddonMetadataResponse({}));
14332
14421
  }
14333
14422
 
14423
+ /**
14424
+ * @deprecated
14425
+ *
14426
+ * @return DescribeClusterAddonMetadataResponse
14427
+ */
14428
+ // Deprecated
14334
14429
  async describeClusterAddonMetadata(clusterId: string, componentId: string, version: string): Promise<DescribeClusterAddonMetadataResponse> {
14335
14430
  let runtime = new $Util.RuntimeOptions({ });
14336
14431
  let headers : {[key: string ]: string} = { };
@@ -14375,6 +14470,15 @@ export default class Client extends OpenApi {
14375
14470
  return await this.describeClusterAddonUpgradeStatusWithOptions(ClusterId, ComponentId, headers, runtime);
14376
14471
  }
14377
14472
 
14473
+ /**
14474
+ * @deprecated
14475
+ *
14476
+ * @param tmpReq DescribeClusterAddonsUpgradeStatusRequest
14477
+ * @param headers map
14478
+ * @param runtime runtime options for this request RuntimeOptions
14479
+ * @return DescribeClusterAddonsUpgradeStatusResponse
14480
+ */
14481
+ // Deprecated
14378
14482
  async describeClusterAddonsUpgradeStatusWithOptions(ClusterId: string, tmpReq: DescribeClusterAddonsUpgradeStatusRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeClusterAddonsUpgradeStatusResponse> {
14379
14483
  Util.validateModel(tmpReq);
14380
14484
  let request = new DescribeClusterAddonsUpgradeStatusShrinkRequest({ });
@@ -14406,12 +14510,27 @@ export default class Client extends OpenApi {
14406
14510
  return $tea.cast<DescribeClusterAddonsUpgradeStatusResponse>(await this.callApi(params, req, runtime), new DescribeClusterAddonsUpgradeStatusResponse({}));
14407
14511
  }
14408
14512
 
14513
+ /**
14514
+ * @deprecated
14515
+ *
14516
+ * @param request DescribeClusterAddonsUpgradeStatusRequest
14517
+ * @return DescribeClusterAddonsUpgradeStatusResponse
14518
+ */
14519
+ // Deprecated
14409
14520
  async describeClusterAddonsUpgradeStatus(ClusterId: string, request: DescribeClusterAddonsUpgradeStatusRequest): Promise<DescribeClusterAddonsUpgradeStatusResponse> {
14410
14521
  let runtime = new $Util.RuntimeOptions({ });
14411
14522
  let headers : {[key: string ]: string} = { };
14412
14523
  return await this.describeClusterAddonsUpgradeStatusWithOptions(ClusterId, request, headers, runtime);
14413
14524
  }
14414
14525
 
14526
+ /**
14527
+ * @deprecated
14528
+ *
14529
+ * @param headers map
14530
+ * @param runtime runtime options for this request RuntimeOptions
14531
+ * @return DescribeClusterAddonsVersionResponse
14532
+ */
14533
+ // Deprecated
14415
14534
  async describeClusterAddonsVersionWithOptions(ClusterId: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeClusterAddonsVersionResponse> {
14416
14535
  let req = new $OpenApi.OpenApiRequest({
14417
14536
  headers: headers,
@@ -14430,6 +14549,12 @@ export default class Client extends OpenApi {
14430
14549
  return $tea.cast<DescribeClusterAddonsVersionResponse>(await this.callApi(params, req, runtime), new DescribeClusterAddonsVersionResponse({}));
14431
14550
  }
14432
14551
 
14552
+ /**
14553
+ * @deprecated
14554
+ *
14555
+ * @return DescribeClusterAddonsVersionResponse
14556
+ */
14557
+ // Deprecated
14433
14558
  async describeClusterAddonsVersion(ClusterId: string): Promise<DescribeClusterAddonsVersionResponse> {
14434
14559
  let runtime = new $Util.RuntimeOptions({ });
14435
14560
  let headers : {[key: string ]: string} = { };
@@ -16579,6 +16704,14 @@ export default class Client extends OpenApi {
16579
16704
  return await this.openAckServiceWithOptions(request, headers, runtime);
16580
16705
  }
16581
16706
 
16707
+ /**
16708
+ * @deprecated
16709
+ *
16710
+ * @param headers map
16711
+ * @param runtime runtime options for this request RuntimeOptions
16712
+ * @return PauseClusterUpgradeResponse
16713
+ */
16714
+ // Deprecated
16582
16715
  async pauseClusterUpgradeWithOptions(ClusterId: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PauseClusterUpgradeResponse> {
16583
16716
  let req = new $OpenApi.OpenApiRequest({
16584
16717
  headers: headers,
@@ -16597,6 +16730,12 @@ export default class Client extends OpenApi {
16597
16730
  return $tea.cast<PauseClusterUpgradeResponse>(await this.callApi(params, req, runtime), new PauseClusterUpgradeResponse({}));
16598
16731
  }
16599
16732
 
16733
+ /**
16734
+ * @deprecated
16735
+ *
16736
+ * @return PauseClusterUpgradeResponse
16737
+ */
16738
+ // Deprecated
16600
16739
  async pauseClusterUpgrade(ClusterId: string): Promise<PauseClusterUpgradeResponse> {
16601
16740
  let runtime = new $Util.RuntimeOptions({ });
16602
16741
  let headers : {[key: string ]: string} = { };
@@ -16898,6 +17037,14 @@ export default class Client extends OpenApi {
16898
17037
  return await this.resumeTaskWithOptions(taskId, headers, runtime);
16899
17038
  }
16900
17039
 
17040
+ /**
17041
+ * @deprecated
17042
+ *
17043
+ * @param headers map
17044
+ * @param runtime runtime options for this request RuntimeOptions
17045
+ * @return ResumeUpgradeClusterResponse
17046
+ */
17047
+ // Deprecated
16901
17048
  async resumeUpgradeClusterWithOptions(ClusterId: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ResumeUpgradeClusterResponse> {
16902
17049
  let req = new $OpenApi.OpenApiRequest({
16903
17050
  headers: headers,
@@ -16916,6 +17063,12 @@ export default class Client extends OpenApi {
16916
17063
  return $tea.cast<ResumeUpgradeClusterResponse>(await this.callApi(params, req, runtime), new ResumeUpgradeClusterResponse({}));
16917
17064
  }
16918
17065
 
17066
+ /**
17067
+ * @deprecated
17068
+ *
17069
+ * @return ResumeUpgradeClusterResponse
17070
+ */
17071
+ // Deprecated
16919
17072
  async resumeUpgradeCluster(ClusterId: string): Promise<ResumeUpgradeClusterResponse> {
16920
17073
  let runtime = new $Util.RuntimeOptions({ });
16921
17074
  let headers : {[key: string ]: string} = { };
@@ -17758,7 +17911,7 @@ export default class Client extends OpenApi {
17758
17911
  authType: "AK",
17759
17912
  style: "ROA",
17760
17913
  reqBodyType: "json",
17761
- bodyType: "none",
17914
+ bodyType: "json",
17762
17915
  });
17763
17916
  return $tea.cast<UpgradeClusterResponse>(await this.callApi(params, req, runtime), new UpgradeClusterResponse({}));
17764
17917
  }