@alicloud/cs20151215 3.0.16 → 3.0.18
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 +78 -16
- package/dist/client.js +223 -198
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +257 -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;
|
|
@@ -271,6 +287,7 @@ export declare class CreateClusterRequest extends $tea.Model {
|
|
|
271
287
|
imageId?: string;
|
|
272
288
|
imageType?: string;
|
|
273
289
|
instances?: string[];
|
|
290
|
+
ipStack?: string;
|
|
274
291
|
isEnterpriseSecurityGroup?: boolean;
|
|
275
292
|
keepInstanceName?: boolean;
|
|
276
293
|
keyPair?: string;
|
|
@@ -2907,6 +2924,63 @@ export declare class RemoveClusterNodesResponse extends $tea.Model {
|
|
|
2907
2924
|
[key: string]: any;
|
|
2908
2925
|
});
|
|
2909
2926
|
}
|
|
2927
|
+
export declare class RemoveNodePoolNodesRequest extends $tea.Model {
|
|
2928
|
+
drainNode?: boolean;
|
|
2929
|
+
nodes?: string[];
|
|
2930
|
+
releaseNode?: boolean;
|
|
2931
|
+
static names(): {
|
|
2932
|
+
[key: string]: string;
|
|
2933
|
+
};
|
|
2934
|
+
static types(): {
|
|
2935
|
+
[key: string]: any;
|
|
2936
|
+
};
|
|
2937
|
+
constructor(map?: {
|
|
2938
|
+
[key: string]: any;
|
|
2939
|
+
});
|
|
2940
|
+
}
|
|
2941
|
+
export declare class RemoveNodePoolNodesShrinkRequest extends $tea.Model {
|
|
2942
|
+
drainNode?: boolean;
|
|
2943
|
+
nodesShrink?: string;
|
|
2944
|
+
releaseNode?: boolean;
|
|
2945
|
+
static names(): {
|
|
2946
|
+
[key: string]: string;
|
|
2947
|
+
};
|
|
2948
|
+
static types(): {
|
|
2949
|
+
[key: string]: any;
|
|
2950
|
+
};
|
|
2951
|
+
constructor(map?: {
|
|
2952
|
+
[key: string]: any;
|
|
2953
|
+
});
|
|
2954
|
+
}
|
|
2955
|
+
export declare class RemoveNodePoolNodesResponseBody extends $tea.Model {
|
|
2956
|
+
requestId?: string;
|
|
2957
|
+
taskId?: string;
|
|
2958
|
+
static names(): {
|
|
2959
|
+
[key: string]: string;
|
|
2960
|
+
};
|
|
2961
|
+
static types(): {
|
|
2962
|
+
[key: string]: any;
|
|
2963
|
+
};
|
|
2964
|
+
constructor(map?: {
|
|
2965
|
+
[key: string]: any;
|
|
2966
|
+
});
|
|
2967
|
+
}
|
|
2968
|
+
export declare class RemoveNodePoolNodesResponse extends $tea.Model {
|
|
2969
|
+
headers: {
|
|
2970
|
+
[key: string]: string;
|
|
2971
|
+
};
|
|
2972
|
+
statusCode: number;
|
|
2973
|
+
body: RemoveNodePoolNodesResponseBody;
|
|
2974
|
+
static names(): {
|
|
2975
|
+
[key: string]: string;
|
|
2976
|
+
};
|
|
2977
|
+
static types(): {
|
|
2978
|
+
[key: string]: any;
|
|
2979
|
+
};
|
|
2980
|
+
constructor(map?: {
|
|
2981
|
+
[key: string]: any;
|
|
2982
|
+
});
|
|
2983
|
+
}
|
|
2910
2984
|
export declare class RemoveWorkflowResponse extends $tea.Model {
|
|
2911
2985
|
headers: {
|
|
2912
2986
|
[key: string]: string;
|
|
@@ -3472,22 +3546,6 @@ export declare class UpgradeClusterAddonsResponse extends $tea.Model {
|
|
|
3472
3546
|
[key: string]: any;
|
|
3473
3547
|
});
|
|
3474
3548
|
}
|
|
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
3549
|
export declare class AttachInstancesResponseBodyList extends $tea.Model {
|
|
3492
3550
|
code?: string;
|
|
3493
3551
|
instanceId?: string;
|
|
@@ -5638,6 +5696,10 @@ export default class Client extends OpenApi {
|
|
|
5638
5696
|
removeClusterNodesWithOptions(ClusterId: string, request: RemoveClusterNodesRequest, headers: {
|
|
5639
5697
|
[key: string]: string;
|
|
5640
5698
|
}, runtime: $Util.RuntimeOptions): Promise<RemoveClusterNodesResponse>;
|
|
5699
|
+
removeNodePoolNodes(ClusterId: string, NodepoolId: string, request: RemoveNodePoolNodesRequest): Promise<RemoveNodePoolNodesResponse>;
|
|
5700
|
+
removeNodePoolNodesWithOptions(ClusterId: string, NodepoolId: string, tmpReq: RemoveNodePoolNodesRequest, headers: {
|
|
5701
|
+
[key: string]: string;
|
|
5702
|
+
}, runtime: $Util.RuntimeOptions): Promise<RemoveNodePoolNodesResponse>;
|
|
5641
5703
|
removeWorkflow(workflowName: string): Promise<RemoveWorkflowResponse>;
|
|
5642
5704
|
removeWorkflowWithOptions(workflowName: string, headers: {
|
|
5643
5705
|
[key: string]: string;
|