tencentcloud-sdk-nodejs 4.0.595 → 4.0.596

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 (51) hide show
  1. package/CHANGELOG.md +159 -0
  2. package/SERVICE_CHANGELOG.md +189 -112
  3. package/package.json +1 -1
  4. package/products.md +16 -16
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/antiddos/v20200309/antiddos_models.ts +1 -1
  7. package/src/services/asr/v20190614/asr_client.ts +2 -2
  8. package/src/services/asr/v20190614/asr_models.ts +34 -23
  9. package/src/services/cbs/v20170312/cbs_client.ts +2 -5
  10. package/src/services/cbs/v20170312/cbs_models.ts +10 -9
  11. package/src/services/ckafka/v20190819/ckafka_client.ts +14 -1
  12. package/src/services/ckafka/v20190819/ckafka_models.ts +55 -11
  13. package/src/services/cls/v20201016/cls_models.ts +6 -0
  14. package/src/services/cynosdb/v20190107/cynosdb_client.ts +40 -14
  15. package/src/services/cynosdb/v20190107/cynosdb_models.ts +199 -10
  16. package/src/services/es/v20180416/es_models.ts +10 -0
  17. package/src/services/gs/v20191118/gs_models.ts +1 -1
  18. package/src/services/omics/v20221128/omics_models.ts +12 -0
  19. package/src/services/tdmq/v20200217/tdmq_models.ts +7 -7
  20. package/src/services/trtc/v20190722/trtc_models.ts +1 -1
  21. package/src/services/tsf/v20180326/tsf_client.ts +13 -1
  22. package/src/services/tsf/v20180326/tsf_models.ts +61 -31
  23. package/src/services/vpc/v20170312/vpc_models.ts +8 -7
  24. package/tencentcloud/common/sdk_version.d.ts +1 -1
  25. package/tencentcloud/common/sdk_version.js +1 -1
  26. package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +1 -1
  27. package/tencentcloud/services/asr/v20190614/asr_client.d.ts +2 -2
  28. package/tencentcloud/services/asr/v20190614/asr_client.js +2 -2
  29. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +33 -23
  30. package/tencentcloud/services/cbs/v20170312/cbs_client.d.ts +2 -5
  31. package/tencentcloud/services/cbs/v20170312/cbs_client.js +2 -5
  32. package/tencentcloud/services/cbs/v20170312/cbs_models.d.ts +7 -6
  33. package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +5 -1
  34. package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +6 -0
  35. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +49 -10
  36. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +5 -0
  37. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +13 -5
  38. package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +18 -6
  39. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +168 -9
  40. package/tencentcloud/services/es/v20180416/es_models.d.ts +8 -0
  41. package/tencentcloud/services/gs/v20191118/gs_models.d.ts +1 -1
  42. package/tencentcloud/services/omics/v20221128/omics_models.d.ts +10 -0
  43. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +6 -6
  44. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +1 -1
  45. package/tencentcloud/services/tsf/v20180326/tsf_client.d.ts +5 -1
  46. package/tencentcloud/services/tsf/v20180326/tsf_client.js +6 -0
  47. package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +52 -26
  48. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +6 -5
  49. package/test/ckafka.v20190819.test.js +10 -0
  50. package/test/cynosdb.v20190107.test.js +24 -4
  51. package/test/tsf.v20180326.test.js +10 -0
@@ -791,6 +791,51 @@ export interface SetRenewFlagResponse {
791
791
  */
792
792
  RequestId?: string;
793
793
  }
794
+ /**
795
+ * ExportInstanceErrorLogs请求参数结构体
796
+ */
797
+ export interface ExportInstanceErrorLogsRequest {
798
+ /**
799
+ * 实例ID
800
+ */
801
+ InstanceId: string;
802
+ /**
803
+ * 日志最早时间
804
+ */
805
+ StartTime?: string;
806
+ /**
807
+ * 日志最晚时间
808
+ */
809
+ EndTime?: string;
810
+ /**
811
+ * 限制条数
812
+ */
813
+ Limit?: number;
814
+ /**
815
+ * 偏移量
816
+ */
817
+ Offset?: number;
818
+ /**
819
+ * 日志等级
820
+ */
821
+ LogLevels?: Array<string>;
822
+ /**
823
+ * 关键字
824
+ */
825
+ KeyWords?: Array<string>;
826
+ /**
827
+ * 文件类型,可选值:csv, original
828
+ */
829
+ FileType?: string;
830
+ /**
831
+ * 可选值Timestamp
832
+ */
833
+ OrderBy?: string;
834
+ /**
835
+ * ASC或DESC
836
+ */
837
+ OrderByType?: string;
838
+ }
794
839
  /**
795
840
  * RevokeAccountPrivileges返回参数结构体
796
841
  */
@@ -1029,6 +1074,26 @@ export interface AddClusterSlaveZoneRequest {
1029
1074
  */
1030
1075
  SlaveZone: string;
1031
1076
  }
1077
+ /**
1078
+ * 实例错误日志返回类型
1079
+ */
1080
+ export interface CynosdbErrorLogItem {
1081
+ /**
1082
+ * 日志时间戳
1083
+ 注意:此字段可能返回 null,表示取不到有效值。
1084
+ */
1085
+ Timestamp?: number;
1086
+ /**
1087
+ * 日志等级
1088
+ 注意:此字段可能返回 null,表示取不到有效值。
1089
+ */
1090
+ Level?: string;
1091
+ /**
1092
+ * 日志内容
1093
+ 注意:此字段可能返回 null,表示取不到有效值。
1094
+ */
1095
+ Content?: string;
1096
+ }
1032
1097
  /**
1033
1098
  * DescribeAccountAllGrantPrivileges返回参数结构体
1034
1099
  */
@@ -2079,6 +2144,20 @@ export interface DescribeAuditRuleWithInstanceIdsRequest {
2079
2144
  */
2080
2145
  InstanceIds: Array<string>;
2081
2146
  }
2147
+ /**
2148
+ * ExportInstanceErrorLogs返回参数结构体
2149
+ */
2150
+ export interface ExportInstanceErrorLogsResponse {
2151
+ /**
2152
+ * 错误日志导出内容
2153
+ 注意:此字段可能返回 null,表示取不到有效值。
2154
+ */
2155
+ ErrorLogItems?: Array<ErrorLogItemExport>;
2156
+ /**
2157
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2158
+ */
2159
+ RequestId?: string;
2160
+ }
2082
2161
  /**
2083
2162
  * 数据库表
2084
2163
  */
@@ -2734,6 +2813,20 @@ export interface DescribeBackupDownloadUrlRequest {
2734
2813
  */
2735
2814
  BackupId: number;
2736
2815
  }
2816
+ /**
2817
+ * SearchClusterDatabases返回参数结构体
2818
+ */
2819
+ export interface SearchClusterDatabasesResponse {
2820
+ /**
2821
+ * 数据库列表
2822
+ 注意:此字段可能返回 null,表示取不到有效值。
2823
+ */
2824
+ Databases: Array<string>;
2825
+ /**
2826
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2827
+ */
2828
+ RequestId?: string;
2829
+ }
2737
2830
  /**
2738
2831
  * 可回档的时间范围
2739
2832
  */
