tencentcloud-sdk-nodejs-intl-en 3.0.1296 → 3.0.1298
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/package.json +1 -1
- package/tencentcloud/ckafka/v20190819/ckafka_client.js +31 -2
- package/tencentcloud/ckafka/v20190819/models.js +541 -163
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/tke/v20180525/models.js +381 -85
- package/tencentcloud/tke/v20180525/tke_client.js +46 -6
|
@@ -2685,6 +2685,55 @@ Note: this field may return null, indicating that no valid value is obtained.
|
|
|
2685
2685
|
}
|
|
2686
2686
|
}
|
|
2687
2687
|
|
|
2688
|
+
/**
|
|
2689
|
+
* DisableControlPlaneLogs request structure.
|
|
2690
|
+
* @class
|
|
2691
|
+
*/
|
|
2692
|
+
class DisableControlPlaneLogsRequest extends AbstractModel {
|
|
2693
|
+
constructor(){
|
|
2694
|
+
super();
|
|
2695
|
+
|
|
2696
|
+
/**
|
|
2697
|
+
* Cluster ID
|
|
2698
|
+
* @type {string || null}
|
|
2699
|
+
*/
|
|
2700
|
+
this.ClusterId = null;
|
|
2701
|
+
|
|
2702
|
+
/**
|
|
2703
|
+
* Cluster type. currently only support tke.
|
|
2704
|
+
* @type {string || null}
|
|
2705
|
+
*/
|
|
2706
|
+
this.ClusterType = null;
|
|
2707
|
+
|
|
2708
|
+
/**
|
|
2709
|
+
* Component name list. currently supports cluster-autoscaler, kapenter.
|
|
2710
|
+
* @type {Array.<string> || null}
|
|
2711
|
+
*/
|
|
2712
|
+
this.ComponentNames = null;
|
|
2713
|
+
|
|
2714
|
+
/**
|
|
2715
|
+
* Specifies whether to delete the logset and topic. if the logset and topic are in use by other collection rules, they will not be deleted.
|
|
2716
|
+
* @type {boolean || null}
|
|
2717
|
+
*/
|
|
2718
|
+
this.DeleteLogSetAndTopic = null;
|
|
2719
|
+
|
|
2720
|
+
}
|
|
2721
|
+
|
|
2722
|
+
/**
|
|
2723
|
+
* @private
|
|
2724
|
+
*/
|
|
2725
|
+
deserialize(params) {
|
|
2726
|
+
if (!params) {
|
|
2727
|
+
return;
|
|
2728
|
+
}
|
|
2729
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
2730
|
+
this.ClusterType = 'ClusterType' in params ? params.ClusterType : null;
|
|
2731
|
+
this.ComponentNames = 'ComponentNames' in params ? params.ComponentNames : null;
|
|
2732
|
+
this.DeleteLogSetAndTopic = 'DeleteLogSetAndTopic' in params ? params.DeleteLogSetAndTopic : null;
|
|
2733
|
+
|
|
2734
|
+
}
|
|
2735
|
+
}
|
|
2736
|
+
|
|
2688
2737
|
/**
|
|
2689
2738
|
* Describes the TAT service information.
|
|
2690
2739
|
* @class
|
|
@@ -6851,6 +6900,34 @@ class DescribeAvailableClusterVersionRequest extends AbstractModel {
|
|
|
6851
6900
|
}
|
|
6852
6901
|
}
|
|
6853
6902
|
|
|
6903
|
+
/**
|
|
6904
|
+
* DisableControlPlaneLogs response structure.
|
|
6905
|
+
* @class
|
|
6906
|
+
*/
|
|
6907
|
+
class DisableControlPlaneLogsResponse extends AbstractModel {
|
|
6908
|
+
constructor(){
|
|
6909
|
+
super();
|
|
6910
|
+
|
|
6911
|
+
/**
|
|
6912
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
6913
|
+
* @type {string || null}
|
|
6914
|
+
*/
|
|
6915
|
+
this.RequestId = null;
|
|
6916
|
+
|
|
6917
|
+
}
|
|
6918
|
+
|
|
6919
|
+
/**
|
|
6920
|
+
* @private
|
|
6921
|
+
*/
|
|
6922
|
+
deserialize(params) {
|
|
6923
|
+
if (!params) {
|
|
6924
|
+
return;
|
|
6925
|
+
}
|
|
6926
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
6927
|
+
|
|
6928
|
+
}
|
|
6929
|
+
}
|
|
6930
|
+
|
|
6854
6931
|
/**
|
|
6855
6932
|
* DeleteClusterAsGroups response structure.
|
|
6856
6933
|
* @class
|
|
@@ -8650,18 +8727,30 @@ Note: This field may return `null`, indicating that no valid values can be obtai
|
|
|
8650
8727
|
}
|
|
8651
8728
|
|
|
8652
8729
|
/**
|
|
8653
|
-
*
|
|
8730
|
+
* DescribeEncryptionStatus response structure.
|
|
8654
8731
|
* @class
|
|
8655
8732
|
*/
|
|
8656
|
-
class
|
|
8733
|
+
class DescribeEncryptionStatusResponse extends AbstractModel {
|
|
8657
8734
|
constructor(){
|
|
8658
8735
|
super();
|
|
8659
8736
|
|
|
8660
8737
|
/**
|
|
8661
|
-
*
|
|
8738
|
+
* Encryption status
|
|
8662
8739
|
* @type {string || null}
|
|
8663
8740
|
*/
|
|
8664
|
-
this.
|
|
8741
|
+
this.Status = null;
|
|
8742
|
+
|
|
8743
|
+
/**
|
|
8744
|
+
* Encryption error message
|
|
8745
|
+
* @type {string || null}
|
|
8746
|
+
*/
|
|
8747
|
+
this.ErrorMsg = null;
|
|
8748
|
+
|
|
8749
|
+
/**
|
|
8750
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
8751
|
+
* @type {string || null}
|
|
8752
|
+
*/
|
|
8753
|
+
this.RequestId = null;
|
|
8665
8754
|
|
|
8666
8755
|
}
|
|
8667
8756
|
|
|
@@ -8672,7 +8761,9 @@ class UninstallEdgeLogAgentRequest extends AbstractModel {
|
|
|
8672
8761
|
if (!params) {
|
|
8673
8762
|
return;
|
|
8674
8763
|
}
|
|
8675
|
-
this.
|
|
8764
|
+
this.Status = 'Status' in params ? params.Status : null;
|
|
8765
|
+
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
8766
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8676
8767
|
|
|
8677
8768
|
}
|
|
8678
8769
|
}
|
|
@@ -8852,6 +8943,34 @@ class DeleteClusterNodePoolResponse extends AbstractModel {
|
|
|
8852
8943
|
}
|
|
8853
8944
|
}
|
|
8854
8945
|
|
|
8946
|
+
/**
|
|
8947
|
+
* DeleteClusterRoute response structure.
|
|
8948
|
+
* @class
|
|
8949
|
+
*/
|
|
8950
|
+
class DeleteClusterRouteResponse extends AbstractModel {
|
|
8951
|
+
constructor(){
|
|
8952
|
+
super();
|
|
8953
|
+
|
|
8954
|
+
/**
|
|
8955
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
8956
|
+
* @type {string || null}
|
|
8957
|
+
*/
|
|
8958
|
+
this.RequestId = null;
|
|
8959
|
+
|
|
8960
|
+
}
|
|
8961
|
+
|
|
8962
|
+
/**
|
|
8963
|
+
* @private
|
|
8964
|
+
*/
|
|
8965
|
+
deserialize(params) {
|
|
8966
|
+
if (!params) {
|
|
8967
|
+
return;
|
|
8968
|
+
}
|
|
8969
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
8970
|
+
|
|
8971
|
+
}
|
|
8972
|
+
}
|
|
8973
|
+
|
|
8855
8974
|
/**
|
|
8856
8975
|
* CreateClusterNodePool response structure.
|
|
8857
8976
|
* @class
|
|
@@ -10297,6 +10416,41 @@ Note: This field may return "null", indicating that no valid value can be obtain
|
|
|
10297
10416
|
}
|
|
10298
10417
|
}
|
|
10299
10418
|
|
|
10419
|
+
/**
|
|
10420
|
+
* DescribeControlPlaneLogs request structure.
|
|
10421
|
+
* @class
|
|
10422
|
+
*/
|
|
10423
|
+
class DescribeControlPlaneLogsRequest extends AbstractModel {
|
|
10424
|
+
constructor(){
|
|
10425
|
+
super();
|
|
10426
|
+
|
|
10427
|
+
/**
|
|
10428
|
+
* Cluster ID
|
|
10429
|
+
* @type {string || null}
|
|
10430
|
+
*/
|
|
10431
|
+
this.ClusterId = null;
|
|
10432
|
+
|
|
10433
|
+
/**
|
|
10434
|
+
* Cluster type. currently only support tke.
|
|
10435
|
+
* @type {string || null}
|
|
10436
|
+
*/
|
|
10437
|
+
this.ClusterType = null;
|
|
10438
|
+
|
|
10439
|
+
}
|
|
10440
|
+
|
|
10441
|
+
/**
|
|
10442
|
+
* @private
|
|
10443
|
+
*/
|
|
10444
|
+
deserialize(params) {
|
|
10445
|
+
if (!params) {
|
|
10446
|
+
return;
|
|
10447
|
+
}
|
|
10448
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
10449
|
+
this.ClusterType = 'ClusterType' in params ? params.ClusterType : null;
|
|
10450
|
+
|
|
10451
|
+
}
|
|
10452
|
+
}
|
|
10453
|
+
|
|
10300
10454
|
/**
|
|
10301
10455
|
* DescribeReservedInstanceUtilizationRate request structure.
|
|
10302
10456
|
* @class
|
|
@@ -11163,33 +11317,24 @@ Note: This field may return `null`, indicating that no valid values can be obtai
|
|
|
11163
11317
|
}
|
|
11164
11318
|
|
|
11165
11319
|
/**
|
|
11166
|
-
*
|
|
11320
|
+
* EnableEncryptionProtection request structure.
|
|
11167
11321
|
* @class
|
|
11168
11322
|
*/
|
|
11169
|
-
class
|
|
11323
|
+
class EnableEncryptionProtectionRequest extends AbstractModel {
|
|
11170
11324
|
constructor(){
|
|
11171
11325
|
super();
|
|
11172
11326
|
|
|
11173
11327
|
/**
|
|
11174
|
-
*
|
|
11175
|
-
Note: This field may return "null", indicating that no valid value can be obtained.
|
|
11328
|
+
* Cluster ID
|
|
11176
11329
|
* @type {string || null}
|
|
11177
11330
|
*/
|
|
11178
|
-
this.
|
|
11179
|
-
|
|
11180
|
-
/**
|
|
11181
|
-
* Runtime version list
|
|
11182
|
-
Note: This field may return "null", indicating that no valid value can be obtained.
|
|
11183
|
-
* @type {Array.<string> || null}
|
|
11184
|
-
*/
|
|
11185
|
-
this.RuntimeVersions = null;
|
|
11331
|
+
this.ClusterId = null;
|
|
11186
11332
|
|
|
11187
11333
|
/**
|
|
11188
|
-
*
|
|
11189
|
-
|
|
11190
|
-
* @type {string || null}
|
|
11334
|
+
* KMS encryption configuration
|
|
11335
|
+
* @type {KMSConfiguration || null}
|
|
11191
11336
|
*/
|
|
11192
|
-
this.
|
|
11337
|
+
this.KMSConfiguration = null;
|
|
11193
11338
|
|
|
11194
11339
|
}
|
|
11195
11340
|
|
|
@@ -11200,9 +11345,13 @@ Note: This field may return "null", indicating that no valid value can be obtain
|
|
|
11200
11345
|
if (!params) {
|
|
11201
11346
|
return;
|
|
11202
11347
|
}
|
|
11203
|
-
this.
|
|
11204
|
-
|
|
11205
|
-
|
|
11348
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
11349
|
+
|
|
11350
|
+
if (params.KMSConfiguration) {
|
|
11351
|
+
let obj = new KMSConfiguration();
|
|
11352
|
+
obj.deserialize(params.KMSConfiguration)
|
|
11353
|
+
this.KMSConfiguration = obj;
|
|
11354
|
+
}
|
|
11206
11355
|
|
|
11207
11356
|
}
|
|
11208
11357
|
}
|
|
@@ -11476,6 +11625,62 @@ Note: This field may return `null`, indicating that no valid value can be obtain
|
|
|
11476
11625
|
}
|
|
11477
11626
|
}
|
|
11478
11627
|
|
|
11628
|
+
/**
|
|
11629
|
+
* Component log collection configuration.
|
|
11630
|
+
* @class
|
|
11631
|
+
*/
|
|
11632
|
+
class ComponentLogConfig extends AbstractModel {
|
|
11633
|
+
constructor(){
|
|
11634
|
+
super();
|
|
11635
|
+
|
|
11636
|
+
/**
|
|
11637
|
+
* Component name
|
|
11638
|
+
* @type {string || null}
|
|
11639
|
+
*/
|
|
11640
|
+
this.Name = null;
|
|
11641
|
+
|
|
11642
|
+
/**
|
|
11643
|
+
* Log level. for components that support dynamic adjustment, you can specify this parameter when enabling logs.
|
|
11644
|
+
* @type {number || null}
|
|
11645
|
+
*/
|
|
11646
|
+
this.LogLevel = null;
|
|
11647
|
+
|
|
11648
|
+
/**
|
|
11649
|
+
* Logset ID. if not specified, auto-create.
|
|
11650
|
+
* @type {string || null}
|
|
11651
|
+
*/
|
|
11652
|
+
this.LogSetId = null;
|
|
11653
|
+
|
|
11654
|
+
/**
|
|
11655
|
+
* Log topic ID. if not specified, auto-create.
|
|
11656
|
+
* @type {string || null}
|
|
11657
|
+
*/
|
|
11658
|
+
this.TopicId = null;
|
|
11659
|
+
|
|
11660
|
+
/**
|
|
11661
|
+
* topic region. this parameter enables cross-region shipping of logs.
|
|
11662
|
+
* @type {string || null}
|
|
11663
|
+
*/
|
|
11664
|
+
this.TopicRegion = null;
|
|
11665
|
+
|
|
11666
|
+
}
|
|
11667
|
+
|
|
11668
|
+
/**
|
|
11669
|
+
* @private
|
|
11670
|
+
*/
|
|
11671
|
+
deserialize(params) {
|
|
11672
|
+
if (!params) {
|
|
11673
|
+
return;
|
|
11674
|
+
}
|
|
11675
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
11676
|
+
this.LogLevel = 'LogLevel' in params ? params.LogLevel : null;
|
|
11677
|
+
this.LogSetId = 'LogSetId' in params ? params.LogSetId : null;
|
|
11678
|
+
this.TopicId = 'TopicId' in params ? params.TopicId : null;
|
|
11679
|
+
this.TopicRegion = 'TopicRegion' in params ? params.TopicRegion : null;
|
|
11680
|
+
|
|
11681
|
+
}
|
|
11682
|
+
}
|
|
11683
|
+
|
|
11479
11684
|
/**
|
|
11480
11685
|
* OIDC authentication related configurations
|
|
11481
11686
|
* @class
|
|
@@ -13517,6 +13722,49 @@ Note: This field may return "null", indicating that no valid value can be obtain
|
|
|
13517
13722
|
}
|
|
13518
13723
|
}
|
|
13519
13724
|
|
|
13725
|
+
/**
|
|
13726
|
+
* DescribePodChargeInfo response structure.
|
|
13727
|
+
* @class
|
|
13728
|
+
*/
|
|
13729
|
+
class DescribePodChargeInfoResponse extends AbstractModel {
|
|
13730
|
+
constructor(){
|
|
13731
|
+
super();
|
|
13732
|
+
|
|
13733
|
+
/**
|
|
13734
|
+
* Pod billing information.
|
|
13735
|
+
* @type {Array.<PodChargeInfo> || null}
|
|
13736
|
+
*/
|
|
13737
|
+
this.ChargeInfoSet = null;
|
|
13738
|
+
|
|
13739
|
+
/**
|
|
13740
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
13741
|
+
* @type {string || null}
|
|
13742
|
+
*/
|
|
13743
|
+
this.RequestId = null;
|
|
13744
|
+
|
|
13745
|
+
}
|
|
13746
|
+
|
|
13747
|
+
/**
|
|
13748
|
+
* @private
|
|
13749
|
+
*/
|
|
13750
|
+
deserialize(params) {
|
|
13751
|
+
if (!params) {
|
|
13752
|
+
return;
|
|
13753
|
+
}
|
|
13754
|
+
|
|
13755
|
+
if (params.ChargeInfoSet) {
|
|
13756
|
+
this.ChargeInfoSet = new Array();
|
|
13757
|
+
for (let z in params.ChargeInfoSet) {
|
|
13758
|
+
let obj = new PodChargeInfo();
|
|
13759
|
+
obj.deserialize(params.ChargeInfoSet[z]);
|
|
13760
|
+
this.ChargeInfoSet.push(obj);
|
|
13761
|
+
}
|
|
13762
|
+
}
|
|
13763
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
13764
|
+
|
|
13765
|
+
}
|
|
13766
|
+
}
|
|
13767
|
+
|
|
13520
13768
|
/**
|
|
13521
13769
|
* CreateClusterVirtualNodePool response structure.
|
|
13522
13770
|
* @class
|
|
@@ -14323,24 +14571,33 @@ class DeleteEdgeClusterInstancesRequest extends AbstractModel {
|
|
|
14323
14571
|
}
|
|
14324
14572
|
|
|
14325
14573
|
/**
|
|
14326
|
-
*
|
|
14574
|
+
* Optional runtime
|
|
14327
14575
|
* @class
|
|
14328
14576
|
*/
|
|
14329
|
-
class
|
|
14577
|
+
class OptionalRuntimes extends AbstractModel {
|
|
14330
14578
|
constructor(){
|
|
14331
14579
|
super();
|
|
14332
14580
|
|
|
14333
14581
|
/**
|
|
14334
|
-
*
|
|
14582
|
+
* Runtime type
|
|
14583
|
+
Note: This field may return "null", indicating that no valid value can be obtained.
|
|
14335
14584
|
* @type {string || null}
|
|
14336
14585
|
*/
|
|
14337
|
-
this.
|
|
14586
|
+
this.RuntimeType = null;
|
|
14338
14587
|
|
|
14339
14588
|
/**
|
|
14340
|
-
*
|
|
14341
|
-
|
|
14589
|
+
* Runtime version list
|
|
14590
|
+
Note: This field may return "null", indicating that no valid value can be obtained.
|
|
14591
|
+
* @type {Array.<string> || null}
|
|
14342
14592
|
*/
|
|
14343
|
-
this.
|
|
14593
|
+
this.RuntimeVersions = null;
|
|
14594
|
+
|
|
14595
|
+
/**
|
|
14596
|
+
* Default runtime version for this type
|
|
14597
|
+
Note: This field may return "null", indicating that no valid value can be obtained.
|
|
14598
|
+
* @type {string || null}
|
|
14599
|
+
*/
|
|
14600
|
+
this.DefaultVersion = null;
|
|
14344
14601
|
|
|
14345
14602
|
}
|
|
14346
14603
|
|
|
@@ -14351,13 +14608,9 @@ class EnableEncryptionProtectionRequest extends AbstractModel {
|
|
|
14351
14608
|
if (!params) {
|
|
14352
14609
|
return;
|
|
14353
14610
|
}
|
|
14354
|
-
this.
|
|
14355
|
-
|
|
14356
|
-
|
|
14357
|
-
let obj = new KMSConfiguration();
|
|
14358
|
-
obj.deserialize(params.KMSConfiguration)
|
|
14359
|
-
this.KMSConfiguration = obj;
|
|
14360
|
-
}
|
|
14611
|
+
this.RuntimeType = 'RuntimeType' in params ? params.RuntimeType : null;
|
|
14612
|
+
this.RuntimeVersions = 'RuntimeVersions' in params ? params.RuntimeVersions : null;
|
|
14613
|
+
this.DefaultVersion = 'DefaultVersion' in params ? params.DefaultVersion : null;
|
|
14361
14614
|
|
|
14362
14615
|
}
|
|
14363
14616
|
}
|
|
@@ -14542,30 +14795,18 @@ Note: this field may return null, indicating that no valid values can be obtaine
|
|
|
14542
14795
|
}
|
|
14543
14796
|
|
|
14544
14797
|
/**
|
|
14545
|
-
*
|
|
14798
|
+
* UninstallEdgeLogAgent request structure.
|
|
14546
14799
|
* @class
|
|
14547
14800
|
*/
|
|
14548
|
-
class
|
|
14801
|
+
class UninstallEdgeLogAgentRequest extends AbstractModel {
|
|
14549
14802
|
constructor(){
|
|
14550
14803
|
super();
|
|
14551
14804
|
|
|
14552
14805
|
/**
|
|
14553
|
-
*
|
|
14554
|
-
* @type {string || null}
|
|
14555
|
-
*/
|
|
14556
|
-
this.Status = null;
|
|
14557
|
-
|
|
14558
|
-
/**
|
|
14559
|
-
* Encryption error message
|
|
14560
|
-
* @type {string || null}
|
|
14561
|
-
*/
|
|
14562
|
-
this.ErrorMsg = null;
|
|
14563
|
-
|
|
14564
|
-
/**
|
|
14565
|
-
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
14806
|
+
* Cluster ID
|
|
14566
14807
|
* @type {string || null}
|
|
14567
14808
|
*/
|
|
14568
|
-
this.
|
|
14809
|
+
this.ClusterId = null;
|
|
14569
14810
|
|
|
14570
14811
|
}
|
|
14571
14812
|
|
|
@@ -14576,9 +14817,7 @@ class DescribeEncryptionStatusResponse extends AbstractModel {
|
|
|
14576
14817
|
if (!params) {
|
|
14577
14818
|
return;
|
|
14578
14819
|
}
|
|
14579
|
-
this.
|
|
14580
|
-
this.ErrorMsg = 'ErrorMsg' in params ? params.ErrorMsg : null;
|
|
14581
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
14820
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
14582
14821
|
|
|
14583
14822
|
}
|
|
14584
14823
|
}
|
|
@@ -15532,6 +15771,49 @@ class GetUpgradeInstanceProgressRequest extends AbstractModel {
|
|
|
15532
15771
|
}
|
|
15533
15772
|
}
|
|
15534
15773
|
|
|
15774
|
+
/**
|
|
15775
|
+
* DescribeControlPlaneLogs response structure.
|
|
15776
|
+
* @class
|
|
15777
|
+
*/
|
|
15778
|
+
class DescribeControlPlaneLogsResponse extends AbstractModel {
|
|
15779
|
+
constructor(){
|
|
15780
|
+
super();
|
|
15781
|
+
|
|
15782
|
+
/**
|
|
15783
|
+
* Specifies the query result of log collection configuration.
|
|
15784
|
+
* @type {Array.<ComponentLogConfig> || null}
|
|
15785
|
+
*/
|
|
15786
|
+
this.Details = null;
|
|
15787
|
+
|
|
15788
|
+
/**
|
|
15789
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
15790
|
+
* @type {string || null}
|
|
15791
|
+
*/
|
|
15792
|
+
this.RequestId = null;
|
|
15793
|
+
|
|
15794
|
+
}
|
|
15795
|
+
|
|
15796
|
+
/**
|
|
15797
|
+
* @private
|
|
15798
|
+
*/
|
|
15799
|
+
deserialize(params) {
|
|
15800
|
+
if (!params) {
|
|
15801
|
+
return;
|
|
15802
|
+
}
|
|
15803
|
+
|
|
15804
|
+
if (params.Details) {
|
|
15805
|
+
this.Details = new Array();
|
|
15806
|
+
for (let z in params.Details) {
|
|
15807
|
+
let obj = new ComponentLogConfig();
|
|
15808
|
+
obj.deserialize(params.Details[z]);
|
|
15809
|
+
this.Details.push(obj);
|
|
15810
|
+
}
|
|
15811
|
+
}
|
|
15812
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
15813
|
+
|
|
15814
|
+
}
|
|
15815
|
+
}
|
|
15816
|
+
|
|
15535
15817
|
/**
|
|
15536
15818
|
* DescribeEdgeCVMInstances response structure.
|
|
15537
15819
|
* @class
|
|
@@ -15596,18 +15878,30 @@ class DescribeRegionsRequest extends AbstractModel {
|
|
|
15596
15878
|
}
|
|
15597
15879
|
|
|
15598
15880
|
/**
|
|
15599
|
-
*
|
|
15881
|
+
* EnableControlPlaneLogs request structure.
|
|
15600
15882
|
* @class
|
|
15601
15883
|
*/
|
|
15602
|
-
class
|
|
15884
|
+
class EnableControlPlaneLogsRequest extends AbstractModel {
|
|
15603
15885
|
constructor(){
|
|
15604
15886
|
super();
|
|
15605
15887
|
|
|
15606
15888
|
/**
|
|
15607
|
-
*
|
|
15889
|
+
* Cluster ID
|
|
15608
15890
|
* @type {string || null}
|
|
15609
15891
|
*/
|
|
15610
|
-
this.
|
|
15892
|
+
this.ClusterId = null;
|
|
15893
|
+
|
|
15894
|
+
/**
|
|
15895
|
+
* Cluster type. currently only support tke.
|
|
15896
|
+
* @type {string || null}
|
|
15897
|
+
*/
|
|
15898
|
+
this.ClusterType = null;
|
|
15899
|
+
|
|
15900
|
+
/**
|
|
15901
|
+
* Component name list. currently supports cluster-autoscaler, kapenter.
|
|
15902
|
+
* @type {Array.<ComponentLogConfig> || null}
|
|
15903
|
+
*/
|
|
15904
|
+
this.Components = null;
|
|
15611
15905
|
|
|
15612
15906
|
}
|
|
15613
15907
|
|
|
@@ -15618,7 +15912,17 @@ class DeleteClusterRouteResponse extends AbstractModel {
|
|
|
15618
15912
|
if (!params) {
|
|
15619
15913
|
return;
|
|
15620
15914
|
}
|
|
15621
|
-
this.
|
|
15915
|
+
this.ClusterId = 'ClusterId' in params ? params.ClusterId : null;
|
|
15916
|
+
this.ClusterType = 'ClusterType' in params ? params.ClusterType : null;
|
|
15917
|
+
|
|
15918
|
+
if (params.Components) {
|
|
15919
|
+
this.Components = new Array();
|
|
15920
|
+
for (let z in params.Components) {
|
|
15921
|
+
let obj = new ComponentLogConfig();
|
|
15922
|
+
obj.deserialize(params.Components[z]);
|
|
15923
|
+
this.Components.push(obj);
|
|
15924
|
+
}
|
|
15925
|
+
}
|
|
15622
15926
|
|
|
15623
15927
|
}
|
|
15624
15928
|
}
|
|
@@ -17524,19 +17828,13 @@ class ExistedInstancesForNode extends AbstractModel {
|
|
|
17524
17828
|
}
|
|
17525
17829
|
|
|
17526
17830
|
/**
|
|
17527
|
-
*
|
|
17831
|
+
* EnableControlPlaneLogs response structure.
|
|
17528
17832
|
* @class
|
|
17529
17833
|
*/
|
|
17530
|
-
class
|
|
17834
|
+
class EnableControlPlaneLogsResponse extends AbstractModel {
|
|
17531
17835
|
constructor(){
|
|
17532
17836
|
super();
|
|
17533
17837
|
|
|
17534
|
-
/**
|
|
17535
|
-
* Pod billing information.
|
|
17536
|
-
* @type {Array.<PodChargeInfo> || null}
|
|
17537
|
-
*/
|
|
17538
|
-
this.ChargeInfoSet = null;
|
|
17539
|
-
|
|
17540
17838
|
/**
|
|
17541
17839
|
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
17542
17840
|
* @type {string || null}
|
|
@@ -17552,15 +17850,6 @@ class DescribePodChargeInfoResponse extends AbstractModel {
|
|
|
17552
17850
|
if (!params) {
|
|
17553
17851
|
return;
|
|
17554
17852
|
}
|
|
17555
|
-
|
|
17556
|
-
if (params.ChargeInfoSet) {
|
|
17557
|
-
this.ChargeInfoSet = new Array();
|
|
17558
|
-
for (let z in params.ChargeInfoSet) {
|
|
17559
|
-
let obj = new PodChargeInfo();
|
|
17560
|
-
obj.deserialize(params.ChargeInfoSet[z]);
|
|
17561
|
-
this.ChargeInfoSet.push(obj);
|
|
17562
|
-
}
|
|
17563
|
-
}
|
|
17564
17853
|
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
17565
17854
|
|
|
17566
17855
|
}
|
|
@@ -18109,6 +18398,7 @@ module.exports = {
|
|
|
18109
18398
|
DescribeEdgeAvailableExtraArgsResponse: DescribeEdgeAvailableExtraArgsResponse,
|
|
18110
18399
|
DescribeEnableVpcCniProgressRequest: DescribeEnableVpcCniProgressRequest,
|
|
18111
18400
|
Instance: Instance,
|
|
18401
|
+
DisableControlPlaneLogsRequest: DisableControlPlaneLogsRequest,
|
|
18112
18402
|
RunAutomationServiceEnabled: RunAutomationServiceEnabled,
|
|
18113
18403
|
CreateEksLogConfigRequest: CreateEksLogConfigRequest,
|
|
18114
18404
|
DescribeClusterRouteTablesResponse: DescribeClusterRouteTablesResponse,
|
|
@@ -18194,6 +18484,7 @@ module.exports = {
|
|
|
18194
18484
|
DescribeResourceUsageResponse: DescribeResourceUsageResponse,
|
|
18195
18485
|
EdgeClusterInternalLB: EdgeClusterInternalLB,
|
|
18196
18486
|
DescribeAvailableClusterVersionRequest: DescribeAvailableClusterVersionRequest,
|
|
18487
|
+
DisableControlPlaneLogsResponse: DisableControlPlaneLogsResponse,
|
|
18197
18488
|
DeleteClusterAsGroupsResponse: DeleteClusterAsGroupsResponse,
|
|
18198
18489
|
ModifyClusterRuntimeConfigRequest: ModifyClusterRuntimeConfigRequest,
|
|
18199
18490
|
RegionInstance: RegionInstance,
|
|
@@ -18222,11 +18513,12 @@ module.exports = {
|
|
|
18222
18513
|
CreateClusterRouteTableRequest: CreateClusterRouteTableRequest,
|
|
18223
18514
|
DescribeClusterEndpointsResponse: DescribeClusterEndpointsResponse,
|
|
18224
18515
|
EdgeCluster: EdgeCluster,
|
|
18225
|
-
|
|
18516
|
+
DescribeEncryptionStatusResponse: DescribeEncryptionStatusResponse,
|
|
18226
18517
|
DescribeClusterLevelChangeRecordsRequest: DescribeClusterLevelChangeRecordsRequest,
|
|
18227
18518
|
UpdateClusterVersionResponse: UpdateClusterVersionResponse,
|
|
18228
18519
|
InstanceUpgradePreCheckResultItem: InstanceUpgradePreCheckResultItem,
|
|
18229
18520
|
DeleteClusterNodePoolResponse: DeleteClusterNodePoolResponse,
|
|
18521
|
+
DeleteClusterRouteResponse: DeleteClusterRouteResponse,
|
|
18230
18522
|
CreateClusterNodePoolResponse: CreateClusterNodePoolResponse,
|
|
18231
18523
|
Filter: Filter,
|
|
18232
18524
|
KMSConfiguration: KMSConfiguration,
|
|
@@ -18253,6 +18545,7 @@ module.exports = {
|
|
|
18253
18545
|
AutoScalingGroupRange: AutoScalingGroupRange,
|
|
18254
18546
|
VirtualNodeSpec: VirtualNodeSpec,
|
|
18255
18547
|
CreateEksLogConfigResponse: CreateEksLogConfigResponse,
|
|
18548
|
+
DescribeControlPlaneLogsRequest: DescribeControlPlaneLogsRequest,
|
|
18256
18549
|
DescribeReservedInstanceUtilizationRateRequest: DescribeReservedInstanceUtilizationRateRequest,
|
|
18257
18550
|
VersionInstance: VersionInstance,
|
|
18258
18551
|
DescribeIPAMDResponse: DescribeIPAMDResponse,
|
|
@@ -18272,13 +18565,14 @@ module.exports = {
|
|
|
18272
18565
|
ECMEnhancedService: ECMEnhancedService,
|
|
18273
18566
|
ModifyClusterAuthenticationOptionsResponse: ModifyClusterAuthenticationOptionsResponse,
|
|
18274
18567
|
EdgeClusterPublicLB: EdgeClusterPublicLB,
|
|
18275
|
-
|
|
18568
|
+
EnableEncryptionProtectionRequest: EnableEncryptionProtectionRequest,
|
|
18276
18569
|
EnhancedService: EnhancedService,
|
|
18277
18570
|
DescribeClusterNodePoolsResponse: DescribeClusterNodePoolsResponse,
|
|
18278
18571
|
TagSpecification: TagSpecification,
|
|
18279
18572
|
DeleteEdgeClusterInstancesResponse: DeleteEdgeClusterInstancesResponse,
|
|
18280
18573
|
DeleteTKEEdgeClusterRequest: DeleteTKEEdgeClusterRequest,
|
|
18281
18574
|
DescribeClusterAuthenticationOptionsResponse: DescribeClusterAuthenticationOptionsResponse,
|
|
18575
|
+
ComponentLogConfig: ComponentLogConfig,
|
|
18282
18576
|
OIDCConfigAuthenticationOptions: OIDCConfigAuthenticationOptions,
|
|
18283
18577
|
DescribeClusterLevelAttributeResponse: DescribeClusterLevelAttributeResponse,
|
|
18284
18578
|
PrometheusGrafanaInfo: PrometheusGrafanaInfo,
|
|
@@ -18318,6 +18612,7 @@ module.exports = {
|
|
|
18318
18612
|
CreatePrometheusAlertRuleRequest: CreatePrometheusAlertRuleRequest,
|
|
18319
18613
|
CreateTKEEdgeClusterRequest: CreateTKEEdgeClusterRequest,
|
|
18320
18614
|
DescribeSupportedRuntimeResponse: DescribeSupportedRuntimeResponse,
|
|
18615
|
+
DescribePodChargeInfoResponse: DescribePodChargeInfoResponse,
|
|
18321
18616
|
CreateClusterVirtualNodePoolResponse: CreateClusterVirtualNodePoolResponse,
|
|
18322
18617
|
CreateEdgeLogConfigResponse: CreateEdgeLogConfigResponse,
|
|
18323
18618
|
InstallEdgeLogAgentResponse: InstallEdgeLogAgentResponse,
|
|
@@ -18336,10 +18631,10 @@ module.exports = {
|
|
|
18336
18631
|
DescribeVpcCniPodLimitsResponse: DescribeVpcCniPodLimitsResponse,
|
|
18337
18632
|
DescribeVersionsResponse: DescribeVersionsResponse,
|
|
18338
18633
|
DeleteEdgeClusterInstancesRequest: DeleteEdgeClusterInstancesRequest,
|
|
18339
|
-
|
|
18634
|
+
OptionalRuntimes: OptionalRuntimes,
|
|
18340
18635
|
ClusterNetworkSettings: ClusterNetworkSettings,
|
|
18341
18636
|
DescribeImagesResponse: DescribeImagesResponse,
|
|
18342
|
-
|
|
18637
|
+
UninstallEdgeLogAgentRequest: UninstallEdgeLogAgentRequest,
|
|
18343
18638
|
ClusterExtraArgs: ClusterExtraArgs,
|
|
18344
18639
|
AnnotationValue: AnnotationValue,
|
|
18345
18640
|
CreateClusterEndpointVipResponse: CreateClusterEndpointVipResponse,
|
|
@@ -18361,9 +18656,10 @@ module.exports = {
|
|
|
18361
18656
|
FailedResource: FailedResource,
|
|
18362
18657
|
UnavailableReason: UnavailableReason,
|
|
18363
18658
|
GetUpgradeInstanceProgressRequest: GetUpgradeInstanceProgressRequest,
|
|
18659
|
+
DescribeControlPlaneLogsResponse: DescribeControlPlaneLogsResponse,
|
|
18364
18660
|
DescribeEdgeCVMInstancesResponse: DescribeEdgeCVMInstancesResponse,
|
|
18365
18661
|
DescribeRegionsRequest: DescribeRegionsRequest,
|
|
18366
|
-
|
|
18662
|
+
EnableControlPlaneLogsRequest: EnableControlPlaneLogsRequest,
|
|
18367
18663
|
DeleteECMInstancesResponse: DeleteECMInstancesResponse,
|
|
18368
18664
|
DescribeEdgeClusterUpgradeInfoResponse: DescribeEdgeClusterUpgradeInfoResponse,
|
|
18369
18665
|
ModifyClusterNodePoolResponse: ModifyClusterNodePoolResponse,
|
|
@@ -18402,7 +18698,7 @@ module.exports = {
|
|
|
18402
18698
|
DescribeTKEEdgeScriptRequest: DescribeTKEEdgeScriptRequest,
|
|
18403
18699
|
AddVpcCniSubnetsResponse: AddVpcCniSubnetsResponse,
|
|
18404
18700
|
ExistedInstancesForNode: ExistedInstancesForNode,
|
|
18405
|
-
|
|
18701
|
+
EnableControlPlaneLogsResponse: EnableControlPlaneLogsResponse,
|
|
18406
18702
|
DescribeClusterVirtualNodeResponse: DescribeClusterVirtualNodeResponse,
|
|
18407
18703
|
DescribeAvailableClusterVersionResponse: DescribeAvailableClusterVersionResponse,
|
|
18408
18704
|
DescribeRouteTableConflictsRequest: DescribeRouteTableConflictsRequest,
|