tencentcloud-sdk-nodejs 4.0.835 → 4.0.836

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.
Files changed (48) hide show
  1. package/CHANGELOG.md +145 -0
  2. package/SERVICE_CHANGELOG.md +294 -131
  3. package/package.json +1 -1
  4. package/products.md +14 -14
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/aiart/v20221229/aiart_models.ts +11 -0
  7. package/src/services/asr/v20190614/asr_client.ts +1 -1
  8. package/src/services/asr/v20190614/asr_models.ts +3 -0
  9. package/src/services/bsca/v20210811/bsca_models.ts +9 -1
  10. package/src/services/ccc/v20200210/ccc_client.ts +2 -2
  11. package/src/services/ccc/v20200210/ccc_models.ts +10 -10
  12. package/src/services/dts/v20211206/dts_models.ts +2 -2
  13. package/src/services/ess/v20201111/ess_client.ts +1 -1
  14. package/src/services/ess/v20201111/ess_models.ts +123 -1
  15. package/src/services/lcic/v20220817/lcic_models.ts +22 -0
  16. package/src/services/lke/v20231130/lke_models.ts +5 -1
  17. package/src/services/ocr/v20181119/ocr_models.ts +10 -10
  18. package/src/services/rce/v20201103/rce_models.ts +5 -4
  19. package/src/services/tat/v20201028/tat_models.ts +4 -4
  20. package/src/services/tke/v20180525/tke_client.ts +27 -0
  21. package/src/services/tke/v20180525/tke_models.ts +125 -5
  22. package/src/services/vod/v20180717/vod_client.ts +2 -2
  23. package/src/services/vod/v20180717/vod_models.ts +20 -21
  24. package/tencentcloud/common/sdk_version.d.ts +1 -1
  25. package/tencentcloud/common/sdk_version.js +1 -1
  26. package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +11 -0
  27. package/tencentcloud/services/asr/v20190614/asr_client.d.ts +1 -1
  28. package/tencentcloud/services/asr/v20190614/asr_client.js +1 -1
  29. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +3 -0
  30. package/tencentcloud/services/bsca/v20210811/bsca_models.d.ts +9 -1
  31. package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +2 -2
  32. package/tencentcloud/services/ccc/v20200210/ccc_client.js +2 -2
  33. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +10 -10
  34. package/tencentcloud/services/dts/v20211206/dts_models.d.ts +2 -2
  35. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +1 -1
  36. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +123 -1
  37. package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +22 -0
  38. package/tencentcloud/services/lke/v20231130/lke_models.d.ts +5 -1
  39. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +10 -10
  40. package/tencentcloud/services/rce/v20201103/rce_models.d.ts +5 -4
  41. package/tencentcloud/services/tat/v20201028/tat_models.d.ts +3 -3
  42. package/tencentcloud/services/tke/v20180525/tke_client.d.ts +9 -1
  43. package/tencentcloud/services/tke/v20180525/tke_client.js +12 -0
  44. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +118 -5
  45. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +2 -2
  46. package/tencentcloud/services/vod/v20180717/vod_client.js +2 -2
  47. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +20 -21
  48. package/test/tke.v20180525.test.js +20 -0
@@ -2886,6 +2886,15 @@ export interface UninstallEdgeLogAgentResponse {
2886
2886
  */
2887
2887
  RequestId?: string;
2888
2888
  }
2889
+ /**
2890
+ * DescribeSupportedRuntime请求参数结构体
2891
+ */
2892
+ export interface DescribeSupportedRuntimeRequest {
2893
+ /**
2894
+ * K8S版本
2895
+ */
2896
+ K8sVersion: string;
2897
+ }
2889
2898
  /**
2890
2899
  * AddVpcCniSubnets请求参数结构体
2891
2900
  */
@@ -5100,6 +5109,27 @@ export interface DeleteClusterAsGroupsResponse {
5100
5109
  */
5101
5110
  RequestId?: string;
5102
5111
  }