@@ -3170,6 +3263,15 @@ export interface CreateAuditRuleTemplateRequest {
3170
3263
  */
3171
3264
  Description?: string;
3172
3265
  }
3266
+ /**
3267
+ * GrantAccountPrivileges返回参数结构体
3268
+ */
3269
+ export interface GrantAccountPrivilegesResponse {
3270
+ /**
3271
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3272
+ */
3273
+ RequestId?: string;
3274
+ }
3173
3275
  /**
3174
3276
  * ModifyBackupConfig返回参数结构体
3175
3277
  */
@@ -4260,9 +4362,19 @@ export interface ModifyClusterSlaveZoneRequest {
4260
4362
  NewSlaveZone: string;
4261
4363
  }
4262
4364
  /**
4263
- * GrantAccountPrivileges返回参数结构体
4365
+ * DescribeInstanceErrorLogs返回参数结构体
4264
4366
  */
4265
- export interface GrantAccountPrivilegesResponse {
4367
+ export interface DescribeInstanceErrorLogsResponse {
4368
+ /**
4369
+ * 日志条数
4370
+ 注意:此字段可能返回 null,表示取不到有效值。
4371
+ */
4372
+ TotalCount?: number;
4373
+ /**
4374
+ * 错误日志列表
4375
+ 注意:此字段可能返回 null,表示取不到有效值。
4376
+ */
4377
+ ErrorLogs?: Array<CynosdbErrorLogItem>;
4266
4378
  /**
4267
4379
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4268
4380
  */
@@ -4760,18 +4872,45 @@ export interface ResetAccountPasswordRequest {
4760
4872
  Host?: string;
4761
4873
  }
4762
4874
  /**
4763
- * SearchClusterDatabases返回参数结构体
4875
+ * DescribeInstanceErrorLogs请求参数结构体
4764
4876
  */
4765
- export interface SearchClusterDatabasesResponse {
4877
+ export interface DescribeInstanceErrorLogsRequest {
4766
4878
  /**
4767
- * 数据库列表
4768
- 注意:此字段可能返回 null,表示取不到有效值。
4879
+ * 实例Id
4769
4880
  */
4770
- Databases: Array<string>;
4881
+ InstanceId: string;
4771
4882
  /**
4772
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4883
+ * 日志条数限制
4773
4884
  */
4774
- RequestId?: string;
4885
+ Limit?: number;
4886
+ /**
4887
+ * 日志条数偏移量
4888
+ */
4889
+ Offset?: number;
4890
+ /**
4891
+ * 开始时间
4892
+ */
4893
+ StartTime?: string;
4894
+ /**
4895
+ * 结束时间
4896
+ */
4897
+ EndTime?: string;
4898
+ /**
4899
+ * 排序字段,有Timestamp枚举值
4900
+ */
4901
+ OrderBy?: string;
4902
+ /**
4903
+ * 排序类型,有ASC,DESC枚举值
4904
+ */
4905
+ OrderByType?: string;
4906
+ /**
4907
+ * 日志等级,有error、warning、note三种,支持多个等级同时搜索
4908
+ */
4909
+ LogLevels?: Array<string>;
4910
+ /**
4911
+ * 关键字,支持模糊搜索
4912
+ */
4913
+ KeyWords?: Array<string>;
4775
4914
  }
4776
4915
  /**
4777
4916
  * DescribeInstanceDetail请求参数结构体
@@ -5059,6 +5198,26 @@ export interface DescribeDBSecurityGroupsRequest {
5059
5198
  */
5060
5199
  InstanceId: string;
5061
5200
  }
5201
+ /**
5202
+ * 错误日志导出格式
5203
+ */
5204
+ export interface ErrorLogItemExport {
5205
+ /**
5206
+ * 时间
5207
+ 注意:此字段可能返回 null,表示取不到有效值。
5208
+ */
5209
+ Timestamp?: string;
5210
+ /**
5211
+ * 日志等级,可选值note, warning,error
5212
+ 注意:此字段可能返回 null,表示取不到有效值。
5213
+ */
5214
+ Level?: string;
5215
+ /**
5216
+ * 日志内容
5217
+ 注意:此字段可能返回 null,表示取不到有效值。
5218
+ */
5219
+ Content?: string;
5220
+ }
5062
5221
  /**
5063
5222
  * DescribeAccountAllGrantPrivileges请求参数结构体
5064
5223
  */
@@ -753,6 +753,10 @@ export interface InstanceLog {
753
753
  * 日志内容
754
754
  */
755
755
  Message: string;
756
+ /**
757
+ * 集群节点ID
758
+ */
759
+ NodeID?: string;
756
760
  }
757
761
  /**
758
762
  * 集群中一种节点类型(如热数据节点,冷数据节点,专用主节点等)的规格描述信息,包括节点类型,节点个数,节点规格,磁盘类型,磁盘大小等, Type不指定时默认为热数据节点;如果节点为master节点,则DiskType和DiskSize参数会被忽略(主节点无数据盘)
@@ -2638,6 +2642,10 @@ export interface KibanaView {
2638
2642
  * 可用区
2639
2643
  */
2640
2644
  Zone: string;
2645
+ /**
2646
+ * ts-0noqayxu-az6-hot-03222010-0
2647
+ */
2648
+ NodeId?: string;
2641
2649
  }
2642
2650
  /**
2643
2651
  * RestartInstance返回参数结构体
@@ -103,7 +103,7 @@ export interface CreateSessionRequest {
103
103
  */
104
104
  UserId: string;
105
105
  /**
106
- * 游戏ID
106
+ * 【已废弃】只在TrylockWorker时生效
107
107
  */
108
108
  GameId: string;
109
109
  /**
@@ -727,6 +727,16 @@ export interface RunOption {
727
727
  * 是否使用错误挂起功能。
728
728
  */
729
729
  UseErrorOnHold: boolean;
730
+ /**
731
+ * 输出归档COS路径。
732
+ 注意:此字段可能返回 null,表示取不到有效值。
733
+ */
734
+ FinalWorkflowOutputsDir?: string;
735
+ /**
736
+ * 是否使用相对目录归档输出。
737
+ 注意:此字段可能返回 null,表示取不到有效值。
738
+ */
739
+ UseRelativeOutputPaths?: boolean;
730
740
  }
731
741
  /**
732
742
  * 云服务器配置。
@@ -2984,6 +2984,10 @@ export interface DescribeTopicsRequest {
2984
2984
  * 环境(命名空间)名称。
2985
2985
  */
2986
2986
  EnvironmentId: string;
2987
+ /**
2988
+ * Pulsar 集群的ID
2989
+ */
2990
+ ClusterId: string;
2987
2991
  /**
2988
2992
  * 主题名模糊匹配。
2989
2993
  */
