@alicloud/cs20151215 3.0.16 → 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 +77 -16
- package/dist/client.js +218 -198
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +250 -205
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;
|
|
@@ -2907,6 +2923,63 @@ export declare class RemoveClusterNodesResponse extends $tea.Model {
|
|
|
2907
2923
|
[key: string]: any;
|
|
2908
2924
|
});
|
|
2909
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
|
+
}
|
|
2910
2983
|
export declare class RemoveWorkflowResponse extends $tea.Model {
|
|
2911
2984
|
headers: {
|
|
2912
2985
|
[key: string]: string;
|
|
@@ -3472,22 +3545,6 @@ export declare class UpgradeClusterAddonsResponse extends $tea.Model {
|
|
|
3472
3545
|
[key: string]: any;
|
|
3473
3546
|
});
|
|
3474
3547
|
}
|
|
3475
|
-
export declare class StandardComponentsValue extends $tea.Model {
|
|
3476
|
-
name?: string;
|
|
3477
|
-
version?: string;
|
|
3478
|
-
description?: string;
|
|
3479
|
-
required?: string;
|
|
3480
|
-
disabled?: boolean;
|
|
3481
|
-
static names(): {
|
|
3482
|
-
[key: string]: string;
|
|
3483
|
-
};
|
|
3484
|
-
static types(): {
|
|
3485
|
-
[key: string]: any;
|
|
3486
|
-
};
|
|
3487
|
-
constructor(map?: {
|
|
3488
|
-
[key: string]: any;
|
|
3489
|
-
});
|
|
3490
|
-
}
|
|
3491
3548
|
export declare class AttachInstancesResponseBodyList extends $tea.Model {
|
|
3492
3549
|
code?: string;
|
|
3493
3550
|
instanceId?: string;
|
|
@@ -5638,6 +5695,10 @@ export default class Client extends OpenApi {
|
|
|
5638
5695
|
removeClusterNodesWithOptions(ClusterId: string, request: RemoveClusterNodesRequest, headers: {
|
|
5639
5696
|
[key: string]: string;
|
|
5640
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>;
|
|
5641
5702
|
removeWorkflow(workflowName: string): Promise<RemoveWorkflowResponse>;
|
|
5642
5703
|
removeWorkflowWithOptions(workflowName: string, headers: {
|
|
5643
5704
|
[key: string]: string;
|