5112
+ /**
5113
+ * ModifyClusterRuntimeConfig请求参数结构体
5114
+ */
5115
+ export interface ModifyClusterRuntimeConfigRequest {
5116
+ /**
5117
+ * 集群ID,必填
5118
+ */
5119
+ ClusterId: string;
5120
+ /**
5121
+ * 当需要修改运行时版本是根据另外的K8S版本获取时,需填写。例如升级校验有冲突后修改场景
5122
+ */
5123
+ DstK8SVersion?: string;
5124
+ /**
5125
+ * 需要修改集群运行时时填写
5126
+ */
5127
+ ClusterRuntimeConfig?: RuntimeConfig;
5128
+ /**
5129
+ * 需要修改节点池运行时时,填需要修改的部分
5130
+ */
5131
+ NodePoolRuntimeConfig?: Array<NodePoolRuntime>;
5132
+ }
5103
5133
  /**
5104
5134
  * 地域属性信息
5105
5135
  */
@@ -5879,7 +5909,7 @@ export interface EnableClusterAuditRequest {
5879
5909
  */
5880
5910
  export interface CreateClusterRouteTableRequest {
5881
5911
  /**
5882
- * 路由表名称
5912
+ * 路由表名称,一般为集群ID
5883
5913
  */
5884
5914
  RouteTableName: string;
5885
5915
  /**
@@ -5891,7 +5921,7 @@ export interface CreateClusterRouteTableRequest {
5891
5921
  */
5892
5922
  VpcId: string;
5893
5923
  /**
5894
- * 是否忽略CIDR冲突
5924
+ * 是否忽略CIDR与 vpc 路由表的冲突, 0 表示不忽略,1表示忽略。默认不忽略
5895
5925
  */
5896
5926
  IgnoreClusterCidrConflict?: number;
5897
5927
  }
@@ -6311,11 +6341,11 @@ export interface CreateClusterRouteRequest {
6311
6341
  */
6312
6342
  RouteTableName: string;
6313
6343
  /**
6314
- * 目的端CIDR。
6344
+ * 目的节点的 PodCIDR
6315
6345
  */
6316
6346
  DestinationCidrBlock: string;
6317
6347
  /**
6318
- * 下一跳地址。
6348
+ * 下一跳地址,即目的节点的内网 IP 地址
6319
6349
  */
6320
6350
  GatewayIp: string;
6321
6351
  }
@@ -6892,7 +6922,7 @@ export interface ForwardTKEEdgeApplicationRequestV3Response {
6892
6922
  /**
6893
6923
  * 请求集群addon后返回的数据
6894
6924
  */
6895
- ResponseBody: string;
6925
+ ResponseBody?: string;
6896
6926
  /**
6897
6927
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6898
6928
  */
@@ -9594,6 +9624,20 @@ export interface CreateTKEEdgeClusterRequest {
9594
9624
  */
9595
9625
  TagSpecification?: TagSpecification;
9596
9626
  }
9627
+ /**
9628
+ * DescribeSupportedRuntime返回参数结构体
9629
+ */
9630
+ export interface DescribeSupportedRuntimeResponse {
9631
+ /**
9632
+ * 可选运行时列表
9633
+ 注意:此字段可能返回 null,表示取不到有效值。
9634
+ */
9635
+ OptionalRuntimes?: Array<OptionalRuntimes>;
9636
+ /**
9637
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9638
+ */
9639
+ RequestId?: string;
9640
+ }
9597
9641
  /**
9598
9642
  * CreateClusterVirtualNodePool返回参数结构体
9599
9643
  */
@@ -10318,6 +10362,31 @@ export interface DeletePrometheusAlertRuleRequest {
10318
10362
  */
10319
10363
  AlertIds: Array<string>;
10320
10364
  }
10365
+ /**
10366
+ * NodePool的运行时配置
10367
+ */
10368
+ export interface NodePoolRuntime {
10369
+ /**
10370
+ * 节点池ID
10371
+ 注意:此字段可能返回 null,表示取不到有效值。
10372
+ */
10373
+ NodePoolId?: string;
10374
+ /**
10375
+ * 运行时类型
10376
+ 注意:此字段可能返回 null,表示取不到有效值。
10377
+ */
10378
+ RuntimeType?: string;
10379
+ /**
10380
+ * 运行时版本
10381
+ 注意:此字段可能返回 null,表示取不到有效值。
10382
+ */
10383
+ RuntimeVersion?: string;
10384
+ /**
10385
+ * 节点池名称
10386
+ 注意:此字段可能返回 null,表示取不到有效值。
10387
+ */
10388
+ NodePoolName?: string;
10389
+ }
10321
10390
  /**
10322
10391
  * ModifyReservedInstanceScope返回参数结构体
10323
10392
  */
@@ -10491,6 +10560,26 @@ export interface DescribeBackupStorageLocationsResponse {
10491
10560
  */
10492
10561
  RequestId?: string;
10493
10562
  }
10563
+ /**
10564
+ * 可选运行时
10565
+ */
10566
+ export interface OptionalRuntimes {
10567
+ /**
10568
+ * 运行时类型
10569
+ 注意:此字段可能返回 null,表示取不到有效值。
10570
+ */
10571
+ RuntimeType?: string;
10572
+ /**
10573
+ * 运行时版本列表
10574
+ 注意:此字段可能返回 null,表示取不到有效值。
10575
+ */
10576
+ RuntimeVersions?: Array<string>;
10577
+ /**
10578
+ * 该类型的默认运行时版本
10579
+ 注意:此字段可能返回 null,表示取不到有效值。
10580
+ */
10581
+ DefaultVersion?: string;
10582
+ }
10494
10583
  /**
10495
10584
  * ModifyClusterAsGroupAttribute返回参数结构体
10496
10585
  */
@@ -11822,6 +11911,21 @@ export interface ForwardApplicationRequestV3Response {
11822
11911
  */
11823
11912
  RequestId?: string;
11824
11913
  }
11914
+ /**
11915
+ * 运行时配置
11916
+ */
11917
+ export interface RuntimeConfig {
11918
+ /**
11919
+ * 运行时类型
11920
+ 注意:此字段可能返回 null,表示取不到有效值。
11921
+ */
11922
+ RuntimeType?: string;
11923
+ /**
11924
+ * 运行时版本
11925
+ 注意:此字段可能返回 null,表示取不到有效值。
11926
+ */
11927
+ RuntimeVersion?: string;
11928
+ }
11825
11929
  /**
11826
11930
  * ModifyClusterAuthenticationOptions请求参数结构体
11827
11931
  */
@@ -12004,6 +12108,15 @@ export interface DescribeEKSContainerInstanceRegionsResponse {
12004
12108
  */
12005
12109
  RequestId?: string;
12006
12110
  }
12111
+ /**
12112
+ * ModifyClusterRuntimeConfig返回参数结构体
12113
+ */
12114
+ export interface ModifyClusterRuntimeConfigResponse {
12115
+ /**
12116
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12117
+ */
12118
+ RequestId?: string;
12119
+ }
12007
12120
  /**
12008
12121
  * ModifyPrometheusRecordRuleYaml返回参数结构体
12009
12122
  */
@@ -643,7 +643,7 @@ export declare class Client extends AbstractClient {
643
643
  */
644
644
  DeleteAIRecognitionTemplate(req: DeleteAIRecognitionTemplateRequest, cb?: (error: string, rep: DeleteAIRecognitionTemplateResponse) => void): Promise<DeleteAIRecognitionTemplateResponse>;
645
645
  /**
646
- * 该接口用于创建点播子应用。
646
+ * 该接口用于创建点播应用。
647
647
  */
648
648
  CreateSubAppId(req: CreateSubAppIdRequest, cb?: (error: string, rep: CreateSubAppIdResponse) => void): Promise<CreateSubAppIdResponse>;
649
649
  /**
@@ -765,7 +765,7 @@ export declare class Client extends AbstractClient {
765
765
  */
766
766
  DescribeSuperPlayerConfigs(req: DescribeSuperPlayerConfigsRequest, cb?: (error: string, rep: DescribeSuperPlayerConfigsResponse) => void): Promise<DescribeSuperPlayerConfigsResponse>;
767
767
  /**
768
- * 该接口用于获取当前账号的子应用列表,包含主应用。
768
+ * 该接口用于获取当前账号的应用列表。
769
769
  */
770
770
  DescribeSubAppIds(req: DescribeSubAppIdsRequest, cb?: (error: string, rep: DescribeSubAppIdsResponse) => void): Promise<DescribeSubAppIdsResponse>;
771
771
  /**
@@ -889,7 +889,7 @@ class Client extends abstract_client_1.AbstractClient {
889
889
  return this.request("DeleteAIRecognitionTemplate", req, cb);
890
890
  }
891
891
  /**
892
- * 该接口用于创建点播子应用。
892
+ * 该接口用于创建点播应用。
893
893
  */
894
894
  async CreateSubAppId(req, cb) {
895
895
  return this.request("CreateSubAppId", req, cb);
@@ -1065,7 +1065,7 @@ class Client extends abstract_client_1.AbstractClient {
1065
1065
  return this.request("DescribeSuperPlayerConfigs", req, cb);
1066
1066
  }
1067
1067
  /**
1068
- * 该接口用于获取当前账号的子应用列表,包含主应用。
1068
+ * 该接口用于获取当前账号的应用列表。
1069
1069
  */
1070
1070
  async DescribeSubAppIds(req, cb) {
1071
1071
  return this.request("DescribeSubAppIds", req, cb);
@@ -255,7 +255,7 @@ export interface WeChatMiniProgramPublishRequest {
255
255
  */
256
256
  FileId: string;
257
257
  /**
258
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
258
+ * <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
259
259
  */
260
260
  SubAppId?: number;
261
261
  /**
@@ -2997,7 +2997,7 @@ export interface ReviewAudioVideoRequest {
2997
2997
  */
2998
2998
  FileId: string;
2999
2999
  /**
3000
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
3000
+ * <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
3001
3001
  */
3002
3002
  SubAppId?: number;
3003
3003
  /**
@@ -4895,7 +4895,7 @@ export interface SetCLSPushTargetRequest {
4895
4895
  */
4896
4896
  Domain: string;
4897
4897
  /**
4898
- * 点播应用 ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
4898
+ * <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
4899
4899
  */
4900
4900
  SubAppId?: number;
4901
4901
  /**
@@ -5880,11 +5880,11 @@ export interface DescribeAdaptiveDynamicStreamingTemplatesResponse {
5880
5880
  /**
5881
5881
  * 符合过滤条件的记录总数。
5882
5882
  */
5883
- TotalCount: number;
5883
+ TotalCount?: number;
5884
5884
  /**
5885
5885
  * 转自适应码流模板详情列表。
5886
5886
  */
5887
- AdaptiveDynamicStreamingTemplateSet: Array<AdaptiveDynamicStreamingTemplate>;
5887
+ AdaptiveDynamicStreamingTemplateSet?: Array<AdaptiveDynamicStreamingTemplate>;
5888
5888
  /**
5889
5889
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5890
5890
  */
@@ -5932,7 +5932,7 @@ export interface TimeRange {
5932
5932
  */
5933
5933
  export interface DescribeAdaptiveDynamicStreamingTemplatesRequest {
5934
5934
  /**
5935
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
5935
+ * <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
5936
5936
  */
5937
5937
  SubAppId?: number;
5938
5938
  /**
@@ -8270,7 +8270,7 @@ export interface DeleteMediaRequest {
8270
8270
  */
8271
8271
  FileId: string;
8272
8272
  /**
8273
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
8273
+ * <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
8274
8274
  */
8275
8275
  SubAppId?: number;
8276
8276
  /**
@@ -8485,11 +8485,11 @@ export interface DeleteRebuildMediaTemplateResponse {
8485
8485
  */
8486
8486
  export interface DescribeSubAppIdsResponse {
8487
8487
  /**
8488
- * 子应用信息集合。
8488
+ * 应用信息集合。
8489
8489
  */
8490
8490
  SubAppIdInfoSet?: Array<SubAppIdInfo>;
8491
8491
  /**
8492
- * 子应用总数量。
8492
+ * 应用总数量。
8493
8493
  */
8494
8494
  TotalCount?: number;
8495
8495
  /**
@@ -10019,9 +10019,9 @@ export interface ModifySubAppIdStatusRequest {
10019
10019
  */
10020
10020
  export interface CreateSubAppIdResponse {
10021
10021
  /**
10022
- * 新创建的子应用 ID。
10022
+ * 新创建的应用 ID。
10023
10023
  */
10024
- SubAppId: number;
10024
+ SubAppId?: number;
10025
10025
  /**
10026
10026
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10027
10027
  */
@@ -11504,7 +11504,7 @@ export interface ApplyUploadRequest {
11504
11504
  */
11505
11505
  MediaType: string;
11506
11506
  /**
11507
- * <b>点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
11507
+ * <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
11508
11508
  */
11509
11509
  SubAppId?: number;
11510
11510
  /**
@@ -13052,7 +13052,7 @@ export interface PushUrlCacheRequest {
13052
13052
  */
13053
13053
  Urls: Array<string>;
13054
13054
  /**
13055
- * <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
13055
+ * <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
13056
13056
  */
13057
13057
  SubAppId?: number;
13058
13058
  }
@@ -15458,11 +15458,11 @@ export interface DescribeTasksResponse {
15458
15458
  */
15459
15459
  export interface DescribeSubAppIdsRequest {
15460
15460
  /**
15461
- * 子应用名称。
15461
+ * 应用名称。
15462
15462
  */
15463
15463
  Name?: string;
15464
15464
  /**
15465
- * 标签信息,查询指定标签的子应用列表。
15465
+ * 标签信息,查询指定标签的应用列表。
15466
15466
  */
15467
15467
  Tags?: Array<ResourceTag>;
15468
15468
  /**
@@ -17750,7 +17750,7 @@ export interface RestoreMediaRequest {
17750
17750
  */
17751
17751
  FileIds: Array<string>;
17752
17752
  /**
17753
- * 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
17753
+ * <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
17754
17754
  */
17755
17755
  SubAppId?: number;
17756
17756
  /**
@@ -17960,11 +17960,11 @@ export interface AiRecognitionTaskAsrWordsResult {
17960
17960
  */
17961
17961
  export interface CreateSubAppIdRequest {
17962
17962
  /**
17963
- * 子应用名称,长度限制:40个字符。
17963
+ * 应用名称,长度限制:40个字符。
17964
17964
  */
17965
17965
  Name: string;
17966
17966
  /**
17967
- * 子应用简介,长度限制: 300个字符。
17967
+ * 应用简介,长度限制: 300个字符。
17968
17968
  */
17969
17969
  Description?: string;
17970
17970
  }
@@ -19475,8 +19475,7 @@ export interface DescribeStorageDetailsRequest {
19475
19475
  */
19476
19476
  EndTime: string;
19477
19477
  /**
19478
- * <b>点播 [子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
19479
- 当该字段为1时,表示以管理员身份查询所有子应用(含主应用)的用量合计。</b>
19478
+ * <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
19480
19479
  */
19481
19480
  SubAppId?: number;
19482
19481
  /**
@@ -19495,7 +19494,7 @@ export interface DescribeStorageDetailsRequest {
19495
19494
  <li>DeepArchiveStorage:深度归档存储。</li>
19496
19495
  <li>DeletedInfrequentStorage:低频存储提前删除量。</li>
19497
19496
  <li>DeletedArchiveStorage:归档提前删除量。</li>
19498
- <li>DeletedDeepArchiveStorage:深度归档提前删除量。
19497
+ <li>DeletedDeepArchiveStorage:深度归档提前删除量。</li>
19499
19498
  <li>ArchiveStandardRetrieval:归档标准取回量。</li>
19500
19499
  <li>ArchiveExpeditedRetrieval:归档快速取回量。</li>
19501
19500
  <li>ArchiveBulkRetrieval:归档批量取回量。</li>
@@ -58,6 +58,16 @@ it("tke.v20180525.CreateCluster", async function () {
58
58
  }
59
59
  })
60
60
 
61
+ it("tke.v20180525.DescribeSupportedRuntime", async function () {
62
+ try {
63
+ const data = await client.DescribeSupportedRuntime({})
64
+ expect(data).to.be.ok
65
+ } catch(error) {
66
+ expect(error.requestId).to.be.ok
67
+ expect(error.code).to.be.ok
68
+ }
69
+ })
70
+
61
71
  it("tke.v20180525.InstallEdgeLogAgent", async function () {
62
72
  try {
63
73
  const data = await client.InstallEdgeLogAgent({})
@@ -2188,6 +2198,16 @@ it("tke.v20180525.CreateClusterEndpointVip", async function () {
2188
2198
  }
2189
2199
  })
2190
2200
 
2201
+ it("tke.v20180525.ModifyClusterRuntimeConfig", async function () {
2202
+ try {
2203
+ const data = await client.ModifyClusterRuntimeConfig({})
2204
+ expect(data).to.be.ok
2205
+ } catch(error) {
2206
+ expect(error.requestId).to.be.ok
2207
+ expect(error.code).to.be.ok
2208
+ }
2209
+ })
2210
+
2191
2211
  it("tke.v20180525.DescribeRouteTableConflicts", async function () {
2192
2212
  try {
2193
2213
  const data = await client.DescribeRouteTableConflicts({})