@alicloud/cs20151215 4.8.2 → 4.8.3
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 +99 -0
- package/dist/client.js +108 -5
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +155 -0
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -224,6 +224,7 @@ export class InstancePatterns extends $tea.Model {
|
|
|
224
224
|
|
|
225
225
|
export class KubeletConfig extends $tea.Model {
|
|
226
226
|
allowedUnsafeSysctls?: string[];
|
|
227
|
+
clusterDNS?: string[];
|
|
227
228
|
/**
|
|
228
229
|
* @example
|
|
229
230
|
* 5
|
|
@@ -234,6 +235,16 @@ export class KubeletConfig extends $tea.Model {
|
|
|
234
235
|
* 10Mi
|
|
235
236
|
*/
|
|
236
237
|
containerLogMaxSize?: string;
|
|
238
|
+
/**
|
|
239
|
+
* @example
|
|
240
|
+
* true
|
|
241
|
+
*/
|
|
242
|
+
cpuCFSQuota?: boolean;
|
|
243
|
+
/**
|
|
244
|
+
* @example
|
|
245
|
+
* 100ms
|
|
246
|
+
*/
|
|
247
|
+
cpuCFSQuotaPeriod?: string;
|
|
237
248
|
/**
|
|
238
249
|
* @example
|
|
239
250
|
* none
|
|
@@ -253,6 +264,16 @@ export class KubeletConfig extends $tea.Model {
|
|
|
253
264
|
evictionSoft?: { [key: string]: any };
|
|
254
265
|
evictionSoftGracePeriod?: { [key: string]: any };
|
|
255
266
|
featureGates?: { [key: string]: any };
|
|
267
|
+
/**
|
|
268
|
+
* @example
|
|
269
|
+
* 85
|
|
270
|
+
*/
|
|
271
|
+
imageGCHighThresholdPercent?: number;
|
|
272
|
+
/**
|
|
273
|
+
* @example
|
|
274
|
+
* 80
|
|
275
|
+
*/
|
|
276
|
+
imageGCLowThresholdPercent?: number;
|
|
256
277
|
/**
|
|
257
278
|
* @example
|
|
258
279
|
* 10
|
|
@@ -269,6 +290,16 @@ export class KubeletConfig extends $tea.Model {
|
|
|
269
290
|
* 110
|
|
270
291
|
*/
|
|
271
292
|
maxPods?: number;
|
|
293
|
+
/**
|
|
294
|
+
* @example
|
|
295
|
+
* none
|
|
296
|
+
*/
|
|
297
|
+
memoryManagerPolicy?: string;
|
|
298
|
+
/**
|
|
299
|
+
* @example
|
|
300
|
+
* -1
|
|
301
|
+
*/
|
|
302
|
+
podPidsLimit?: number;
|
|
272
303
|
/**
|
|
273
304
|
* @example
|
|
274
305
|
* 0
|
|
@@ -284,17 +315,27 @@ export class KubeletConfig extends $tea.Model {
|
|
|
284
315
|
* 5
|
|
285
316
|
*/
|
|
286
317
|
registryPullQPS?: number;
|
|
318
|
+
reservedMemory?: KubeletConfigReservedMemory[];
|
|
287
319
|
/**
|
|
288
320
|
* @example
|
|
289
321
|
* true
|
|
290
322
|
*/
|
|
291
323
|
serializeImagePulls?: boolean;
|
|
292
324
|
systemReserved?: { [key: string]: any };
|
|
325
|
+
/**
|
|
326
|
+
* @example
|
|
327
|
+
* restricted
|
|
328
|
+
*/
|
|
329
|
+
topologyManagerPolicy?: string;
|
|
330
|
+
tracing?: KubeletConfigTracing;
|
|
293
331
|
static names(): { [key: string]: string } {
|
|
294
332
|
return {
|
|
295
333
|
allowedUnsafeSysctls: 'allowedUnsafeSysctls',
|
|
334
|
+
clusterDNS: 'clusterDNS',
|
|
296
335
|
containerLogMaxFiles: 'containerLogMaxFiles',
|
|
297
336
|
containerLogMaxSize: 'containerLogMaxSize',
|
|
337
|
+
cpuCFSQuota: 'cpuCFSQuota',
|
|
338
|
+
cpuCFSQuotaPeriod: 'cpuCFSQuotaPeriod',
|
|
298
339
|
cpuManagerPolicy: 'cpuManagerPolicy',
|
|
299
340
|
eventBurst: 'eventBurst',
|
|
300
341
|
eventRecordQPS: 'eventRecordQPS',
|
|
@@ -302,23 +343,33 @@ export class KubeletConfig extends $tea.Model {
|
|
|
302
343
|
evictionSoft: 'evictionSoft',
|
|
303
344
|
evictionSoftGracePeriod: 'evictionSoftGracePeriod',
|
|
304
345
|
featureGates: 'featureGates',
|
|
346
|
+
imageGCHighThresholdPercent: 'imageGCHighThresholdPercent',
|
|
347
|
+
imageGCLowThresholdPercent: 'imageGCLowThresholdPercent',
|
|
305
348
|
kubeAPIBurst: 'kubeAPIBurst',
|
|
306
349
|
kubeAPIQPS: 'kubeAPIQPS',
|
|
307
350
|
kubeReserved: 'kubeReserved',
|
|
308
351
|
maxPods: 'maxPods',
|
|
352
|
+
memoryManagerPolicy: 'memoryManagerPolicy',
|
|
353
|
+
podPidsLimit: 'podPidsLimit',
|
|
309
354
|
readOnlyPort: 'readOnlyPort',
|
|
310
355
|
registryBurst: 'registryBurst',
|
|
311
356
|
registryPullQPS: 'registryPullQPS',
|
|
357
|
+
reservedMemory: 'reservedMemory',
|
|
312
358
|
serializeImagePulls: 'serializeImagePulls',
|
|
313
359
|
systemReserved: 'systemReserved',
|
|
360
|
+
topologyManagerPolicy: 'topologyManagerPolicy',
|
|
361
|
+
tracing: 'tracing',
|
|
314
362
|
};
|
|
315
363
|
}
|
|
316
364
|
|
|
317
365
|
static types(): { [key: string]: any } {
|
|
318
366
|
return {
|
|
319
367
|
allowedUnsafeSysctls: { 'type': 'array', 'itemType': 'string' },
|
|
368
|
+
clusterDNS: { 'type': 'array', 'itemType': 'string' },
|
|
320
369
|
containerLogMaxFiles: 'number',
|
|
321
370
|
containerLogMaxSize: 'string',
|
|
371
|
+
cpuCFSQuota: 'boolean',
|
|
372
|
+
cpuCFSQuotaPeriod: 'string',
|
|
322
373
|
cpuManagerPolicy: 'string',
|
|
323
374
|
eventBurst: 'number',
|
|
324
375
|
eventRecordQPS: 'number',
|
|
@@ -326,15 +377,22 @@ export class KubeletConfig extends $tea.Model {
|
|
|
326
377
|
evictionSoft: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
327
378
|
evictionSoftGracePeriod: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
328
379
|
featureGates: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
380
|
+
imageGCHighThresholdPercent: 'number',
|
|
381
|
+
imageGCLowThresholdPercent: 'number',
|
|
329
382
|
kubeAPIBurst: 'number',
|
|
330
383
|
kubeAPIQPS: 'number',
|
|
331
384
|
kubeReserved: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
332
385
|
maxPods: 'number',
|
|
386
|
+
memoryManagerPolicy: 'string',
|
|
387
|
+
podPidsLimit: 'number',
|
|
333
388
|
readOnlyPort: 'number',
|
|
334
389
|
registryBurst: 'number',
|
|
335
390
|
registryPullQPS: 'number',
|
|
391
|
+
reservedMemory: { 'type': 'array', 'itemType': KubeletConfigReservedMemory },
|
|
336
392
|
serializeImagePulls: 'boolean',
|
|
337
393
|
systemReserved: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
394
|
+
topologyManagerPolicy: 'string',
|
|
395
|
+
tracing: KubeletConfigTracing,
|
|
338
396
|
};
|
|
339
397
|
}
|
|
340
398
|
|
|
@@ -6930,15 +6988,18 @@ export class DescribeClusterUserKubeconfigResponse extends $tea.Model {
|
|
|
6930
6988
|
|
|
6931
6989
|
export class DescribeClusterV2UserKubeconfigRequest extends $tea.Model {
|
|
6932
6990
|
privateIpAddress?: boolean;
|
|
6991
|
+
temporaryDurationMinutes?: number;
|
|
6933
6992
|
static names(): { [key: string]: string } {
|
|
6934
6993
|
return {
|
|
6935
6994
|
privateIpAddress: 'PrivateIpAddress',
|
|
6995
|
+
temporaryDurationMinutes: 'TemporaryDurationMinutes',
|
|
6936
6996
|
};
|
|
6937
6997
|
}
|
|
6938
6998
|
|
|
6939
6999
|
static types(): { [key: string]: any } {
|
|
6940
7000
|
return {
|
|
6941
7001
|
privateIpAddress: 'boolean',
|
|
7002
|
+
temporaryDurationMinutes: 'number',
|
|
6942
7003
|
};
|
|
6943
7004
|
}
|
|
6944
7005
|
|
|
@@ -14988,6 +15049,54 @@ export class UpgradeClusterNodepoolResponse extends $tea.Model {
|
|
|
14988
15049
|
}
|
|
14989
15050
|
}
|
|
14990
15051
|
|
|
15052
|
+
export class KubeletConfigReservedMemory extends $tea.Model {
|
|
15053
|
+
limits?: { [key: string]: any };
|
|
15054
|
+
numaNode?: number;
|
|
15055
|
+
static names(): { [key: string]: string } {
|
|
15056
|
+
return {
|
|
15057
|
+
limits: 'limits',
|
|
15058
|
+
numaNode: 'numaNode',
|
|
15059
|
+
};
|
|
15060
|
+
}
|
|
15061
|
+
|
|
15062
|
+
static types(): { [key: string]: any } {
|
|
15063
|
+
return {
|
|
15064
|
+
limits: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
|
|
15065
|
+
numaNode: 'number',
|
|
15066
|
+
};
|
|
15067
|
+
}
|
|
15068
|
+
|
|
15069
|
+
constructor(map?: { [key: string]: any }) {
|
|
15070
|
+
super(map);
|
|
15071
|
+
}
|
|
15072
|
+
}
|
|
15073
|
+
|
|
15074
|
+
export class KubeletConfigTracing extends $tea.Model {
|
|
15075
|
+
/**
|
|
15076
|
+
* @example
|
|
15077
|
+
* localhost:4317
|
|
15078
|
+
*/
|
|
15079
|
+
endpoint?: string;
|
|
15080
|
+
samplingRatePerMillion?: number;
|
|
15081
|
+
static names(): { [key: string]: string } {
|
|
15082
|
+
return {
|
|
15083
|
+
endpoint: 'endpoint',
|
|
15084
|
+
samplingRatePerMillion: 'samplingRatePerMillion',
|
|
15085
|
+
};
|
|
15086
|
+
}
|
|
15087
|
+
|
|
15088
|
+
static types(): { [key: string]: any } {
|
|
15089
|
+
return {
|
|
15090
|
+
endpoint: 'string',
|
|
15091
|
+
samplingRatePerMillion: 'number',
|
|
15092
|
+
};
|
|
15093
|
+
}
|
|
15094
|
+
|
|
15095
|
+
constructor(map?: { [key: string]: any }) {
|
|
15096
|
+
super(map);
|
|
15097
|
+
}
|
|
15098
|
+
}
|
|
15099
|
+
|
|
14991
15100
|
export class NodepoolAutoScaling extends $tea.Model {
|
|
14992
15101
|
/**
|
|
14993
15102
|
* @example
|
|
@@ -29774,11 +29883,14 @@ export default class Client extends OpenApi {
|
|
|
29774
29883
|
/**
|
|
29775
29884
|
* You can call the CreateKubernetesTrigger operation to create a trigger for an application.
|
|
29776
29885
|
*
|
|
29886
|
+
* @deprecated OpenAPI CreateKubernetesTrigger is deprecated
|
|
29887
|
+
*
|
|
29777
29888
|
* @param request - CreateKubernetesTriggerRequest
|
|
29778
29889
|
* @param headers - map
|
|
29779
29890
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
29780
29891
|
* @returns CreateKubernetesTriggerResponse
|
|
29781
29892
|
*/
|
|
29893
|
+
// Deprecated
|
|
29782
29894
|
async createKubernetesTriggerWithOptions(request: CreateKubernetesTriggerRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateKubernetesTriggerResponse> {
|
|
29783
29895
|
Util.validateModel(request);
|
|
29784
29896
|
let body : {[key: string ]: any} = { };
|
|
@@ -29819,9 +29931,12 @@ export default class Client extends OpenApi {
|
|
|
29819
29931
|
/**
|
|
29820
29932
|
* You can call the CreateKubernetesTrigger operation to create a trigger for an application.
|
|
29821
29933
|
*
|
|
29934
|
+
* @deprecated OpenAPI CreateKubernetesTrigger is deprecated
|
|
29935
|
+
*
|
|
29822
29936
|
* @param request - CreateKubernetesTriggerRequest
|
|
29823
29937
|
* @returns CreateKubernetesTriggerResponse
|
|
29824
29938
|
*/
|
|
29939
|
+
// Deprecated
|
|
29825
29940
|
async createKubernetesTrigger(request: CreateKubernetesTriggerRequest): Promise<CreateKubernetesTriggerResponse> {
|
|
29826
29941
|
let runtime = new $Util.RuntimeOptions({ });
|
|
29827
29942
|
let headers : {[key: string ]: string} = { };
|
|
@@ -30273,10 +30388,13 @@ export default class Client extends OpenApi {
|
|
|
30273
30388
|
/**
|
|
30274
30389
|
* You can call the DeleteKubernetesTrigger operation to delete an application trigger by trigger ID
|
|
30275
30390
|
*
|
|
30391
|
+
* @deprecated OpenAPI DeleteKubernetesTrigger is deprecated
|
|
30392
|
+
*
|
|
30276
30393
|
* @param headers - map
|
|
30277
30394
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
30278
30395
|
* @returns DeleteKubernetesTriggerResponse
|
|
30279
30396
|
*/
|
|
30397
|
+
// Deprecated
|
|
30280
30398
|
async deleteKubernetesTriggerWithOptions(Id: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DeleteKubernetesTriggerResponse> {
|
|
30281
30399
|
let req = new $OpenApi.OpenApiRequest({
|
|
30282
30400
|
headers: headers,
|
|
@@ -30297,8 +30415,11 @@ export default class Client extends OpenApi {
|
|
|
30297
30415
|
|
|
30298
30416
|
/**
|
|
30299
30417
|
* You can call the DeleteKubernetesTrigger operation to delete an application trigger by trigger ID
|
|
30418
|
+
*
|
|
30419
|
+
* @deprecated OpenAPI DeleteKubernetesTrigger is deprecated
|
|
30300
30420
|
* @returns DeleteKubernetesTriggerResponse
|
|
30301
30421
|
*/
|
|
30422
|
+
// Deprecated
|
|
30302
30423
|
async deleteKubernetesTrigger(Id: string): Promise<DeleteKubernetesTriggerResponse> {
|
|
30303
30424
|
let runtime = new $Util.RuntimeOptions({ });
|
|
30304
30425
|
let headers : {[key: string ]: string} = { };
|
|
@@ -31336,6 +31457,10 @@ export default class Client extends OpenApi {
|
|
|
31336
31457
|
query["PrivateIpAddress"] = request.privateIpAddress;
|
|
31337
31458
|
}
|
|
31338
31459
|
|
|
31460
|
+
if (!Util.isUnset(request.temporaryDurationMinutes)) {
|
|
31461
|
+
query["TemporaryDurationMinutes"] = request.temporaryDurationMinutes;
|
|
31462
|
+
}
|
|
31463
|
+
|
|
31339
31464
|
let req = new $OpenApi.OpenApiRequest({
|
|
31340
31465
|
headers: headers,
|
|
31341
31466
|
query: OpenApiUtil.query(query),
|
|
@@ -31608,10 +31733,13 @@ export default class Client extends OpenApi {
|
|
|
31608
31733
|
/**
|
|
31609
31734
|
* You can call the DescribeEdgeMachineActiveProcess operation to query the activation progress of a cloud-native box.
|
|
31610
31735
|
*
|
|
31736
|
+
* @deprecated OpenAPI DescribeEdgeMachineActiveProcess is deprecated
|
|
31737
|
+
*
|
|
31611
31738
|
* @param headers - map
|
|
31612
31739
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
31613
31740
|
* @returns DescribeEdgeMachineActiveProcessResponse
|
|
31614
31741
|
*/
|
|
31742
|
+
// Deprecated
|
|
31615
31743
|
async describeEdgeMachineActiveProcessWithOptions(edgeMachineid: string, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeEdgeMachineActiveProcessResponse> {
|
|
31616
31744
|
let req = new $OpenApi.OpenApiRequest({
|
|
31617
31745
|
headers: headers,
|
|
@@ -31632,8 +31760,11 @@ export default class Client extends OpenApi {
|
|
|
31632
31760
|
|
|
31633
31761
|
/**
|
|
31634
31762
|
* You can call the DescribeEdgeMachineActiveProcess operation to query the activation progress of a cloud-native box.
|
|
31763
|
+
*
|
|
31764
|
+
* @deprecated OpenAPI DescribeEdgeMachineActiveProcess is deprecated
|
|
31635
31765
|
* @returns DescribeEdgeMachineActiveProcessResponse
|
|
31636
31766
|
*/
|
|
31767
|
+
// Deprecated
|
|
31637
31768
|
async describeEdgeMachineActiveProcess(edgeMachineid: string): Promise<DescribeEdgeMachineActiveProcessResponse> {
|
|
31638
31769
|
let runtime = new $Util.RuntimeOptions({ });
|
|
31639
31770
|
let headers : {[key: string ]: string} = { };
|
|
@@ -31891,11 +32022,14 @@ export default class Client extends OpenApi {
|
|
|
31891
32022
|
* @remarks
|
|
31892
32023
|
* For more information, see [Register an external Kubernetes cluster](https://help.aliyun.com/document_detail/121053.html).
|
|
31893
32024
|
*
|
|
32025
|
+
* @deprecated OpenAPI DescribeExternalAgent is deprecated
|
|
32026
|
+
*
|
|
31894
32027
|
* @param request - DescribeExternalAgentRequest
|
|
31895
32028
|
* @param headers - map
|
|
31896
32029
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
31897
32030
|
* @returns DescribeExternalAgentResponse
|
|
31898
32031
|
*/
|
|
32032
|
+
// Deprecated
|
|
31899
32033
|
async describeExternalAgentWithOptions(ClusterId: string, request: DescribeExternalAgentRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DescribeExternalAgentResponse> {
|
|
31900
32034
|
Util.validateModel(request);
|
|
31901
32035
|
let query : {[key: string ]: any} = { };
|
|
@@ -31931,9 +32065,12 @@ export default class Client extends OpenApi {
|
|
|
31931
32065
|
* @remarks
|
|
31932
32066
|
* For more information, see [Register an external Kubernetes cluster](https://help.aliyun.com/document_detail/121053.html).
|
|
31933
32067
|
*
|
|
32068
|
+
* @deprecated OpenAPI DescribeExternalAgent is deprecated
|
|
32069
|
+
*
|
|
31934
32070
|
* @param request - DescribeExternalAgentRequest
|
|
31935
32071
|
* @returns DescribeExternalAgentResponse
|
|
31936
32072
|
*/
|
|
32073
|
+
// Deprecated
|
|
31937
32074
|
async describeExternalAgent(ClusterId: string, request: DescribeExternalAgentRequest): Promise<DescribeExternalAgentResponse> {
|
|
31938
32075
|
let runtime = new $Util.RuntimeOptions({ });
|
|
31939
32076
|
let headers : {[key: string ]: string} = { };
|
|
@@ -32655,11 +32792,14 @@ export default class Client extends OpenApi {
|
|
|
32655
32792
|
/**
|
|
32656
32793
|
* You can call the EdgeClusterAddEdgeMachine operation to add a cloud-native box to a Container Service for Kubernetes (ACK) Edge cluster.
|
|
32657
32794
|
*
|
|
32795
|
+
* @deprecated OpenAPI EdgeClusterAddEdgeMachine is deprecated
|
|
32796
|
+
*
|
|
32658
32797
|
* @param request - EdgeClusterAddEdgeMachineRequest
|
|
32659
32798
|
* @param headers - map
|
|
32660
32799
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
32661
32800
|
* @returns EdgeClusterAddEdgeMachineResponse
|
|
32662
32801
|
*/
|
|
32802
|
+
// Deprecated
|
|
32663
32803
|
async edgeClusterAddEdgeMachineWithOptions(clusterid: string, edgeMachineid: string, request: EdgeClusterAddEdgeMachineRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<EdgeClusterAddEdgeMachineResponse> {
|
|
32664
32804
|
Util.validateModel(request);
|
|
32665
32805
|
let body : {[key: string ]: any} = { };
|
|
@@ -32696,9 +32836,12 @@ export default class Client extends OpenApi {
|
|
|
32696
32836
|
/**
|
|
32697
32837
|
* You can call the EdgeClusterAddEdgeMachine operation to add a cloud-native box to a Container Service for Kubernetes (ACK) Edge cluster.
|
|
32698
32838
|
*
|
|
32839
|
+
* @deprecated OpenAPI EdgeClusterAddEdgeMachine is deprecated
|
|
32840
|
+
*
|
|
32699
32841
|
* @param request - EdgeClusterAddEdgeMachineRequest
|
|
32700
32842
|
* @returns EdgeClusterAddEdgeMachineResponse
|
|
32701
32843
|
*/
|
|
32844
|
+
// Deprecated
|
|
32702
32845
|
async edgeClusterAddEdgeMachine(clusterid: string, edgeMachineid: string, request: EdgeClusterAddEdgeMachineRequest): Promise<EdgeClusterAddEdgeMachineResponse> {
|
|
32703
32846
|
let runtime = new $Util.RuntimeOptions({ });
|
|
32704
32847
|
let headers : {[key: string ]: string} = { };
|
|
@@ -32952,11 +33095,14 @@ export default class Client extends OpenApi {
|
|
|
32952
33095
|
/**
|
|
32953
33096
|
* You can call the GetKubernetesTrigger operationto query the triggers of an application by application name.
|
|
32954
33097
|
*
|
|
33098
|
+
* @deprecated OpenAPI GetKubernetesTrigger is deprecated
|
|
33099
|
+
*
|
|
32955
33100
|
* @param request - GetKubernetesTriggerRequest
|
|
32956
33101
|
* @param headers - map
|
|
32957
33102
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
32958
33103
|
* @returns GetKubernetesTriggerResponse
|
|
32959
33104
|
*/
|
|
33105
|
+
// Deprecated
|
|
32960
33106
|
async getKubernetesTriggerWithOptions(ClusterId: string, request: GetKubernetesTriggerRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetKubernetesTriggerResponse> {
|
|
32961
33107
|
Util.validateModel(request);
|
|
32962
33108
|
let query : {[key: string ]: any} = { };
|
|
@@ -32997,9 +33143,12 @@ export default class Client extends OpenApi {
|
|
|
32997
33143
|
/**
|
|
32998
33144
|
* You can call the GetKubernetesTrigger operationto query the triggers of an application by application name.
|
|
32999
33145
|
*
|
|
33146
|
+
* @deprecated OpenAPI GetKubernetesTrigger is deprecated
|
|
33147
|
+
*
|
|
33000
33148
|
* @param request - GetKubernetesTriggerRequest
|
|
33001
33149
|
* @returns GetKubernetesTriggerResponse
|
|
33002
33150
|
*/
|
|
33151
|
+
// Deprecated
|
|
33003
33152
|
async getKubernetesTrigger(ClusterId: string, request: GetKubernetesTriggerRequest): Promise<GetKubernetesTriggerResponse> {
|
|
33004
33153
|
let runtime = new $Util.RuntimeOptions({ });
|
|
33005
33154
|
let headers : {[key: string ]: string} = { };
|
|
@@ -33732,11 +33881,14 @@ export default class Client extends OpenApi {
|
|
|
33732
33881
|
/**
|
|
33733
33882
|
* This API operation applies only to Container Service for Kubernetes (ACK) managed clusters.
|
|
33734
33883
|
*
|
|
33884
|
+
* @deprecated OpenAPI ModifyClusterConfiguration is deprecated
|
|
33885
|
+
*
|
|
33735
33886
|
* @param request - ModifyClusterConfigurationRequest
|
|
33736
33887
|
* @param headers - map
|
|
33737
33888
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
33738
33889
|
* @returns ModifyClusterConfigurationResponse
|
|
33739
33890
|
*/
|
|
33891
|
+
// Deprecated
|
|
33740
33892
|
async modifyClusterConfigurationWithOptions(ClusterId: string, request: ModifyClusterConfigurationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<ModifyClusterConfigurationResponse> {
|
|
33741
33893
|
Util.validateModel(request);
|
|
33742
33894
|
let body : {[key: string ]: any} = { };
|
|
@@ -33765,9 +33917,12 @@ export default class Client extends OpenApi {
|
|
|
33765
33917
|
/**
|
|
33766
33918
|
* This API operation applies only to Container Service for Kubernetes (ACK) managed clusters.
|
|
33767
33919
|
*
|
|
33920
|
+
* @deprecated OpenAPI ModifyClusterConfiguration is deprecated
|
|
33921
|
+
*
|
|
33768
33922
|
* @param request - ModifyClusterConfigurationRequest
|
|
33769
33923
|
* @returns ModifyClusterConfigurationResponse
|
|
33770
33924
|
*/
|
|
33925
|
+
// Deprecated
|
|
33771
33926
|
async modifyClusterConfiguration(ClusterId: string, request: ModifyClusterConfigurationRequest): Promise<ModifyClusterConfigurationResponse> {
|
|
33772
33927
|
let runtime = new $Util.RuntimeOptions({ });
|
|
33773
33928
|
let headers : {[key: string ]: string} = { };
|