@@ -3004,10 +3008,6 @@ export interface DescribeTopicsRequest {
3004
3008
  3:持久分区主题类型;
3005
3009
  */
3006
3010
  TopicType?: number;
3007
- /**
3008
- * Pulsar 集群的ID
3009
- */
3010
- ClusterId?: string;
3011
3011
  /**
3012
3012
  * * TopicName
3013
3013
  按照主题名字查询,精确查询。
@@ -6102,11 +6102,11 @@ export interface DescribeTopicsResponse {
6102
6102
  /**
6103
6103
  * 主题集合数组。
6104
6104
  */
6105
- TopicSets: Array<Topic>;
6105
+ TopicSets?: Array<Topic>;
6106
6106
  /**
6107
6107
  * 主题数量。
6108
6108
  */
6109
- TotalCount: number;
6109
+ TotalCount?: number;
6110
6110
  /**
6111
6111
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6112
6112
  */
@@ -1948,7 +1948,7 @@ export interface CreateCloudRecordingRequest {
1948
1948
  */
1949
1949
  ResourceExpiredHour?: number;
1950
1950
  /**
1951
- * TRTC房间权限加密串,只有在TRTC控制台启用了高级权限控制的时候需要携带,在TRTC控制台如果开启高级权限控制后,TRTC 的后台服务系统会校验一个叫做 [PrivateMapKey](https://cloud.tencent.com/document/product/647/32240) 的“权限票据”,权限票据中包含了一个加密后的 RoomId 和一个加密后的“权限位列表”。由于 PrivateMapKey 中包含 RoomId,所以只提供了 UserSig 没有提供 PrivateMapKey 时,并不能进入指定的房间。
1951
+ * TRTC房间权限加密串,只有在TRTC控制台启用了高级权限控制的时候需要携带,在TRTC控制台如果开启高级权限控制后,TRTC 的后台服务系统会校验一个叫做 [PrivateMapKey] 的“权限票据”,权限票据中包含了一个加密后的 RoomId 和一个加密后的“权限位列表”。由于 PrivateMapKey 中包含 RoomId,所以只提供了 UserSig 没有提供 PrivateMapKey 时,并不能进入指定的房间。
1952
1952
  */
1953
1953
  PrivateMapKey?: string;
1954
1954
  }
@@ -1,6 +1,6 @@
1
1
  import { AbstractClient } from "../../../common/abstract_client";
2
2
  import { ClientConfig } from "../../../common/interface";
3
- import { DescribePublicConfigSummaryRequest, ModifyPathRewriteRequest, DescribeUnitRulesV2Response, UpdateApiRateLimitRuleRequest, DeleteClusterResponse, DeletePathRewritesResponse, DescribeUnitApiUseDetailRequest, ModifyApplicationResponse, DescribeApiVersionsResponse, ReassociateBusinessLogConfigRequest, StopContainerGroupResponse, CreateConfigTemplateWithDetailRespResponse, DeletePathRewritesRequest, DeleteLaneResponse, DescribeGroupReleaseRequest, DescribeConfigTemplateResponse, DescribeDeliveryConfigResponse, ContinueRunFailedTaskBatchRequest, DescribeSimpleClustersResponse, DeleteRepositoryResponse, DeleteApplicationResponse, UpdateRepositoryRequest, DescribePathRewriteResponse, DescribeConfigsResponse, ModifyContainerReplicasRequest, ReleaseFileConfigRequest, DescribeInvocationMetricDataDimensionResponse, SearchStdoutLogResponse, CreateGatewayApiResponse, DescribeFileConfigsResponse, DescribeClustersRequest, DescribeApiVersionsRequest, DeleteConfigTemplateResponse, DescribeGroupBindedGatewaysResponse, DescribeJvmMonitorRequest, UnbindApiGroupRequest, CreateNamespaceResponse, RedoTaskBatchRequest, DescribeGroupsResponse, ModifyUploadInfoResponse, CreateApiRateLimitRuleRequest, AssociateBusinessLogConfigRequest, DescribeJvmMonitorResponse, DescribeDeliveryConfigRequest, DeleteServerlessGroupRequest, ChangeApiUsableStatusRequest, DescribeMicroservicesResponse, DescribeApiRateLimitRulesRequest, DescribeApiGroupsResponse, DeletePublicConfigRequest, DeleteNamespaceResponse, CreateMicroserviceRequest, ReleaseConfigResponse, DescribeUnitRuleResponse, DeleteImageTagsRequest, DescribeRepositoriesRequest, RollbackConfigRequest, DisassociateBusinessLogConfigResponse, CreateGatewayApiRequest, DescribeCreateGatewayApiStatusResponse, DeleteConfigResponse, DescribeGroupGatewaysRequest, UpdateApiRateLimitRuleResponse, DescribeGatewayAllGroupApisResponse, ModifyNamespaceResponse, ModifyLaneRuleRequest, AddInstancesResponse, StartContainerGroupRequest, DescribeRepositoryResponse, ReleaseConfigWithDetailRespResponse, UpdateHealthCheckSettingsRequest, EnableUnitRuleRequest, CreateClusterResponse, CreateMicroserviceResponse, CreateFileConfigWithDetailRespRequest, ModifyContainerReplicasResponse, StopGroupRequest, ShrinkGroupResponse, DescribeLanesResponse, StartGroupRequest, CreateNamespaceRequest, DescribeDownloadInfoRequest, DescribeClusterInstancesRequest, DescribeGroupBindedGatewaysRequest, DescribeRepositoryRequest, CreatePublicConfigWithDetailRespRequest, DescribeResourceTaskStatusResponse, RedoTaskRequest, DeleteApiGroupResponse, DraftApiGroupRequest, CreateLaneResponse, DescribeDeliveryConfigsResponse, UpdateApiTimeoutsResponse, DescribePkgsResponse, DescribeSimpleNamespacesResponse, DescribeContainerGroupDeployInfoResponse, DescribeOverviewInvocationRequest, DescribeProgramsRequest, DescribePublicConfigRequest, AddClusterInstancesResponse, DescribeOverviewInvocationResponse, CreatePublicConfigResponse, CreateConfigResponse, RevokeFileConfigRequest, DescribeCreateGatewayApiStatusRequest, RevocationPublicConfigResponse, DescribeConfigReleaseLogsRequest, AssociateConfigWithGroupResponse, UpdateRepositoryResponse, DisassociateKafkaConfigRequest, RollbackConfigResponse, RevocationConfigRequest, StartContainerGroupResponse, ModifyTaskRequest, DeleteUnitNamespacesResponse, DisableTaskRequest, DescribeStatisticsResponse, DescribeBasicResourceUsageResponse, CreateAllGatewayApiAsyncResponse, RemoveInstancesRequest, ModifyLaneResponse, DeleteGroupResponse, DescribeSimpleApplicationsResponse, DeployContainerGroupRequest, CreateApiRateLimitRuleWithDetailRespRequest, CreateUnitRuleWithDetailRespRequest, DescribeSimpleApplicationsRequest, DescribeDeliveryConfigByGroupIdResponse, ModifyContainerGroupRequest, OperateApplicationTcrBindingRequest, CreateConfigWithDetailRespResponse, DescribeGroupBusinessLogConfigsResponse, UpdateUnitRuleRequest, ReleasePublicConfigResponse, ReleaseApiGroupResponse, UpdateApiRateLimitRulesRequest, DescribeGroupInstancesRequest, DescribeMsApiListRequest, DescribeUploadInfoResponse, DescribeMsApiListResponse, EnableTaskRequest, DisableTaskResponse, DescribeMicroserviceRequest, DescribePodInstancesResponse, DescribeInvocationMetricDataPointRequest, DescribeRepositoriesResponse, CreateGroupRequest, DeleteClusterRequest, StopTaskBatchResponse, CreateContainGroupResponse, DescribeContainerGroupDetailResponse, CreatePathRewritesWithDetailRespResponse, DescribeGroupGatewaysResponse, RevocationConfigResponse, DeleteTaskResponse, DeleteMicroserviceRequest, CreatePublicConfigWithDetailRespResponse, CreateConfigWithDetailRespRequest, RemoveInstancesResponse, DescribeContainerEventsRequest, DisableUnitRuleRequest, DescribeApplicationBusinessLogConfigResponse, DescribeGroupResponse, ModifyClusterRequest, DeleteContainerGroupResponse, DeleteServerlessGroupResponse, DeleteImageTagsResponse, DescribeFileConfigReleasesResponse, DisableUnitRouteResponse, ExecuteTaskRequest, DescribeGroupBusinessLogConfigsRequest, DescribeApplicationResponse, DescribeConfigReleaseLogsResponse, DeletePublicConfigResponse, DescribeSimpleGroupsResponse, DescribeFlowLastBatchStateRequest, TerminateTaskFlowBatchResponse, DisassociateKafkaConfigResponse, ShrinkInstancesResponse, DeleteLaneRuleResponse, DescribeApiRateLimitRulesResponse, AddClusterInstancesRequest, DescribeGroupUseDetailResponse, UpdateApiTimeoutsRequest, DescribeInovcationIndicatorsRequest, ShrinkInstancesRequest, DescribeSimpleNamespacesRequest, ExecuteTaskFlowResponse, DescribeClustersResponse, SearchBusinessLogRequest, ExpandGroupResponse, DescribePublicConfigsResponse, DescribeUnitNamespacesResponse, ContinueRunFailedTaskBatchResponse, DescribeSimpleClustersRequest, DescribeLaneRulesResponse, DescribeImageRepositoryRequest, DescribeApiGroupRequest, AssociateBusinessLogConfigResponse, DescribeGatewayApisRequest, AssociateConfigWithGroupRequest, DescribeContainerGroupDetailRequest, DescribeGroupsWithPluginRequest, ModifyTaskResponse, RevokeFileConfigResponse, SearchBusinessLogResponse, DeleteUnitNamespacesRequest, DescribeGroupRequest, UpdateConfigTemplateResponse, BindPluginRequest, DeleteLaneRuleRequest, CreateUnitRuleWithDetailRespResponse, DescribeGroupUseDetailRequest, UpdateUnitRuleResponse, CreateUnitRuleRequest, StartGroupResponse, DescribePathRewritesRequest, ShrinkGroupRequest, CreateLaneRuleResponse, CreateTaskResponse, DescribeContainerGroupsResponse, UpdateApiGroupResponse, DescribeGroupsWithPluginResponse, AddInstancesRequest, CreateApplicationRequest, DeployGroupRequest, CreateTaskFlowRequest, CreateFileConfigWithDetailRespResponse, CreateConfigTemplateWithDetailRespRequest, UnbindApiGroupResponse, DescribeGroupReleaseResponse, DescribePathRewriteRequest, CreateApplicationResponse, DescribeInvocationMetricDataDimensionRequest, DeployGroupResponse, ModifyGroupResponse, DescribeUnitRulesV2Request, BindApiGroupResponse, DescribeGroupAttributeResponse, ModifyPathRewriteResponse, EnableUnitRuleResponse, DescribeEnabledUnitRuleResponse, UpdateApiGroupRequest, EnableUnitRouteResponse, DescribeBusinessLogConfigRequest, ExecuteTaskFlowRequest, DescribeBusinessLogConfigResponse, TerminateTaskFlowBatchRequest, CreateUnitRuleResponse, DescribeTaskRecordsResponse, DescribeApiUseDetailResponse, ModifyUploadInfoRequest, DescribeGatewayApisResponse, DescribeUnitRuleRequest, UpdateGatewayApiResponse, DescribeInstancesResponse, CreatePathRewritesWithDetailRespRequest, DeleteFileConfigResponse, DeleteApiRateLimitRuleResponse, DeleteFileConfigRequest, DescribePublicConfigSummaryResponse, DescribePublicConfigReleaseLogsRequest, DescribeApplicationAttributeResponse, ModifyLaneRequest, DescribeLanesRequest, DescribeGatewayMonitorOverviewResponse, CreatePublicConfigRequest, CreateAllGatewayApiAsyncRequest, EnableTaskFlowResponse, DeleteUnitRuleResponse, DisableTaskFlowResponse, DescribeGatewayMonitorOverviewRequest, DescribeImageTagsResponse, BindPluginResponse, RedoTaskFlowBatchRequest, CreateMicroserviceWithDetailRespRequest, StopTaskExecuteRequest, DeleteApiRateLimitRuleRequest, DescribePkgsRequest, DescribeApplicationAttributeRequest, ReleaseConfigWithDetailRespRequest, CreateTaskRequest, DescribePublicConfigResponse, DescribeUsableUnitNamespacesResponse, ReleaseFileConfigResponse, DescribeConfigResponse, CreateApiRateLimitRuleWithDetailRespResponse, DescribeTaskRecordsRequest, ModifyContainerGroupResponse, DeleteApplicationRequest, DescribeUnitNamespacesRequest, DeleteTaskRequest, DescribeBusinessLogConfigsRequest, DeleteConfigTemplateRequest, DescribePluginInstancesRequest, DescribeInovcationIndicatorsResponse, CreateConfigRequest, DescribeUploadInfoRequest, DescribeUnitRulesResponse, UpdateGatewayApiRequest, DescribeInstancesRequest, ReassociateBusinessLogConfigResponse, DescribeApiGroupsRequest, DeleteUnitRuleRequest, DeletePkgsResponse, DescribeTaskLastStatusRequest, DescribeBusinessLogConfigsResponse, DescribeInvocationMetricScatterPlotRequest, CreateTaskFlowResponse, DescribeMicroservicesRequest, DescribeApplicationBusinessLogConfigRequest, DescribeInvocationMetricDataCurveRequest, DescribeTaskLastStatusResponse, DescribePublicConfigsRequest, DescribeApplicationsRequest, DescribeTaskDetailRequest, DescribePublicConfigReleasesRequest, DescribeLaneRulesRequest, DescribeContainerEventsResponse, DescribePluginInstancesResponse, CreateRepositoryResponse, CreateLaneRuleRequest, DeletePkgsRequest, CreateFileConfigRequest, ChangeApiUsableStatusResponse, CreateFileConfigResponse, DescribeGroupInstancesResponse, DescribeContainerGroupDeployInfoRequest, DescribeDeliveryConfigsRequest, DisassociateBusinessLogConfigRequest, DescribePublicConfigReleaseLogsResponse, DeleteApiGroupRequest, ReleaseApiGroupRequest, DescribeFileConfigReleasesRequest, DescribeClusterInstancesResponse, DescribeTaskDetailResponse, ExpandGroupRequest, RevocationPublicConfigRequest, ModifyLaneRuleResponse, DescribeGroupAttributeRequest, ModifyClusterResponse, EnableTaskFlowRequest, DescribeReleasedConfigRequest, StopGroupResponse, CreatePathRewritesRequest, ModifyMicroserviceRequest, DescribeConfigReleasesRequest, DescribeEnabledUnitRuleRequest, CreateConfigTemplateRequest, DescribeApiGroupResponse, RedoTaskExecuteResponse, CreateLaneRequest, CreateApiGroupResponse, RedoTaskExecuteRequest, DescribeApplicationsResponse, DescribeConfigRequest, OperateApplicationTcrBindingResponse, DisableUnitRouteRequest, DescribeUnitRulesRequest, UpdateConfigTemplateRequest, DescribeGatewayAllGroupApisRequest, DeleteGroupRequest, BindApiGroupRequest, StopTaskBatchRequest, DescribeUnitApiUseDetailResponse, DescribeInvocationMetricScatterPlotResponse, DescribeUsableUnitNamespacesRequest, DescribeContainerGroupsRequest, DescribeProgramsResponse, DisableTaskFlowRequest, DescribePodInstancesRequest, RedoTaskResponse, DescribeConfigsRequest, EnableUnitRouteRequest, DescribeResourceTaskStatusRequest, DescribeInvocationMetricDataCurveResponse, DeleteConfigRequest, DescribeFileConfigsRequest, CreateConfigTemplateResponse, ExecuteTaskResponse, CreateApiRateLimitRuleResponse, DescribeApiUseDetailRequest, CreateMicroserviceWithDetailRespResponse, CreateClusterRequest, DescribeDeliveryConfigByGroupIdRequest, DeleteContainerGroupRequest, EnableTaskResponse, ReleaseConfigRequest, DescribeApiDetailRequest, StopContainerGroupRequest, UpdateHealthCheckSettingsResponse, DescribeInvocationMetricDataPointResponse, DisableUnitRuleResponse, ModifyApplicationRequest, DescribePathRewritesResponse, DescribeFlowLastBatchStateResponse, StopTaskExecuteResponse, UpdateApiRateLimitRulesResponse, DeleteRepositoryRequest, DescribeSimpleGroupsRequest, DescribeConfigReleasesResponse, ModifyMicroserviceResponse, CreateApiGroupRequest, DescribeDownloadInfoResponse, DescribeApplicationRequest, DeployContainerGroupResponse, DescribeBasicResourceUsageRequest, DeleteMicroserviceResponse, DescribeReleasedConfigResponse, DescribeApiDetailResponse, DescribeGroupsRequest, ModifyNamespaceRequest, CreateRepositoryRequest, DeleteNamespaceRequest, SearchStdoutLogRequest, RedoTaskBatchResponse, DescribeStatisticsRequest, ModifyGroupRequest, DescribeMicroserviceResponse, DescribeImageRepositoryResponse, DescribeImageTagsRequest, DescribeConfigSummaryResponse, CreateContainGroupRequest, DescribePublicConfigReleasesResponse, CreatePathRewritesResponse, DescribeConfigTemplateRequest, DraftApiGroupResponse, DescribeConfigSummaryRequest, DeleteLaneRequest, ReleasePublicConfigRequest, RedoTaskFlowBatchResponse, CreateGroupResponse } from "./tsf_models";
3
+ import { DescribePublicConfigSummaryRequest, ModifyPathRewriteRequest, DescribeUnitRulesV2Response, UpdateApiRateLimitRuleRequest, DeleteClusterResponse, DeletePathRewritesResponse, DescribeUnitApiUseDetailRequest, ModifyApplicationResponse, DescribeApiVersionsResponse, ReassociateBusinessLogConfigRequest, StopContainerGroupResponse, CreateConfigTemplateWithDetailRespResponse, DeletePathRewritesRequest, DeleteLaneResponse, DescribeGroupReleaseRequest, DescribeConfigTemplateResponse, DescribeDeliveryConfigResponse, ContinueRunFailedTaskBatchRequest, DescribeSimpleClustersResponse, DeleteRepositoryResponse, DeleteApplicationResponse, UpdateRepositoryRequest, DescribePathRewriteResponse, DescribeConfigsResponse, ModifyContainerReplicasRequest, ReleaseFileConfigRequest, DescribeInvocationMetricDataDimensionResponse, SearchStdoutLogResponse, CreateGatewayApiResponse, DescribeFileConfigsResponse, DescribeClustersRequest, DescribeApiVersionsRequest, DeleteConfigTemplateResponse, DescribeGroupBindedGatewaysResponse, DescribeJvmMonitorRequest, UnbindApiGroupRequest, CreateNamespaceResponse, RedoTaskBatchRequest, DescribeGroupsResponse, ModifyUploadInfoResponse, CreateApiRateLimitRuleRequest, AssociateBusinessLogConfigRequest, DescribeJvmMonitorResponse, DescribeDeliveryConfigRequest, DeleteServerlessGroupRequest, ChangeApiUsableStatusRequest, DescribeMicroservicesResponse, DescribeApiRateLimitRulesRequest, DescribeApiGroupsResponse, DeletePublicConfigRequest, DeleteNamespaceResponse, CreateMicroserviceRequest, ReleaseConfigResponse, DescribeUnitRuleResponse, DeleteImageTagsRequest, DescribeRepositoriesRequest, RollbackConfigRequest, DisassociateBusinessLogConfigResponse, CreateGatewayApiRequest, DescribeCreateGatewayApiStatusResponse, DeleteConfigResponse, DescribeGroupGatewaysRequest, UpdateApiRateLimitRuleResponse, DescribeGatewayAllGroupApisResponse, ModifyNamespaceResponse, ModifyLaneRuleRequest, AddInstancesResponse, StartContainerGroupRequest, DescribeRepositoryResponse, ReleaseConfigWithDetailRespResponse, UpdateHealthCheckSettingsRequest, EnableUnitRuleRequest, CreateClusterResponse, CreateMicroserviceResponse, CreateFileConfigWithDetailRespRequest, ModifyContainerReplicasResponse, StopGroupRequest, ShrinkGroupResponse, DescribeLanesResponse, StartGroupRequest, CreateNamespaceRequest, DescribeDownloadInfoRequest, DescribeClusterInstancesRequest, DescribeGroupBindedGatewaysRequest, DescribeRepositoryRequest, CreatePublicConfigWithDetailRespRequest, DescribeResourceTaskStatusResponse, RedoTaskRequest, DeleteApiGroupResponse, DraftApiGroupRequest, CreateLaneResponse, DescribeDeliveryConfigsResponse, UpdateApiTimeoutsResponse, DescribePkgsResponse, DescribeSimpleNamespacesResponse, DescribeContainerGroupDeployInfoResponse, DescribeOverviewInvocationRequest, DescribeProgramsRequest, DescribePublicConfigRequest, AddClusterInstancesResponse, DescribeOverviewInvocationResponse, CreatePublicConfigResponse, CreateConfigResponse, RevokeFileConfigRequest, DescribeCreateGatewayApiStatusRequest, RevocationPublicConfigResponse, DescribeConfigReleaseLogsRequest, AssociateConfigWithGroupResponse, UpdateRepositoryResponse, DisassociateKafkaConfigRequest, RollbackConfigResponse, RevocationConfigRequest, StartContainerGroupResponse, ModifyTaskRequest, DeleteUnitNamespacesResponse, DisableTaskRequest, DescribeStatisticsResponse, DescribeBasicResourceUsageResponse, CreateAllGatewayApiAsyncResponse, RemoveInstancesRequest, ModifyLaneResponse, DeleteGroupResponse, DescribeSimpleApplicationsResponse, DeployContainerGroupRequest, CreateApiRateLimitRuleWithDetailRespRequest, CreateUnitRuleWithDetailRespRequest, DescribeSimpleApplicationsRequest, DescribeDeliveryConfigByGroupIdResponse, ModifyContainerGroupRequest, OperateApplicationTcrBindingRequest, CreateConfigWithDetailRespResponse, DescribeGroupBusinessLogConfigsResponse, UpdateUnitRuleRequest, ReleasePublicConfigResponse, ReleaseApiGroupResponse, UpdateApiRateLimitRulesRequest, DescribeGroupInstancesRequest, DescribeMsApiListRequest, DescribeUploadInfoResponse, DescribeMsApiListResponse, EnableTaskRequest, DisableTaskResponse, DescribeMicroserviceRequest, DescribePodInstancesResponse, DescribeInvocationMetricDataPointRequest, DescribeRepositoriesResponse, CreateGroupRequest, DeleteClusterRequest, StopTaskBatchResponse, CreateContainGroupResponse, DescribeContainerGroupDetailResponse, CreatePathRewritesWithDetailRespResponse, DescribeGroupGatewaysResponse, RevocationConfigResponse, DeleteTaskResponse, DeleteMicroserviceRequest, CreatePublicConfigWithDetailRespResponse, CreateConfigWithDetailRespRequest, RemoveInstancesResponse, DescribeContainerEventsRequest, DisableUnitRuleRequest, DescribeApplicationBusinessLogConfigResponse, DescribeGroupResponse, ModifyClusterRequest, DeleteContainerGroupResponse, DeleteServerlessGroupResponse, DeleteImageTagsResponse, DescribeFileConfigReleasesResponse, DisableUnitRouteResponse, ExecuteTaskRequest, DescribeGroupBusinessLogConfigsRequest, DescribeApplicationResponse, DescribeConfigReleaseLogsResponse, DeletePublicConfigResponse, DescribeSimpleGroupsResponse, DescribeFlowLastBatchStateRequest, TerminateTaskFlowBatchResponse, DisassociateKafkaConfigResponse, ShrinkInstancesResponse, DeleteLaneRuleResponse, DescribeApiRateLimitRulesResponse, AddClusterInstancesRequest, DescribeGroupUseDetailResponse, UpdateApiTimeoutsRequest, DescribeInovcationIndicatorsRequest, ShrinkInstancesRequest, DescribeSimpleNamespacesRequest, ExecuteTaskFlowResponse, DescribeClustersResponse, SearchBusinessLogRequest, ExpandGroupResponse, DescribePublicConfigsResponse, DescribeUnitNamespacesResponse, ContinueRunFailedTaskBatchResponse, DescribeSimpleClustersRequest, DescribeLaneRulesResponse, DescribeImageRepositoryRequest, DescribeApiGroupRequest, AssociateBusinessLogConfigResponse, DescribeGatewayApisRequest, AssociateConfigWithGroupRequest, DescribeContainerGroupDetailRequest, DescribeGroupsWithPluginRequest, ModifyTaskResponse, RevokeFileConfigResponse, SearchBusinessLogResponse, DeleteUnitNamespacesRequest, DescribeGroupRequest, UpdateConfigTemplateResponse, BindPluginRequest, DeleteLaneRuleRequest, CreateUnitRuleWithDetailRespResponse, DescribeGroupUseDetailRequest, UpdateUnitRuleResponse, CreateUnitRuleRequest, StartGroupResponse, DescribePathRewritesRequest, ShrinkGroupRequest, CreateLaneRuleResponse, CreateTaskResponse, DescribeContainerGroupsResponse, UpdateApiGroupResponse, DescribeGroupsWithPluginResponse, AddInstancesRequest, CreateApplicationRequest, DeployGroupRequest, CreateTaskFlowRequest, CreateFileConfigWithDetailRespResponse, CreateConfigTemplateWithDetailRespRequest, UnbindApiGroupResponse, DescribeGroupReleaseResponse, DescribePathRewriteRequest, CreateApplicationResponse, DescribeInvocationMetricDataDimensionRequest, DeployGroupResponse, ModifyGroupResponse, DescribeUnitRulesV2Request, BindApiGroupResponse, DescribeGroupAttributeResponse, ModifyPathRewriteResponse, EnableUnitRuleResponse, DescribeEnabledUnitRuleResponse, UpdateApiGroupRequest, EnableUnitRouteResponse, DescribeBusinessLogConfigRequest, ExecuteTaskFlowRequest, DescribeBusinessLogConfigResponse, TerminateTaskFlowBatchRequest, CreateUnitRuleResponse, DescribeTaskRecordsResponse, DescribeApiUseDetailResponse, ModifyUploadInfoRequest, DescribeGatewayApisResponse, DescribeUnitRuleRequest, UpdateGatewayApiResponse, DescribeInstancesResponse, CreatePathRewritesWithDetailRespRequest, DeleteFileConfigResponse, DeleteApiRateLimitRuleResponse, DeleteFileConfigRequest, DescribePublicConfigSummaryResponse, DescribePublicConfigReleaseLogsRequest, DescribeApplicationAttributeResponse, ModifyLaneRequest, DescribeLanesRequest, DescribeGatewayMonitorOverviewResponse, CreatePublicConfigRequest, CreateAllGatewayApiAsyncRequest, EnableTaskFlowResponse, DeleteUnitRuleResponse, DisableTaskFlowResponse, DescribeGatewayMonitorOverviewRequest, DescribeImageTagsResponse, BindPluginResponse, RedoTaskFlowBatchRequest, CreateMicroserviceWithDetailRespRequest, StopTaskExecuteRequest, DeleteApiRateLimitRuleRequest, DescribePkgsRequest, DescribeApplicationAttributeRequest, ReleaseConfigWithDetailRespRequest, CreateTaskRequest, DescribePublicConfigResponse, DescribeUsableUnitNamespacesResponse, ReleaseFileConfigResponse, DescribeConfigResponse, CreateApiRateLimitRuleWithDetailRespResponse, DescribeTaskRecordsRequest, ModifyContainerGroupResponse, DeleteApplicationRequest, DescribeUnitNamespacesRequest, DeleteTaskRequest, DescribeBusinessLogConfigsRequest, DeleteConfigTemplateRequest, DescribePluginInstancesRequest, DescribeInovcationIndicatorsResponse, CreateConfigRequest, DeleteGatewayApiResponse, DescribeUnitRulesResponse, UpdateGatewayApiRequest, DescribeInstancesRequest, ReassociateBusinessLogConfigResponse, DescribeApiGroupsRequest, DeleteUnitRuleRequest, DeletePkgsResponse, DescribeTaskLastStatusRequest, DescribeBusinessLogConfigsResponse, DescribeInvocationMetricScatterPlotRequest, CreateTaskFlowResponse, DescribeMicroservicesRequest, DescribeApplicationBusinessLogConfigRequest, DescribeInvocationMetricDataCurveRequest, DescribeTaskLastStatusResponse, DescribePublicConfigsRequest, DescribeApplicationsRequest, DescribeTaskDetailRequest, DescribePublicConfigReleasesRequest, DescribeLaneRulesRequest, DescribeContainerEventsResponse, DescribePluginInstancesResponse, CreateRepositoryResponse, CreateLaneRuleRequest, DeletePkgsRequest, CreateFileConfigRequest, ChangeApiUsableStatusResponse, CreateFileConfigResponse, DescribeGroupInstancesResponse, DescribeContainerGroupDeployInfoRequest, DescribeDeliveryConfigsRequest, DisassociateBusinessLogConfigRequest, DescribePublicConfigReleaseLogsResponse, DeleteApiGroupRequest, ReleaseApiGroupRequest, DescribeFileConfigReleasesRequest, DescribeClusterInstancesResponse, DescribeTaskDetailResponse, ExpandGroupRequest, RevocationPublicConfigRequest, ModifyLaneRuleResponse, DescribeGroupAttributeRequest, ModifyClusterResponse, EnableTaskFlowRequest, DescribeReleasedConfigRequest, StopGroupResponse, CreatePathRewritesRequest, ModifyMicroserviceRequest, DescribeConfigReleasesRequest, DescribeEnabledUnitRuleRequest, CreateConfigTemplateRequest, DescribeApiGroupResponse, RedoTaskExecuteResponse, CreateLaneRequest, CreateApiGroupResponse, RedoTaskExecuteRequest, DescribeApplicationsResponse, DescribeConfigRequest, OperateApplicationTcrBindingResponse, DisableUnitRouteRequest, DescribeUnitRulesRequest, UpdateConfigTemplateRequest, DescribeGatewayAllGroupApisRequest, DeleteGroupRequest, BindApiGroupRequest, StopTaskBatchRequest, DescribeUploadInfoRequest, DescribeUnitApiUseDetailResponse, DescribeInvocationMetricScatterPlotResponse, DescribeUsableUnitNamespacesRequest, DescribeContainerGroupsRequest, DescribeProgramsResponse, DisableTaskFlowRequest, DescribePodInstancesRequest, RedoTaskResponse, DescribeConfigsRequest, EnableUnitRouteRequest, DescribeResourceTaskStatusRequest, DescribeInvocationMetricDataCurveResponse, DeleteConfigRequest, DescribeFileConfigsRequest, CreateConfigTemplateResponse, ExecuteTaskResponse, CreateApiRateLimitRuleResponse, DescribeApiUseDetailRequest, CreateMicroserviceWithDetailRespResponse, CreateClusterRequest, DescribeDeliveryConfigByGroupIdRequest, DeleteContainerGroupRequest, EnableTaskResponse, ReleaseConfigRequest, DescribeApiDetailRequest, StopContainerGroupRequest, UpdateHealthCheckSettingsResponse, DescribeInvocationMetricDataPointResponse, DisableUnitRuleResponse, ModifyApplicationRequest, DescribePathRewritesResponse, DeleteGatewayApiRequest, DescribeFlowLastBatchStateResponse, StopTaskExecuteResponse, UpdateApiRateLimitRulesResponse, DeleteRepositoryRequest, DescribeSimpleGroupsRequest, DescribeConfigReleasesResponse, ModifyMicroserviceResponse, CreateApiGroupRequest, DescribeDownloadInfoResponse, DescribeApplicationRequest, DeployContainerGroupResponse, DescribeBasicResourceUsageRequest, DeleteMicroserviceResponse, DescribeReleasedConfigResponse, DescribeApiDetailResponse, DescribeGroupsRequest, ModifyNamespaceRequest, CreateRepositoryRequest, DeleteNamespaceRequest, SearchStdoutLogRequest, RedoTaskBatchResponse, DescribeStatisticsRequest, ModifyGroupRequest, DescribeMicroserviceResponse, DescribeImageRepositoryResponse, DescribeImageTagsRequest, DescribeConfigSummaryResponse, CreateContainGroupRequest, DescribePublicConfigReleasesResponse, CreatePathRewritesResponse, DescribeConfigTemplateRequest, DraftApiGroupResponse, DescribeConfigSummaryRequest, DeleteLaneRequest, ReleasePublicConfigRequest, RedoTaskFlowBatchResponse, CreateGroupResponse } from "./tsf_models";
4
4
  /**
5
5
  * tsf client
6
6
  * @class
@@ -718,6 +718,10 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
718
718
  * 标准输出日志搜索
719
719
  */
720
720
  SearchStdoutLog(req: SearchStdoutLogRequest, cb?: (error: string, rep: SearchStdoutLogResponse) => void): Promise<SearchStdoutLogResponse>;
721
+ /**
722
+ * 批量删除API
723
+ */
724
+ DeleteGatewayApi(req: DeleteGatewayApiRequest, cb?: (error: string, rep: DeleteGatewayApiResponse) => void): Promise<DeleteGatewayApiResponse>;
721
725
  /**
722
726
  * 创建工作流
723
727
  */
@@ -1092,6 +1092,12 @@ COS相关文档请查阅:https://cloud.tencent.com/document/product/436
1092
1092
  async SearchStdoutLog(req, cb) {
1093
1093
  return this.request("SearchStdoutLog", req, cb);
1094
1094
  }
1095
+ /**
1096
+ * 批量删除API
1097
+ */
1098
+ async DeleteGatewayApi(req, cb) {
1099
+ return this.request("DeleteGatewayApi", req, cb);
1100
+ }
1095
1101
  /**
1096
1102
  * 创建工作流
1097
1103
  */
@@ -9802,37 +9802,17 @@ export interface TsfPageClusterV2 {
9802
9802
  Content: Array<ClusterV2>;
9803
9803
  }
9804
9804
  /**
9805
- * DescribeUploadInfo请求参数结构体
9805
+ * DeleteGatewayApi返回参数结构体
9806
9806
  */
9807
- export interface DescribeUploadInfoRequest {
9808
- /**
9809
- * 应用ID
9810
- */
9811
- ApplicationId: string;
9812
- /**
9813
- * 程序包名
9814
- */
9815
- PkgName: string;
9816
- /**
9817
- * 程序包版本
9818
- */
9819
- PkgVersion: string;
9820
- /**
9821
- * 程序包类型
9822
- */
9823
- PkgType: string;
9807
+ export interface DeleteGatewayApiResponse {
9824
9808
  /**
9825
- * 程序包介绍
9826
- */
9827
- PkgDesc?: string;
9828
- /**
9829
- * 程序包仓库类型
9809
+ * 是否成功
9830
9810
  */
9831
- RepositoryType?: string;
9811
+ Result?: boolean;
9832
9812
  /**
9833
- * 程序包仓库id
9813
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9834
9814
  */
9835
- RepositoryId?: string;
9815
+ RequestId?: string;
9836
9816
  }
9837
9817
  /**
9838
9818
  * TSF基本资源信息概览
@@ -11881,6 +11861,39 @@ export interface StopTaskBatchRequest {
11881
11861
  */
11882
11862
  TaskId?: string;
11883
11863
  }
11864
+ /**
11865
+ * DescribeUploadInfo请求参数结构体
11866
+ */
11867
+ export interface DescribeUploadInfoRequest {
11868
+ /**
11869
+ * 应用ID
11870
+ */
11871
+ ApplicationId: string;
11872
+ /**
11873
+ * 程序包名
11874
+ */
11875
+ PkgName: string;
11876
+ /**
11877
+ * 程序包版本
11878
+ */
11879
+ PkgVersion: string;
11880
+ /**
11881
+ * 程序包类型
11882
+ */
11883
+ PkgType: string;
11884
+ /**
11885
+ * 程序包介绍
11886
+ */
11887
+ PkgDesc?: string;
11888
+ /**
11889
+ * 程序包仓库类型
11890
+ */
11891
+ RepositoryType?: string;
11892
+ /**
11893
+ * 程序包仓库id
11894
+ */
11895
+ RepositoryId?: string;
11896
+ }
11884
11897
  /**
11885
11898
  * 配置模板对象
11886
11899
  */
@@ -13100,6 +13113,19 @@ export interface DescribePathRewritesResponse {
13100
13113
  */
13101
13114
  RequestId?: string;
13102
13115
  }
13116
+ /**
13117
+ * DeleteGatewayApi请求参数结构体
13118
+ */
13119
+ export interface DeleteGatewayApiRequest {
13120
+ /**
13121
+ * 分组ID
13122
+ */
13123
+ GroupId: string;
13124
+ /**
13125
+ * Api ID 数组
13126
+ */
13127
+ ApiList: Array<string>;
13128
+ }
13103
13129
  /**
13104
13130
  * 添加实例到集群的结果
13105
13131
  */
@@ -3482,11 +3482,11 @@ export interface DescribeAssistantCidrResponse {
3482
3482
  * 符合条件的辅助CIDR数组。
3483
3483
  注意:此字段可能返回 null,表示取不到有效值。
3484
3484
  */
3485
- AssistantCidrSet: Array<AssistantCidr>;
3485
+ AssistantCidrSet?: Array<AssistantCidr>;
3486
3486
  /**
3487
3487
  * 符合条件的实例数量。
3488
3488
  */
3489
- TotalCount: number;
3489
+ TotalCount?: number;
3490
3490
  /**
3491
3491
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3492
3492
  */
@@ -8776,11 +8776,11 @@ export interface DescribeNetworkAclsResponse {
8776
8776
  /**
8777
8777
  * 实例详细信息列表。
8778
8778
  */
8779
- NetworkAclSet: Array<NetworkAcl>;
8779
+ NetworkAclSet?: Array<NetworkAcl>;
8780
8780
  /**
8781
8781
  * 符合条件的实例数量。
8782
8782
  */
8783
- TotalCount: number;
8783
+ TotalCount?: number;
8784
8784
  /**
8785
8785
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8786
8786
  */
@@ -9186,7 +9186,7 @@ export interface DescribeVpcPrivateIpAddressesResponse {
9186
9186
  /**
9187
9187
  * 内网`IP`地址信息列表。
9188
9188
  */
9189
- VpcPrivateIpAddressSet: Array<VpcPrivateIpAddress>;
9189
+ VpcPrivateIpAddressSet?: Array<VpcPrivateIpAddress>;
9190
9190
  /**
9191
9191
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9192
9192
  */
@@ -13224,6 +13224,7 @@ LOCAL_GATEWAY:本地网关。
13224
13224
  GatewayType: string;
13225
13225
  /**
13226
13226
  * 下一跳地址,这里只需要指定不同下一跳类型的网关ID,系统会自动匹配到下一跳地址。
13227
+ 特殊说明:GatewayType为NORMAL_CVM时,GatewayId填写实例的内网IP。
13227
13228
  */
13228
13229
  GatewayId: string;
13229
13230
  /**
@@ -458,6 +458,16 @@ it("ckafka.v20190819.FetchLatestDatahubMessageList", async function () {
458
458
  }
459
459
  })
460
460
 
461
+ it("ckafka.v20190819.DescribeTaskStatus", async function () {
462
+ try {
463
+ const data = await client.DescribeTaskStatus({})
464
+ expect(data).to.be.ok
465
+ } catch(error) {
466
+ expect(error.requestId).to.be.ok
467
+ expect(error.code).to.be.ok
468
+ }
469
+ })
470
+
461
471
  it("ckafka.v20190819.DeleteUser", async function () {
462
472
  try {
463
473
  const data = await client.DeleteUser({})
@@ -68,6 +68,16 @@ it("cynosdb.v20190107.RollBackCluster", async function () {
68
68
  }
69
69
  })
70
70
 
71
+ it("cynosdb.v20190107.IsolateInstance", async function () {
72
+ try {
73
+ const data = await client.IsolateInstance({})
74
+ expect(data).to.be.ok
75
+ } catch(error) {
76
+ expect(error.requestId).to.be.ok
77
+ expect(error.code).to.be.ok
78
+ }
79
+ })
80
+
71
81
  it("cynosdb.v20190107.DescribeProjectSecurityGroups", async function () {
72
82
  try {
73
83
  const data = await client.DescribeProjectSecurityGroups({})
@@ -118,6 +128,16 @@ it("cynosdb.v20190107.DescribeParamTemplates", async function () {
118
128
  }
119
129
  })
120
130
 
131
+ it("cynosdb.v20190107.SearchClusterTables", async function () {
132
+ try {
133
+ const data = await client.SearchClusterTables({})
134
+ expect(data).to.be.ok
135
+ } catch(error) {
136
+ expect(error.requestId).to.be.ok
137
+ expect(error.code).to.be.ok
138
+ }
139
+ })
140
+
121
141
  it("cynosdb.v20190107.DeleteBackup", async function () {
122
142
  try {
123
143
  const data = await client.DeleteBackup({})
@@ -508,9 +528,9 @@ it("cynosdb.v20190107.DescribeAuditRuleWithInstanceIds", async function () {
508
528
  }
509
529
  })
510
530
 
511
- it("cynosdb.v20190107.IsolateInstance", async function () {
531
+ it("cynosdb.v20190107.ExportInstanceErrorLogs", async function () {
512
532
  try {
513
- const data = await client.IsolateInstance({})
533
+ const data = await client.ExportInstanceErrorLogs({})
514
534
  expect(data).to.be.ok
515
535
  } catch(error) {
516
536
  expect(error.requestId).to.be.ok
@@ -748,9 +768,9 @@ it("cynosdb.v20190107.GrantAccountPrivileges", async function () {
748
768
  }
749
769
  })
750
770
 
751
- it("cynosdb.v20190107.SearchClusterTables", async function () {
771
+ it("cynosdb.v20190107.DescribeInstanceErrorLogs", async function () {
752
772
  try {
753
- const data = await client.SearchClusterTables({})
773
+ const data = await client.DescribeInstanceErrorLogs({})
754
774
  expect(data).to.be.ok
755
775
  } catch(error) {
756
776
  expect(error.requestId).to.be.ok
@@ -1788,6 +1788,16 @@ it("tsf.v20180326.SearchStdoutLog", async function () {
1788
1788
  }
1789
1789
  })
1790
1790
 
1791
+ it("tsf.v20180326.DeleteGatewayApi", async function () {
1792
+ try {
1793
+ const data = await client.DeleteGatewayApi({})
1794
+ expect(data).to.be.ok
1795
+ } catch(error) {
1796
+ expect(error.requestId).to.be.ok
1797
+ expect(error.code).to.be.ok
1798
+ }
1799
+ })
1800
+
1791
1801
  it("tsf.v20180326.CreateTaskFlow", async function () {
1792
1802
  try {
1793
1803
  const data = await client.CreateTaskFlow({})