tencentcloud-sdk-nodejs 4.0.281 → 4.0.285
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/CHANGELOG.md +258 -0
- package/SERVICE_CHANGELOG.md +143 -80
- package/package.json +1 -1
- package/products.md +9 -8
- package/src/common/sdk_version.ts +1 -1
- package/src/services/ame/v20190916/ame_client.ts +121 -64
- package/src/services/ame/v20190916/ame_models.ts +1141 -827
- package/src/services/cam/v20190116/cam_models.ts +6 -0
- package/src/services/ckafka/v20190819/ckafka_client.ts +12 -0
- package/src/services/ckafka/v20190819/ckafka_models.ts +30 -0
- package/src/services/cme/v20191029/cme_client.ts +17 -7
- package/src/services/cme/v20191029/cme_models.ts +415 -139
- package/src/services/index.ts +1 -0
- package/src/services/lowcode/index.ts +5 -0
- package/src/services/lowcode/v20210108/index.ts +6 -0
- package/src/services/lowcode/v20210108/lowcode_client.ts +48 -0
- package/src/services/lowcode/v20210108/lowcode_models.ts +359 -0
- package/src/services/partners/v20180321/partners_models.ts +4 -4
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ame/v20190916/ame_client.d.ts +24 -5
- package/tencentcloud/services/ame/v20190916/ame_client.js +33 -6
- package/tencentcloud/services/ame/v20190916/ame_models.d.ts +1006 -740
- package/tencentcloud/services/cam/v20190116/cam_models.d.ts +5 -0
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.d.ts +5 -1
- package/tencentcloud/services/ckafka/v20190819/ckafka_client.js +6 -0
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +26 -0
- package/tencentcloud/services/cme/v20191029/cme_client.d.ts +1 -1
- package/tencentcloud/services/cme/v20191029/cme_models.d.ts +359 -123
- package/tencentcloud/services/index.d.ts +1 -0
- package/tencentcloud/services/index.js +2 -0
- package/tencentcloud/services/lowcode/index.d.ts +6 -0
- package/tencentcloud/services/lowcode/index.js +7 -0
- package/tencentcloud/services/lowcode/v20210108/index.d.ts +6 -0
- package/tencentcloud/services/lowcode/v20210108/index.js +9 -0
- package/tencentcloud/services/lowcode/v20210108/lowcode_client.d.ts +14 -0
- package/tencentcloud/services/lowcode/v20210108/lowcode_client.js +37 -0
- package/tencentcloud/services/lowcode/v20210108/lowcode_models.d.ts +287 -0
- package/tencentcloud/services/lowcode/v20210108/lowcode_models.js +18 -0
- package/tencentcloud/services/partners/v20180321/partners_models.d.ts +4 -4
- package/test/ame.v20190916.test.js +44 -4
- package/test/ckafka.v20190819.test.js +10 -0
- package/test/lowcode.v20210108.test.js +31 -0
|
@@ -64,6 +64,7 @@ import {
|
|
|
64
64
|
ModifyInstanceAttributesResponse,
|
|
65
65
|
CreatePartitionResponse,
|
|
66
66
|
ClusterInfo,
|
|
67
|
+
DeleteGroupRequest,
|
|
67
68
|
DescribeConsumerGroupRequest,
|
|
68
69
|
DeleteUserResponse,
|
|
69
70
|
CreateAclRequest,
|
|
@@ -147,6 +148,7 @@ import {
|
|
|
147
148
|
ConsumerRecord,
|
|
148
149
|
ModifyGroupOffsetsRequest,
|
|
149
150
|
BatchModifyTopicAttributesRequest,
|
|
151
|
+
DeleteGroupResponse,
|
|
150
152
|
CreateTopicIpWhiteListRequest,
|
|
151
153
|
Route,
|
|
152
154
|
AclRuleInfo,
|
|
@@ -293,6 +295,16 @@ export class Client extends AbstractClient {
|
|
|
293
295
|
return this.request("ModifyInstanceAttributes", req, cb)
|
|
294
296
|
}
|
|
295
297
|
|
|
298
|
+
/**
|
|
299
|
+
* 删除消费组
|
|
300
|
+
*/
|
|
301
|
+
async DeleteGroup(
|
|
302
|
+
req: DeleteGroupRequest,
|
|
303
|
+
cb?: (error: string, rep: DeleteGroupResponse) => void
|
|
304
|
+
): Promise<DeleteGroupResponse> {
|
|
305
|
+
return this.request("DeleteGroup", req, cb)
|
|
306
|
+
}
|
|
307
|
+
|
|
296
308
|
/**
|
|
297
309
|
* 查询用户信息
|
|
298
310
|
*/
|
|
@@ -1068,6 +1068,21 @@ export interface ClusterInfo {
|
|
|
1068
1068
|
ZoneIds: Array<number>
|
|
1069
1069
|
}
|
|
1070
1070
|
|
|
1071
|
+
/**
|
|
1072
|
+
* DeleteGroup请求参数结构体
|
|
1073
|
+
*/
|
|
1074
|
+
export interface DeleteGroupRequest {
|
|
1075
|
+
/**
|
|
1076
|
+
* 实例Id
|
|
1077
|
+
*/
|
|
1078
|
+
InstanceId: string
|
|
1079
|
+
|
|
1080
|
+
/**
|
|
1081
|
+
* 消费分组
|
|
1082
|
+
*/
|
|
1083
|
+
Group: string
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1071
1086
|
/**
|
|
1072
1087
|
* DescribeConsumerGroup请求参数结构体
|
|
1073
1088
|
*/
|
|
@@ -3190,6 +3205,21 @@ export interface BatchModifyTopicAttributesRequest {
|
|
|
3190
3205
|
Topic: Array<BatchModifyTopicInfo>
|
|
3191
3206
|
}
|
|
3192
3207
|
|
|
3208
|
+
/**
|
|
3209
|
+
* DeleteGroup返回参数结构体
|
|
3210
|
+
*/
|
|
3211
|
+
export interface DeleteGroupResponse {
|
|
3212
|
+
/**
|
|
3213
|
+
* 返回结果
|
|
3214
|
+
*/
|
|
3215
|
+
Result: JgwOperateResponse
|
|
3216
|
+
|
|
3217
|
+
/**
|
|
3218
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3219
|
+
*/
|
|
3220
|
+
RequestId?: string
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3193
3223
|
/**
|
|
3194
3224
|
* CreateTopicIpWhiteList请求参数结构体
|
|
3195
3225
|
*/
|
|
@@ -19,9 +19,11 @@ import { AbstractClient } from "../../../common/abstract_client"
|
|
|
19
19
|
import { ClientConfig } from "../../../common/interface"
|
|
20
20
|
import {
|
|
21
21
|
AudioStreamInfo,
|
|
22
|
+
ClassDeletedEvent,
|
|
22
23
|
ModifyMaterialResponse,
|
|
23
24
|
DeleteProjectRequest,
|
|
24
25
|
ExportVideoByVideoSegmentationDataResponse,
|
|
26
|
+
MaterialDeletedEvent,
|
|
25
27
|
ImportMaterialResponse,
|
|
26
28
|
StreamConnectProjectInput,
|
|
27
29
|
DescribeAccountsRequest,
|
|
@@ -43,11 +45,12 @@ import {
|
|
|
43
45
|
CopyProjectRequest,
|
|
44
46
|
SearchScope,
|
|
45
47
|
RevokeResourceAuthorizationResponse,
|
|
46
|
-
|
|
48
|
+
DescribeTasksResponse,
|
|
47
49
|
ProjectInfo,
|
|
48
50
|
VideoTrackItem,
|
|
49
51
|
DeleteTeamRequest,
|
|
50
52
|
DescribeTeamsRequest,
|
|
53
|
+
PlatformInfo,
|
|
51
54
|
LinkMaterial,
|
|
52
55
|
SwitcherProjectInput,
|
|
53
56
|
FlattenListMediaRequest,
|
|
@@ -68,7 +71,6 @@ import {
|
|
|
68
71
|
StorageNewFileCreatedEvent,
|
|
69
72
|
DescribeLoginStatusRequest,
|
|
70
73
|
MediaTrack,
|
|
71
|
-
DeleteVideoEncodingPresetResponse,
|
|
72
74
|
DeleteLoginStatusResponse,
|
|
73
75
|
WeiboPublishInfo,
|
|
74
76
|
Resource,
|
|
@@ -80,8 +82,9 @@ import {
|
|
|
80
82
|
StreamConnectOutputInfo,
|
|
81
83
|
ParseEventRequest,
|
|
82
84
|
EmptyTrackItem,
|
|
83
|
-
|
|
85
|
+
ClassMovedEvent,
|
|
84
86
|
DeleteVideoEncodingPresetRequest,
|
|
87
|
+
MaterialImportedEvent,
|
|
85
88
|
ModifyVideoEncodingPresetResponse,
|
|
86
89
|
DescribeJoinTeamsRequest,
|
|
87
90
|
VideoSegmentationProjectInput,
|
|
@@ -90,11 +93,13 @@ import {
|
|
|
90
93
|
VideoEditProjectInput,
|
|
91
94
|
DeleteProjectResponse,
|
|
92
95
|
VideoEncodingPresetVideoSetting,
|
|
96
|
+
MediaImageSpriteInfo,
|
|
93
97
|
DeleteClassRequest,
|
|
94
98
|
CreateLinkRequest,
|
|
95
99
|
CreateClassRequest,
|
|
96
100
|
DescribeMaterialsResponse,
|
|
97
101
|
CreateVideoEncodingPresetResponse,
|
|
102
|
+
VideoEncodingPresetVideoSettingForUpdate,
|
|
98
103
|
GrantResourceAuthorizationResponse,
|
|
99
104
|
SwitcherPgmOutputConfig,
|
|
100
105
|
CMEExportInfo,
|
|
@@ -120,7 +125,7 @@ import {
|
|
|
120
125
|
CreateTeamResponse,
|
|
121
126
|
ModifyTeamRequest,
|
|
122
127
|
ModifyTeamMemberRequest,
|
|
123
|
-
|
|
128
|
+
MaterialMovedEvent,
|
|
124
129
|
CreateTeamRequest,
|
|
125
130
|
MaterialBasicInfo,
|
|
126
131
|
ResourceInfo,
|
|
@@ -138,12 +143,14 @@ import {
|
|
|
138
143
|
TimeRange,
|
|
139
144
|
ThirdPartyPublishInfo,
|
|
140
145
|
ListMediaRequest,
|
|
141
|
-
|
|
146
|
+
DeleteVideoEncodingPresetResponse,
|
|
142
147
|
VodPullInputInfo,
|
|
143
148
|
ModifyTeamResponse,
|
|
144
149
|
DeleteLoginStatusRequest,
|
|
145
150
|
GenerateVideoSegmentationSchemeByAiRequest,
|
|
146
151
|
LiveStreamClipProjectInput,
|
|
152
|
+
MaterialModifiedEvent,
|
|
153
|
+
HandleStreamConnectProjectResponse,
|
|
147
154
|
DeleteTeamMembersRequest,
|
|
148
155
|
ExportVideoByTemplateRequest,
|
|
149
156
|
DescribePlatformsRequest,
|
|
@@ -156,6 +163,7 @@ import {
|
|
|
156
163
|
AccountInfo,
|
|
157
164
|
DescribeProjectsRequest,
|
|
158
165
|
DescribeLoginStatusResponse,
|
|
166
|
+
MaterialAddedEvent,
|
|
159
167
|
CreateVideoEncodingPresetRequest,
|
|
160
168
|
ProjectStreamConnectStatusChangedEvent,
|
|
161
169
|
DescribeJoinTeamsResponse,
|
|
@@ -173,7 +181,7 @@ import {
|
|
|
173
181
|
ModifyVideoEncodingPresetRequest,
|
|
174
182
|
TeamMemberInfo,
|
|
175
183
|
CosPublishInputInfo,
|
|
176
|
-
|
|
184
|
+
HandleStreamConnectProjectRequest,
|
|
177
185
|
ModifyProjectRequest,
|
|
178
186
|
MaterialInfo,
|
|
179
187
|
DescribeVideoEncodingPresetsRequest,
|
|
@@ -187,13 +195,15 @@ import {
|
|
|
187
195
|
DeleteClassResponse,
|
|
188
196
|
ExportVideoEditProjectResponse,
|
|
189
197
|
MediaMetaData,
|
|
198
|
+
ProjectSwitcherStatusChangedEvent,
|
|
190
199
|
ExternalMediaInfo,
|
|
191
200
|
LinkMaterialInfo,
|
|
192
201
|
ExportVideoByEditorTrackDataResponse,
|
|
193
|
-
|
|
202
|
+
ClassCreatedEvent,
|
|
194
203
|
VideoEncodingPreset,
|
|
195
204
|
ImportMaterialRequest,
|
|
196
205
|
TextReplacementInfo,
|
|
206
|
+
ImportMediaInfo,
|
|
197
207
|
DescribeMaterialsRequest,
|
|
198
208
|
} from "./cme_models"
|
|
199
209
|
|