@alicloud/cs20151215 4.3.0 → 4.3.1
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 +17 -0
- package/dist/client.js +26 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +27 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alicloud/cs20151215",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/client.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@alicloud/tea-typescript": "^1.7.1",
|
|
23
23
|
"@alicloud/tea-util": "^1.4.8",
|
|
24
|
-
"@alicloud/openapi-client": "^0.4.
|
|
24
|
+
"@alicloud/openapi-client": "^0.4.10",
|
|
25
25
|
"@alicloud/openapi-util": "^0.3.2",
|
|
26
26
|
"@alicloud/endpoint-util": "^0.0.1"
|
|
27
27
|
},
|
package/src/client.ts
CHANGED
|
@@ -11919,12 +11919,14 @@ export class DescribeNodePoolVulsResponseBodyVulRecordsVulList extends $tea.Mode
|
|
|
11919
11919
|
cveList?: string[];
|
|
11920
11920
|
name?: string;
|
|
11921
11921
|
necessity?: string;
|
|
11922
|
+
needReboot?: boolean;
|
|
11922
11923
|
static names(): { [key: string]: string } {
|
|
11923
11924
|
return {
|
|
11924
11925
|
aliasName: 'alias_name',
|
|
11925
11926
|
cveList: 'cve_list',
|
|
11926
11927
|
name: 'name',
|
|
11927
11928
|
necessity: 'necessity',
|
|
11929
|
+
needReboot: 'need_reboot',
|
|
11928
11930
|
};
|
|
11929
11931
|
}
|
|
11930
11932
|
|
|
@@ -11934,6 +11936,7 @@ export class DescribeNodePoolVulsResponseBodyVulRecordsVulList extends $tea.Mode
|
|
|
11934
11936
|
cveList: { 'type': 'array', 'itemType': 'string' },
|
|
11935
11937
|
name: 'string',
|
|
11936
11938
|
necessity: 'string',
|
|
11939
|
+
needReboot: 'boolean',
|
|
11937
11940
|
};
|
|
11938
11941
|
}
|
|
11939
11942
|
|
|
@@ -14136,12 +14139,15 @@ export default class Client extends OpenApi {
|
|
|
14136
14139
|
}
|
|
14137
14140
|
|
|
14138
14141
|
/**
|
|
14142
|
+
* @deprecated OpenAPI CancelComponentUpgrade is deprecated
|
|
14143
|
+
*
|
|
14139
14144
|
* @summary You can call the CancelComponentUpgrade operation to cancel the update of a component.
|
|
14140
14145
|
*
|
|
14141
14146
|
* @param headers map
|
|
14142
14147
|
* @param runtime runtime options for this request RuntimeOptions
|
|
14143
14148
|
* @return CancelComponentUpgradeResponse
|
|
14144
14149
|
*/
|
|
14150
|
+
// Deprecated
|
|
14145
14151
|
async cancelComponentUpgradeWithOptions(clusterId: string, componentId: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CancelComponentUpgradeResponse> {
|
|
14146
14152
|
let req = new $OpenApi.OpenApiRequest({
|
|
14147
14153
|
headers: headers,
|
|
@@ -14161,10 +14167,13 @@ export default class Client extends OpenApi {
|
|
|
14161
14167
|
}
|
|
14162
14168
|
|
|
14163
14169
|
/**
|
|
14170
|
+
* @deprecated OpenAPI CancelComponentUpgrade is deprecated
|
|
14171
|
+
*
|
|
14164
14172
|
* @summary You can call the CancelComponentUpgrade operation to cancel the update of a component.
|
|
14165
14173
|
*
|
|
14166
14174
|
* @return CancelComponentUpgradeResponse
|
|
14167
14175
|
*/
|
|
14176
|
+
// Deprecated
|
|
14168
14177
|
async cancelComponentUpgrade(clusterId: string, componentId: string): Promise<CancelComponentUpgradeResponse> {
|
|
14169
14178
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14170
14179
|
let headers : {[key: string ]: string} = { };
|
|
@@ -18236,12 +18245,15 @@ export default class Client extends OpenApi {
|
|
|
18236
18245
|
}
|
|
18237
18246
|
|
|
18238
18247
|
/**
|
|
18248
|
+
* @deprecated OpenAPI GetUpgradeStatus is deprecated
|
|
18249
|
+
*
|
|
18239
18250
|
* @summary You can call the GetUpgradeStatus operation to query the update progress of a cluster by cluster ID.
|
|
18240
18251
|
*
|
|
18241
18252
|
* @param headers map
|
|
18242
18253
|
* @param runtime runtime options for this request RuntimeOptions
|
|
18243
18254
|
* @return GetUpgradeStatusResponse
|
|
18244
18255
|
*/
|
|
18256
|
+
// Deprecated
|
|
18245
18257
|
async getUpgradeStatusWithOptions(ClusterId: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetUpgradeStatusResponse> {
|
|
18246
18258
|
let req = new $OpenApi.OpenApiRequest({
|
|
18247
18259
|
headers: headers,
|
|
@@ -18261,10 +18273,13 @@ export default class Client extends OpenApi {
|
|
|
18261
18273
|
}
|
|
18262
18274
|
|
|
18263
18275
|
/**
|
|
18276
|
+
* @deprecated OpenAPI GetUpgradeStatus is deprecated
|
|
18277
|
+
*
|
|
18264
18278
|
* @summary You can call the GetUpgradeStatus operation to query the update progress of a cluster by cluster ID.
|
|
18265
18279
|
*
|
|
18266
18280
|
* @return GetUpgradeStatusResponse
|
|
18267
18281
|
*/
|
|
18282
|
+
// Deprecated
|
|
18268
18283
|
async getUpgradeStatus(ClusterId: string): Promise<GetUpgradeStatusResponse> {
|
|
18269
18284
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18270
18285
|
let headers : {[key: string ]: string} = { };
|
|
@@ -19198,12 +19213,15 @@ export default class Client extends OpenApi {
|
|
|
19198
19213
|
}
|
|
19199
19214
|
|
|
19200
19215
|
/**
|
|
19216
|
+
* @deprecated OpenAPI PauseComponentUpgrade is deprecated
|
|
19217
|
+
*
|
|
19201
19218
|
* @summary You can call the PauseComponentUpgrade operation to pause the update of a component.
|
|
19202
19219
|
*
|
|
19203
19220
|
* @param headers map
|
|
19204
19221
|
* @param runtime runtime options for this request RuntimeOptions
|
|
19205
19222
|
* @return PauseComponentUpgradeResponse
|
|
19206
19223
|
*/
|
|
19224
|
+
// Deprecated
|
|
19207
19225
|
async pauseComponentUpgradeWithOptions(clusterid: string, componentid: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PauseComponentUpgradeResponse> {
|
|
19208
19226
|
let req = new $OpenApi.OpenApiRequest({
|
|
19209
19227
|
headers: headers,
|
|
@@ -19223,10 +19241,13 @@ export default class Client extends OpenApi {
|
|
|
19223
19241
|
}
|
|
19224
19242
|
|
|
19225
19243
|
/**
|
|
19244
|
+
* @deprecated OpenAPI PauseComponentUpgrade is deprecated
|
|
19245
|
+
*
|
|
19226
19246
|
* @summary You can call the PauseComponentUpgrade operation to pause the update of a component.
|
|
19227
19247
|
*
|
|
19228
19248
|
* @return PauseComponentUpgradeResponse
|
|
19229
19249
|
*/
|
|
19250
|
+
// Deprecated
|
|
19230
19251
|
async pauseComponentUpgrade(clusterid: string, componentid: string): Promise<PauseComponentUpgradeResponse> {
|
|
19231
19252
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19232
19253
|
let headers : {[key: string ]: string} = { };
|
|
@@ -19515,12 +19536,15 @@ export default class Client extends OpenApi {
|
|
|
19515
19536
|
}
|
|
19516
19537
|
|
|
19517
19538
|
/**
|
|
19539
|
+
* @deprecated OpenAPI ResumeComponentUpgrade is deprecated
|
|
19540
|
+
*
|
|
19518
19541
|
* @summary You can call the ResumeComponentUpgrade operation to resume the update of a component.
|
|
19519
19542
|
*
|
|
19520
19543
|
* @param headers map
|
|
19521
19544
|
* @param runtime runtime options for this request RuntimeOptions
|
|
19522
19545
|
* @return ResumeComponentUpgradeResponse
|
|
19523
19546
|
*/
|
|
19547
|
+
// Deprecated
|
|
19524
19548
|
async resumeComponentUpgradeWithOptions(clusterid: string, componentid: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ResumeComponentUpgradeResponse> {
|
|
19525
19549
|
let req = new $OpenApi.OpenApiRequest({
|
|
19526
19550
|
headers: headers,
|
|
@@ -19540,10 +19564,13 @@ export default class Client extends OpenApi {
|
|
|
19540
19564
|
}
|
|
19541
19565
|
|
|
19542
19566
|
/**
|
|
19567
|
+
* @deprecated OpenAPI ResumeComponentUpgrade is deprecated
|
|
19568
|
+
*
|
|
19543
19569
|
* @summary You can call the ResumeComponentUpgrade operation to resume the update of a component.
|
|
19544
19570
|
*
|
|
19545
19571
|
* @return ResumeComponentUpgradeResponse
|
|
19546
19572
|
*/
|
|
19573
|
+
// Deprecated
|
|
19547
19574
|
async resumeComponentUpgrade(clusterid: string, componentid: string): Promise<ResumeComponentUpgradeResponse> {
|
|
19548
19575
|
let runtime = new $Util.RuntimeOptions({ });
|
|
19549
19576
|
let headers : {[key: string ]: string} = { };
|