@alicloud/cs20151215 4.8.3 → 4.8.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/dist/client.d.ts +30 -0
- package/dist/client.js +53 -9
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +58 -2
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -10462,13 +10462,40 @@ export class InstallClusterAddonsRequest extends $tea.Model {
|
|
|
10462
10462
|
}
|
|
10463
10463
|
}
|
|
10464
10464
|
|
|
10465
|
+
export class InstallClusterAddonsResponseBody extends $tea.Model {
|
|
10466
|
+
clusterId?: string;
|
|
10467
|
+
requestId?: string;
|
|
10468
|
+
taskId?: string;
|
|
10469
|
+
static names(): { [key: string]: string } {
|
|
10470
|
+
return {
|
|
10471
|
+
clusterId: 'cluster_id',
|
|
10472
|
+
requestId: 'request_id',
|
|
10473
|
+
taskId: 'task_id',
|
|
10474
|
+
};
|
|
10475
|
+
}
|
|
10476
|
+
|
|
10477
|
+
static types(): { [key: string]: any } {
|
|
10478
|
+
return {
|
|
10479
|
+
clusterId: 'string',
|
|
10480
|
+
requestId: 'string',
|
|
10481
|
+
taskId: 'string',
|
|
10482
|
+
};
|
|
10483
|
+
}
|
|
10484
|
+
|
|
10485
|
+
constructor(map?: { [key: string]: any }) {
|
|
10486
|
+
super(map);
|
|
10487
|
+
}
|
|
10488
|
+
}
|
|
10489
|
+
|
|
10465
10490
|
export class InstallClusterAddonsResponse extends $tea.Model {
|
|
10466
10491
|
headers?: { [key: string]: string };
|
|
10467
10492
|
statusCode?: number;
|
|
10493
|
+
body?: InstallClusterAddonsResponseBody;
|
|
10468
10494
|
static names(): { [key: string]: string } {
|
|
10469
10495
|
return {
|
|
10470
10496
|
headers: 'headers',
|
|
10471
10497
|
statusCode: 'statusCode',
|
|
10498
|
+
body: 'body',
|
|
10472
10499
|
};
|
|
10473
10500
|
}
|
|
10474
10501
|
|
|
@@ -10476,6 +10503,7 @@ export class InstallClusterAddonsResponse extends $tea.Model {
|
|
|
10476
10503
|
return {
|
|
10477
10504
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10478
10505
|
statusCode: 'number',
|
|
10506
|
+
body: InstallClusterAddonsResponseBody,
|
|
10479
10507
|
};
|
|
10480
10508
|
}
|
|
10481
10509
|
|
|
@@ -13767,13 +13795,40 @@ export class UnInstallClusterAddonsRequest extends $tea.Model {
|
|
|
13767
13795
|
}
|
|
13768
13796
|
}
|
|
13769
13797
|
|
|
13798
|
+
export class UnInstallClusterAddonsResponseBody extends $tea.Model {
|
|
13799
|
+
clusterId?: string;
|
|
13800
|
+
requestId?: string;
|
|
13801
|
+
taskId?: string;
|
|
13802
|
+
static names(): { [key: string]: string } {
|
|
13803
|
+
return {
|
|
13804
|
+
clusterId: 'cluster_id',
|
|
13805
|
+
requestId: 'request_id',
|
|
13806
|
+
taskId: 'task_id',
|
|
13807
|
+
};
|
|
13808
|
+
}
|
|
13809
|
+
|
|
13810
|
+
static types(): { [key: string]: any } {
|
|
13811
|
+
return {
|
|
13812
|
+
clusterId: 'string',
|
|
13813
|
+
requestId: 'string',
|
|
13814
|
+
taskId: 'string',
|
|
13815
|
+
};
|
|
13816
|
+
}
|
|
13817
|
+
|
|
13818
|
+
constructor(map?: { [key: string]: any }) {
|
|
13819
|
+
super(map);
|
|
13820
|
+
}
|
|
13821
|
+
}
|
|
13822
|
+
|
|
13770
13823
|
export class UnInstallClusterAddonsResponse extends $tea.Model {
|
|
13771
13824
|
headers?: { [key: string]: string };
|
|
13772
13825
|
statusCode?: number;
|
|
13826
|
+
body?: UnInstallClusterAddonsResponseBody;
|
|
13773
13827
|
static names(): { [key: string]: string } {
|
|
13774
13828
|
return {
|
|
13775
13829
|
headers: 'headers',
|
|
13776
13830
|
statusCode: 'statusCode',
|
|
13831
|
+
body: 'body',
|
|
13777
13832
|
};
|
|
13778
13833
|
}
|
|
13779
13834
|
|
|
@@ -13781,6 +13836,7 @@ export class UnInstallClusterAddonsResponse extends $tea.Model {
|
|
|
13781
13836
|
return {
|
|
13782
13837
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
13783
13838
|
statusCode: 'number',
|
|
13839
|
+
body: UnInstallClusterAddonsResponseBody,
|
|
13784
13840
|
};
|
|
13785
13841
|
}
|
|
13786
13842
|
|
|
@@ -33269,7 +33325,7 @@ export default class Client extends OpenApi {
|
|
|
33269
33325
|
authType: "AK",
|
|
33270
33326
|
style: "ROA",
|
|
33271
33327
|
reqBodyType: "json",
|
|
33272
|
-
bodyType: "
|
|
33328
|
+
bodyType: "json",
|
|
33273
33329
|
});
|
|
33274
33330
|
return $tea.cast<InstallClusterAddonsResponse>(await this.callApi(params, req, runtime), new InstallClusterAddonsResponse({}));
|
|
33275
33331
|
}
|
|
@@ -35287,7 +35343,7 @@ export default class Client extends OpenApi {
|
|
|
35287
35343
|
authType: "AK",
|
|
35288
35344
|
style: "ROA",
|
|
35289
35345
|
reqBodyType: "json",
|
|
35290
|
-
bodyType: "
|
|
35346
|
+
bodyType: "json",
|
|
35291
35347
|
});
|
|
35292
35348
|
return $tea.cast<UnInstallClusterAddonsResponse>(await this.callApi(params, req, runtime), new UnInstallClusterAddonsResponse({}));
|
|
35293
35349
|
}
|