@alicloud/cs20151215 3.0.15 → 3.0.17

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/dist/client.d.ts CHANGED
@@ -89,6 +89,22 @@ export declare class Taint extends $tea.Model {
89
89
  [key: string]: any;
90
90
  });
91
91
  }
92
+ export declare class StandardComponentsValue extends $tea.Model {
93
+ name?: string;
94
+ version?: string;
95
+ description?: string;
96
+ required?: string;
97
+ disabled?: boolean;
98
+ static names(): {
99
+ [key: string]: string;
100
+ };
101
+ static types(): {
102
+ [key: string]: any;
103
+ };
104
+ constructor(map?: {
105
+ [key: string]: any;
106
+ });
107
+ }
92
108
  export declare class AttachInstancesRequest extends $tea.Model {
93
109
  cpuPolicy?: string;
94
110
  formatDisk?: boolean;
@@ -1828,6 +1844,7 @@ export declare class DescribeKubernetesVersionMetadataResponse extends $tea.Mode
1828
1844
  }
1829
1845
  export declare class DescribeNodePoolVulsResponseBody extends $tea.Model {
1830
1846
  vulRecords?: DescribeNodePoolVulsResponseBodyVulRecords[];
1847
+ vulsFixServicePurchased?: boolean;
1831
1848
  static names(): {
1832
1849
  [key: string]: string;
1833
1850
  };
@@ -2906,6 +2923,63 @@ export declare class RemoveClusterNodesResponse extends $tea.Model {
2906
2923
  [key: string]: any;
2907
2924
  });
2908
2925
  }
2926
+ export declare class RemoveNodePoolNodesRequest extends $tea.Model {
2927
+ drainNode?: boolean;
2928
+ nodes?: string[];
2929
+ releaseNode?: boolean;
2930
+ static names(): {
2931
+ [key: string]: string;
2932
+ };
2933
+ static types(): {
2934
+ [key: string]: any;
2935
+ };
2936
+ constructor(map?: {
2937
+ [key: string]: any;
2938
+ });
2939
+ }
2940
+ export declare class RemoveNodePoolNodesShrinkRequest extends $tea.Model {
2941
+ drainNode?: boolean;
2942
+ nodesShrink?: string;
2943
+ releaseNode?: boolean;
2944
+ static names(): {
2945
+ [key: string]: string;
2946
+ };
2947
+ static types(): {
2948
+ [key: string]: any;
2949
+ };
2950
+ constructor(map?: {
2951
+ [key: string]: any;
2952
+ });
2953
+ }
2954
+ export declare class RemoveNodePoolNodesResponseBody extends $tea.Model {
2955
+ requestId?: string;
2956
+ taskId?: string;
2957
+ static names(): {
2958
+ [key: string]: string;
2959
+ };
2960
+ static types(): {
2961
+ [key: string]: any;
2962
+ };
2963
+ constructor(map?: {
2964
+ [key: string]: any;
2965
+ });
2966
+ }
2967
+ export declare class RemoveNodePoolNodesResponse extends $tea.Model {
2968
+ headers: {
2969
+ [key: string]: string;
2970
+ };
2971
+ statusCode: number;
2972
+ body: RemoveNodePoolNodesResponseBody;
2973
+ static names(): {
2974
+ [key: string]: string;
2975
+ };
2976
+ static types(): {
2977
+ [key: string]: any;
2978
+ };
2979
+ constructor(map?: {
2980
+ [key: string]: any;
2981
+ });
2982
+ }
2909
2983
  export declare class RemoveWorkflowResponse extends $tea.Model {
2910
2984
  headers: {
2911
2985
  [key: string]: string;
@@ -3471,22 +3545,6 @@ export declare class UpgradeClusterAddonsResponse extends $tea.Model {
3471
3545
  [key: string]: any;
3472
3546
  });
3473
3547
  }
3474
- export declare class StandardComponentsValue extends $tea.Model {
3475
- name?: string;
3476
- version?: string;
3477
- description?: string;
3478
- required?: string;
3479
- disabled?: boolean;
3480
- static names(): {
3481
- [key: string]: string;
3482
- };
3483
- static types(): {
3484
- [key: string]: any;
3485
- };
3486
- constructor(map?: {
3487
- [key: string]: any;
3488
- });
3489
- }
3490
3548
  export declare class AttachInstancesResponseBodyList extends $tea.Model {
3491
3549
  code?: string;
3492
3550
  instanceId?: string;
@@ -5637,6 +5695,10 @@ export default class Client extends OpenApi {
5637
5695
  removeClusterNodesWithOptions(ClusterId: string, request: RemoveClusterNodesRequest, headers: {
5638
5696
  [key: string]: string;
5639
5697
  }, runtime: $Util.RuntimeOptions): Promise<RemoveClusterNodesResponse>;
5698
+ removeNodePoolNodes(ClusterId: string, NodepoolId: string, request: RemoveNodePoolNodesRequest): Promise<RemoveNodePoolNodesResponse>;
5699
+ removeNodePoolNodesWithOptions(ClusterId: string, NodepoolId: string, tmpReq: RemoveNodePoolNodesRequest, headers: {
5700
+ [key: string]: string;
5701
+ }, runtime: $Util.RuntimeOptions): Promise<RemoveNodePoolNodesResponse>;
5640
5702
  removeWorkflow(workflowName: string): Promise<RemoveWorkflowResponse>;
5641
5703
  removeWorkflowWithOptions(workflowName: string, headers: {
5642
5704
  [key: string]: string;