tencentcloud-sdk-nodejs 4.0.985 → 4.0.986
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 +318 -0
- package/SERVICE_CHANGELOG.md +462 -77
- package/package.json +1 -1
- package/products.md +15 -14
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cdb/v20170320/cdb_client.ts +2 -1
- package/src/services/cdb/v20170320/cdb_models.ts +74 -1
- package/src/services/cfs/v20190719/cfs_models.ts +8 -0
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +34 -10
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +107 -41
- package/src/services/emr/v20190103/emr_models.ts +9 -4
- package/src/services/ess/v20201111/ess_models.ts +10 -0
- package/src/services/essbasic/v20210526/essbasic_models.ts +6 -1
- package/src/services/index.ts +1 -0
- package/src/services/lke/v20231130/lke_client.ts +126 -39
- package/src/services/lke/v20231130/lke_models.ts +464 -78
- package/src/services/privatedns/v20201028/privatedns_models.ts +26 -13
- package/src/services/tmt/v20180321/tmt_client.ts +1 -1
- package/src/services/trocket/v20230308/trocket_models.ts +12 -12
- package/src/services/vcube/index.ts +5 -0
- package/src/services/vcube/v20220410/index.ts +6 -0
- package/src/services/vcube/v20220410/vcube_client.ts +455 -0
- package/src/services/vcube/v20220410/vcube_models.ts +2125 -0
- package/src/services/vod/v20180717/vod_models.ts +17 -1
- package/src/services/vpc/v20170312/vpc_models.ts +12 -5
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +1 -1
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +73 -1
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +8 -0
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +11 -3
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +15 -3
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +102 -40
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +9 -4
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +10 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +6 -1
- package/tencentcloud/services/index.d.ts +1 -0
- package/tencentcloud/services/index.js +2 -0
- package/tencentcloud/services/lke/v20231130/lke_client.d.ts +41 -13
- package/tencentcloud/services/lke/v20231130/lke_client.js +60 -18
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +447 -78
- package/tencentcloud/services/privatedns/v20201028/privatedns_models.d.ts +26 -13
- package/tencentcloud/services/tmt/v20180321/tmt_client.d.ts +1 -1
- package/tencentcloud/services/tmt/v20180321/tmt_client.js +1 -1
- package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +12 -12
- package/tencentcloud/services/vcube/index.d.ts +6 -0
- package/tencentcloud/services/vcube/index.js +7 -0
- package/tencentcloud/services/vcube/v20220410/index.d.ts +6 -0
- package/tencentcloud/services/vcube/v20220410/index.js +9 -0
- package/tencentcloud/services/vcube/v20220410/vcube_client.d.ts +146 -0
- package/tencentcloud/services/vcube/v20220410/vcube_client.js +235 -0
- package/tencentcloud/services/vcube/v20220410/vcube_models.d.ts +2025 -0
- package/tencentcloud/services/vcube/v20220410/vcube_models.js +18 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +17 -1
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +12 -5
- package/test/cynosdb.v20190107.test.js +22 -2
- package/test/lke.v20231130.test.js +88 -18
- package/test/vcube.v20220410.test.js +361 -0
|
@@ -296,59 +296,64 @@ export interface PrivateZoneRecord {
|
|
|
296
296
|
/**
|
|
297
297
|
* 记录id
|
|
298
298
|
*/
|
|
299
|
-
RecordId
|
|
299
|
+
RecordId?: string
|
|
300
300
|
/**
|
|
301
301
|
* 私有域id: zone-xxxxxxxx
|
|
302
302
|
*/
|
|
303
|
-
ZoneId
|
|
303
|
+
ZoneId?: string
|
|
304
304
|
/**
|
|
305
305
|
* 子域名
|
|
306
306
|
*/
|
|
307
|
-
SubDomain
|
|
307
|
+
SubDomain?: string
|
|
308
308
|
/**
|
|
309
309
|
* 记录类型,可选的记录类型为:"A", "AAAA", "CNAME", "MX", "TXT", "PTR"
|
|
310
310
|
*/
|
|
311
|
-
RecordType
|
|
311
|
+
RecordType?: string
|
|
312
312
|
/**
|
|
313
313
|
* 记录值
|
|
314
314
|
*/
|
|
315
|
-
RecordValue
|
|
315
|
+
RecordValue?: string
|
|
316
316
|
/**
|
|
317
317
|
* 记录缓存时间,数值越小生效越快,取值1-86400s, 默认 600
|
|
318
318
|
*/
|
|
319
|
-
TTL
|
|
319
|
+
TTL?: number
|
|
320
320
|
/**
|
|
321
321
|
* MX优先级:记录类型为MX时必填。取值范围:5,10,15,20,30,40,50
|
|
322
322
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
323
323
|
*/
|
|
324
|
-
MX
|
|
324
|
+
MX?: number
|
|
325
325
|
/**
|
|
326
326
|
* 记录状态:ENABLED
|
|
327
327
|
*/
|
|
328
|
-
Status
|
|
328
|
+
Status?: string
|
|
329
329
|
/**
|
|
330
330
|
* 记录权重,值为1-100
|
|
331
331
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
332
332
|
*/
|
|
333
|
-
Weight
|
|
333
|
+
Weight?: number
|
|
334
334
|
/**
|
|
335
335
|
* 记录创建时间
|
|
336
336
|
*/
|
|
337
|
-
CreatedOn
|
|
337
|
+
CreatedOn?: string
|
|
338
338
|
/**
|
|
339
339
|
* 记录更新时间
|
|
340
340
|
*/
|
|
341
|
-
UpdatedOn
|
|
341
|
+
UpdatedOn?: string
|
|
342
342
|
/**
|
|
343
343
|
* 附加信息
|
|
344
344
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
345
345
|
*/
|
|
346
|
-
Extra
|
|
346
|
+
Extra?: string
|
|
347
347
|
/**
|
|
348
348
|
* 0暂停,1启用
|
|
349
349
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
350
350
|
*/
|
|
351
|
-
Enabled
|
|
351
|
+
Enabled?: number
|
|
352
|
+
/**
|
|
353
|
+
* 备注
|
|
354
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
355
|
+
*/
|
|
356
|
+
Remark?: string
|
|
352
357
|
}
|
|
353
358
|
|
|
354
359
|
/**
|
|
@@ -1111,6 +1116,10 @@ export interface CreatePrivateZoneRecordRequest {
|
|
|
1111
1116
|
* 记录缓存时间,数值越小生效越快,取值1-86400s, 默认 600
|
|
1112
1117
|
*/
|
|
1113
1118
|
TTL?: number
|
|
1119
|
+
/**
|
|
1120
|
+
* 备注
|
|
1121
|
+
*/
|
|
1122
|
+
Remark?: string
|
|
1114
1123
|
}
|
|
1115
1124
|
|
|
1116
1125
|
/**
|
|
@@ -1154,6 +1163,10 @@ export interface ModifyPrivateZoneRecordRequest {
|
|
|
1154
1163
|
* 记录缓存时间,数值越小生效越快,取值1-86400s, 默认 600
|
|
1155
1164
|
*/
|
|
1156
1165
|
TTL?: number
|
|
1166
|
+
/**
|
|
1167
|
+
* 备注
|
|
1168
|
+
*/
|
|
1169
|
+
Remark?: string
|
|
1157
1170
|
}
|
|
1158
1171
|
|
|
1159
1172
|
/**
|
|
@@ -115,11 +115,11 @@ export interface DescribeRoleListResponse {
|
|
|
115
115
|
*/
|
|
116
116
|
export interface DeleteMQTTTopicRequest {
|
|
117
117
|
/**
|
|
118
|
-
*
|
|
118
|
+
* 集群ID
|
|
119
119
|
*/
|
|
120
120
|
InstanceId: string
|
|
121
121
|
/**
|
|
122
|
-
*
|
|
122
|
+
* 主题名称
|
|
123
123
|
*/
|
|
124
124
|
Topic: string
|
|
125
125
|
}
|
|
@@ -479,17 +479,17 @@ export interface InstanceItemExtraInfo {
|
|
|
479
479
|
*/
|
|
480
480
|
MaxStorage?: number
|
|
481
481
|
/**
|
|
482
|
-
*
|
|
482
|
+
* 专享集群最大保留时间,单位:小时
|
|
483
483
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
484
484
|
*/
|
|
485
485
|
MaxRetention?: number
|
|
486
486
|
/**
|
|
487
|
-
*
|
|
487
|
+
* 专项集群最大保留时间,单位:小时
|
|
488
488
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
489
489
|
*/
|
|
490
490
|
MinRetention?: number
|
|
491
491
|
/**
|
|
492
|
-
* 4.0
|
|
492
|
+
* 4.0共享集群状态
|
|
493
493
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
494
494
|
*/
|
|
495
495
|
InstanceStatus?: number
|
|
@@ -1107,7 +1107,7 @@ export interface DeleteMQTTUserRequest {
|
|
|
1107
1107
|
*/
|
|
1108
1108
|
export interface ModifyMQTTInstanceCertBindingRequest {
|
|
1109
1109
|
/**
|
|
1110
|
-
*
|
|
1110
|
+
* 集群ID
|
|
1111
1111
|
*/
|
|
1112
1112
|
InstanceId: string
|
|
1113
1113
|
/**
|
|
@@ -2313,7 +2313,7 @@ export interface DeleteRoleResponse {
|
|
|
2313
2313
|
*/
|
|
2314
2314
|
export interface Filter {
|
|
2315
2315
|
/**
|
|
2316
|
-
*
|
|
2316
|
+
* 过滤条件参数名
|
|
2317
2317
|
*/
|
|
2318
2318
|
Name: string
|
|
2319
2319
|
/**
|
|
@@ -2337,7 +2337,7 @@ export interface ModifyMQTTTopicResponse {
|
|
|
2337
2337
|
*/
|
|
2338
2338
|
export interface DescribeMQTTTopicListRequest {
|
|
2339
2339
|
/**
|
|
2340
|
-
*
|
|
2340
|
+
* 集群ID
|
|
2341
2341
|
*/
|
|
2342
2342
|
InstanceId: string
|
|
2343
2343
|
/**
|
|
@@ -2863,11 +2863,11 @@ export interface DescribeTopicListResponse {
|
|
|
2863
2863
|
*/
|
|
2864
2864
|
export interface DescribeMQTTTopicRequest {
|
|
2865
2865
|
/**
|
|
2866
|
-
*
|
|
2866
|
+
* 集群ID
|
|
2867
2867
|
*/
|
|
2868
2868
|
InstanceId: string
|
|
2869
2869
|
/**
|
|
2870
|
-
*
|
|
2870
|
+
* 主题名称
|
|
2871
2871
|
*/
|
|
2872
2872
|
Topic: string
|
|
2873
2873
|
}
|
|
@@ -3247,11 +3247,11 @@ export interface DescribeProductSKUsResponse {
|
|
|
3247
3247
|
*/
|
|
3248
3248
|
export interface DescribeMQTTMessageListRequest {
|
|
3249
3249
|
/**
|
|
3250
|
-
*
|
|
3250
|
+
* 集群ID
|
|
3251
3251
|
*/
|
|
3252
3252
|
InstanceId: string
|
|
3253
3253
|
/**
|
|
3254
|
-
*
|
|
3254
|
+
* 主题名称
|
|
3255
3255
|
*/
|
|
3256
3256
|
Topic: string
|
|
3257
3257
|
/**
|
|
@@ -0,0 +1,455 @@
|
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-unused-vars */
|
|
2
|
+
/*
|
|
3
|
+
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
|
|
4
|
+
*
|
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
* you may not use this file except in compliance with the License.
|
|
7
|
+
* You may obtain a copy of the License at
|
|
8
|
+
*
|
|
9
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
*
|
|
11
|
+
* Unless required by applicable law or agreed to in writing,
|
|
12
|
+
* software distributed under the License is distributed on an
|
|
13
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
14
|
+
* KIND, either express or implied. See the License for the
|
|
15
|
+
* specific language governing permissions and limitations
|
|
16
|
+
* under the License.
|
|
17
|
+
*/
|
|
18
|
+
import { AbstractClient } from "../../../common/abstract_client"
|
|
19
|
+
import { ClientConfig } from "../../../common/interface"
|
|
20
|
+
import {
|
|
21
|
+
DescribeVcubeApplicationAndLicenseRequest,
|
|
22
|
+
CreateLicenseResponse,
|
|
23
|
+
CreateApplicationAndVideoResponse,
|
|
24
|
+
CreateApplicationAndBindLicenseResponse,
|
|
25
|
+
ModifyFormalApplicationResponse,
|
|
26
|
+
XMagicResourceSimpleInfo,
|
|
27
|
+
DescribeXMagicResourceListRequest,
|
|
28
|
+
DescribeVcubeResourcesListRequest,
|
|
29
|
+
DescribeTrialFeatureResponse,
|
|
30
|
+
CreateTrialLicenseResponse,
|
|
31
|
+
DescribeUserConfigResponse,
|
|
32
|
+
RenewTestXMagicResponse,
|
|
33
|
+
RenewVideoResponse,
|
|
34
|
+
UpdateXMagicRequest,
|
|
35
|
+
DescribeVcubeResourcesRequest,
|
|
36
|
+
CreateLicenseRequest,
|
|
37
|
+
CreateTrialApplicationAndLicenseRequest,
|
|
38
|
+
ModifyFormalApplicationRequest,
|
|
39
|
+
DescribeLicenseListRequest,
|
|
40
|
+
DescribeSTSRequest,
|
|
41
|
+
RenewLicenseRequest,
|
|
42
|
+
LicenseResourceInfo,
|
|
43
|
+
LicenseResourceSimpleInfo,
|
|
44
|
+
RenewLicenseResponse,
|
|
45
|
+
DescribeVcubeApplicationAndPlayListRequest,
|
|
46
|
+
XMagicTrial,
|
|
47
|
+
DescribeVcubeApplicationAndXMagicListRequest,
|
|
48
|
+
DescribeVcubeResourcesListResponse,
|
|
49
|
+
License,
|
|
50
|
+
DescribeLicenseListResponse,
|
|
51
|
+
ModifyApplicationResponse,
|
|
52
|
+
ModifyXMagicRequest,
|
|
53
|
+
XMagicResource,
|
|
54
|
+
RenewResource,
|
|
55
|
+
DescribeVcubeResourcesResponse,
|
|
56
|
+
DescribeNewsRequest,
|
|
57
|
+
CreateTestXMagicResponse,
|
|
58
|
+
DescribeUserConfigRequest,
|
|
59
|
+
RenewTestXMagicRequest,
|
|
60
|
+
UpdateXMagicResponse,
|
|
61
|
+
ModifyLicenseRequest,
|
|
62
|
+
CreateActivityLicenseResponse,
|
|
63
|
+
UpdateTestXMagicResponse,
|
|
64
|
+
CreateTrialApplicationAndLicenseResponse,
|
|
65
|
+
DescribeXMagicResourceRequest,
|
|
66
|
+
ModifyPresetApplicationResponse,
|
|
67
|
+
CreateXMagicResponse,
|
|
68
|
+
ModifyPresetApplicationRequest,
|
|
69
|
+
AppInfo,
|
|
70
|
+
DescribeNewsResponse,
|
|
71
|
+
DescribeSTSResponse,
|
|
72
|
+
Package,
|
|
73
|
+
DescribeXMagicResourceResponse,
|
|
74
|
+
DescribeVcubeApplicationAndPlayListResponse,
|
|
75
|
+
VideoFeature,
|
|
76
|
+
Feature,
|
|
77
|
+
ModifyTrialLicenseResponse,
|
|
78
|
+
UpdateTrialLicenseResponse,
|
|
79
|
+
ModifyApplicationRequest,
|
|
80
|
+
CreateXMagicRequest,
|
|
81
|
+
RenewVideoRequest,
|
|
82
|
+
CreateApplicationAndVideoRequest,
|
|
83
|
+
DescribeVcubeApplicationAndLicenseResponse,
|
|
84
|
+
CreateTestXMagicRequest,
|
|
85
|
+
DescribeVcubeApplicationAndXMagicListResponse,
|
|
86
|
+
CreateTrialLicenseRequest,
|
|
87
|
+
XMagicSimpleInfo,
|
|
88
|
+
XMagicInfo,
|
|
89
|
+
DescribeFeatureListRequest,
|
|
90
|
+
ApplicationInfo,
|
|
91
|
+
CreateActivityLicenseRequest,
|
|
92
|
+
UpdateTrialLicenseRequest,
|
|
93
|
+
UpdateTestXMagicRequest,
|
|
94
|
+
ModifyLicenseResponse,
|
|
95
|
+
CreateApplicationAndWebPlayerLicenseResponse,
|
|
96
|
+
ModifyTrialLicenseRequest,
|
|
97
|
+
XMagicFeature,
|
|
98
|
+
ModifyXMagicResponse,
|
|
99
|
+
CreateApplicationAndWebPlayerLicenseRequest,
|
|
100
|
+
CreateApplicationAndBindLicenseRequest,
|
|
101
|
+
NewsInfo,
|
|
102
|
+
DescribeFeatureListResponse,
|
|
103
|
+
DescribeXMagicResourceListResponse,
|
|
104
|
+
DescribeTrialFeatureRequest,
|
|
105
|
+
} from "./vcube_models"
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* vcube client
|
|
109
|
+
* @class
|
|
110
|
+
*/
|
|
111
|
+
export class Client extends AbstractClient {
|
|
112
|
+
constructor(clientConfig: ClientConfig) {
|
|
113
|
+
super("vcube.tencentcloudapi.com", "2022-04-10", clientConfig)
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* 续期测试license
|
|
118
|
+
*/
|
|
119
|
+
async ModifyTrialLicense(
|
|
120
|
+
req: ModifyTrialLicenseRequest,
|
|
121
|
+
cb?: (error: string, rep: ModifyTrialLicenseResponse) => void
|
|
122
|
+
): Promise<ModifyTrialLicenseResponse> {
|
|
123
|
+
return this.request("ModifyTrialLicense", req, cb)
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* 续期测试版优图美视
|
|
128
|
+
*/
|
|
129
|
+
async RenewTestXMagic(
|
|
130
|
+
req: RenewTestXMagicRequest,
|
|
131
|
+
cb?: (error: string, rep: RenewTestXMagicResponse) => void
|
|
132
|
+
): Promise<RenewTestXMagicResponse> {
|
|
133
|
+
return this.request("RenewTestXMagic", req, cb)
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* 查询视立方 license 资源,所有的资源包
|
|
138
|
+
*/
|
|
139
|
+
async DescribeVcubeResources(
|
|
140
|
+
req: DescribeVcubeResourcesRequest,
|
|
141
|
+
cb?: (error: string, rep: DescribeVcubeResourcesResponse) => void
|
|
142
|
+
): Promise<DescribeVcubeResourcesResponse> {
|
|
143
|
+
return this.request("DescribeVcubeResources", req, cb)
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* 创建应用并绑定license或者XMagic
|
|
148
|
+
*/
|
|
149
|
+
async CreateApplicationAndBindLicense(
|
|
150
|
+
req: CreateApplicationAndBindLicenseRequest,
|
|
151
|
+
cb?: (error: string, rep: CreateApplicationAndBindLicenseResponse) => void
|
|
152
|
+
): Promise<CreateApplicationAndBindLicenseResponse> {
|
|
153
|
+
return this.request("CreateApplicationAndBindLicense", req, cb)
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* 创建 web 播放器基础版
|
|
158
|
+
*/
|
|
159
|
+
async CreateApplicationAndWebPlayerLicense(
|
|
160
|
+
req: CreateApplicationAndWebPlayerLicenseRequest,
|
|
161
|
+
cb?: (error: string, rep: CreateApplicationAndWebPlayerLicenseResponse) => void
|
|
162
|
+
): Promise<CreateApplicationAndWebPlayerLicenseResponse> {
|
|
163
|
+
return this.request("CreateApplicationAndWebPlayerLicense", req, cb)
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* 用途美视资源包用于开通正式优图美视
|
|
168
|
+
*/
|
|
169
|
+
async DescribeXMagicResource(
|
|
170
|
+
req: DescribeXMagicResourceRequest,
|
|
171
|
+
cb?: (error: string, rep: DescribeXMagicResourceResponse) => void
|
|
172
|
+
): Promise<DescribeXMagicResourceResponse> {
|
|
173
|
+
return this.request("DescribeXMagicResource", req, cb)
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
/**
|
|
177
|
+
* 编辑更改应用
|
|
178
|
+
*/
|
|
179
|
+
async ModifyApplication(
|
|
180
|
+
req: ModifyApplicationRequest,
|
|
181
|
+
cb?: (error: string, rep: ModifyApplicationResponse) => void
|
|
182
|
+
): Promise<ModifyApplicationResponse> {
|
|
183
|
+
return this.request("ModifyApplication", req, cb)
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
/**
|
|
187
|
+
* 修改正式应用的包名称
|
|
188
|
+
*/
|
|
189
|
+
async ModifyFormalApplication(
|
|
190
|
+
req: ModifyFormalApplicationRequest,
|
|
191
|
+
cb?: (error: string, rep: ModifyFormalApplicationResponse) => void
|
|
192
|
+
): Promise<ModifyFormalApplicationResponse> {
|
|
193
|
+
return this.request("ModifyFormalApplication", req, cb)
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* 查询用户个性配置
|
|
198
|
+
*/
|
|
199
|
+
async DescribeUserConfig(
|
|
200
|
+
req?: DescribeUserConfigRequest,
|
|
201
|
+
cb?: (error: string, rep: DescribeUserConfigResponse) => void
|
|
202
|
+
): Promise<DescribeUserConfigResponse> {
|
|
203
|
+
return this.request("DescribeUserConfig", req, cb)
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* 获取临时秘钥,用于图片,特效包上传
|
|
208
|
+
*/
|
|
209
|
+
async DescribeSTS(
|
|
210
|
+
req?: DescribeSTSRequest,
|
|
211
|
+
cb?: (error: string, rep: DescribeSTSResponse) => void
|
|
212
|
+
): Promise<DescribeSTSResponse> {
|
|
213
|
+
return this.request("DescribeSTS", req, cb)
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* 修改内置应用包名
|
|
218
|
+
*/
|
|
219
|
+
async ModifyPresetApplication(
|
|
220
|
+
req: ModifyPresetApplicationRequest,
|
|
221
|
+
cb?: (error: string, rep: ModifyPresetApplicationResponse) => void
|
|
222
|
+
): Promise<ModifyPresetApplicationResponse> {
|
|
223
|
+
return this.request("ModifyPresetApplication", req, cb)
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
* 查询视立方 license 资源,包括资源包赠送和直接购买的资源
|
|
228
|
+
*/
|
|
229
|
+
async DescribeVcubeResourcesList(
|
|
230
|
+
req: DescribeVcubeResourcesListRequest,
|
|
231
|
+
cb?: (error: string, rep: DescribeVcubeResourcesListResponse) => void
|
|
232
|
+
): Promise<DescribeVcubeResourcesListResponse> {
|
|
233
|
+
return this.request("DescribeVcubeResourcesList", req, cb)
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* 开通测试license
|
|
238
|
+
*/
|
|
239
|
+
async CreateTrialLicense(
|
|
240
|
+
req: CreateTrialLicenseRequest,
|
|
241
|
+
cb?: (error: string, rep: CreateTrialLicenseResponse) => void
|
|
242
|
+
): Promise<CreateTrialLicenseResponse> {
|
|
243
|
+
return this.request("CreateTrialLicense", req, cb)
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* 正式license 升降配,点播精简版、基础版
|
|
248
|
+
*/
|
|
249
|
+
async ModifyLicense(
|
|
250
|
+
req: ModifyLicenseRequest,
|
|
251
|
+
cb?: (error: string, rep: ModifyLicenseResponse) => void
|
|
252
|
+
): Promise<ModifyLicenseResponse> {
|
|
253
|
+
return this.request("ModifyLicense", req, cb)
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* 查询用户license, 按照应用分类
|
|
258
|
+
*/
|
|
259
|
+
async DescribeVcubeApplicationAndLicense(
|
|
260
|
+
req: DescribeVcubeApplicationAndLicenseRequest,
|
|
261
|
+
cb?: (error: string, rep: DescribeVcubeApplicationAndLicenseResponse) => void
|
|
262
|
+
): Promise<DescribeVcubeApplicationAndLicenseResponse> {
|
|
263
|
+
return this.request("DescribeVcubeApplicationAndLicense", req, cb)
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* 将测试xmagic升级到正式版
|
|
268
|
+
*/
|
|
269
|
+
async UpdateTestXMagic(
|
|
270
|
+
req: UpdateTestXMagicRequest,
|
|
271
|
+
cb?: (error: string, rep: UpdateTestXMagicResponse) => void
|
|
272
|
+
): Promise<UpdateTestXMagicResponse> {
|
|
273
|
+
return this.request("UpdateTestXMagic", req, cb)
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* 更新优图美视的申请信息 Status 为2,3的时候可用
|
|
278
|
+
*/
|
|
279
|
+
async UpdateXMagic(
|
|
280
|
+
req: UpdateXMagicRequest,
|
|
281
|
+
cb?: (error: string, rep: UpdateXMagicResponse) => void
|
|
282
|
+
): Promise<UpdateXMagicResponse> {
|
|
283
|
+
return this.request("UpdateXMagic", req, cb)
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* 测试 license 升级为正式 license
|
|
288
|
+
*/
|
|
289
|
+
async UpdateTrialLicense(
|
|
290
|
+
req: UpdateTrialLicenseRequest,
|
|
291
|
+
cb?: (error: string, rep: UpdateTrialLicenseResponse) => void
|
|
292
|
+
): Promise<UpdateTrialLicenseResponse> {
|
|
293
|
+
return this.request("UpdateTrialLicense", req, cb)
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* 查询用户优图license, 按照应用分类
|
|
298
|
+
*/
|
|
299
|
+
async DescribeVcubeApplicationAndXMagicList(
|
|
300
|
+
req: DescribeVcubeApplicationAndXMagicListRequest,
|
|
301
|
+
cb?: (error: string, rep: DescribeVcubeApplicationAndXMagicListResponse) => void
|
|
302
|
+
): Promise<DescribeVcubeApplicationAndXMagicListResponse> {
|
|
303
|
+
return this.request("DescribeVcubeApplicationAndXMagicList", req, cb)
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* 查询用户点播直播等license, 按照应用分类,国际站专用
|
|
308
|
+
*/
|
|
309
|
+
async DescribeVcubeApplicationAndPlayList(
|
|
310
|
+
req: DescribeVcubeApplicationAndPlayListRequest,
|
|
311
|
+
cb?: (error: string, rep: DescribeVcubeApplicationAndPlayListResponse) => void
|
|
312
|
+
): Promise<DescribeVcubeApplicationAndPlayListResponse> {
|
|
313
|
+
return this.request("DescribeVcubeApplicationAndPlayList", req, cb)
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* 总览页查询临期License列表,和统计数据
|
|
318
|
+
*/
|
|
319
|
+
async DescribeLicenseList(
|
|
320
|
+
req?: DescribeLicenseListRequest,
|
|
321
|
+
cb?: (error: string, rep: DescribeLicenseListResponse) => void
|
|
322
|
+
): Promise<DescribeLicenseListResponse> {
|
|
323
|
+
return this.request("DescribeLicenseList", req, cb)
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
/**
|
|
327
|
+
* 创建活动license
|
|
328
|
+
*/
|
|
329
|
+
async CreateActivityLicense(
|
|
330
|
+
req: CreateActivityLicenseRequest,
|
|
331
|
+
cb?: (error: string, rep: CreateActivityLicenseResponse) => void
|
|
332
|
+
): Promise<CreateActivityLicenseResponse> {
|
|
333
|
+
return this.request("CreateActivityLicense", req, cb)
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* 绑定license
|
|
338
|
+
*/
|
|
339
|
+
async CreateLicense(
|
|
340
|
+
req: CreateLicenseRequest,
|
|
341
|
+
cb?: (error: string, rep: CreateLicenseResponse) => void
|
|
342
|
+
): Promise<CreateLicenseResponse> {
|
|
343
|
+
return this.request("CreateLicense", req, cb)
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* 申请开通测试版优图
|
|
348
|
+
*/
|
|
349
|
+
async CreateTestXMagic(
|
|
350
|
+
req: CreateTestXMagicRequest,
|
|
351
|
+
cb?: (error: string, rep: CreateTestXMagicResponse) => void
|
|
352
|
+
): Promise<CreateTestXMagicResponse> {
|
|
353
|
+
return this.request("CreateTestXMagic", req, cb)
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
/**
|
|
357
|
+
* 续期国际站视频播放功能和中国站web基础版
|
|
358
|
+
*/
|
|
359
|
+
async RenewVideo(
|
|
360
|
+
req: RenewVideoRequest,
|
|
361
|
+
cb?: (error: string, rep: RenewVideoResponse) => void
|
|
362
|
+
): Promise<RenewVideoResponse> {
|
|
363
|
+
return this.request("RenewVideo", req, cb)
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
/**
|
|
367
|
+
* 正式license 续期与变更有效期
|
|
368
|
+
*/
|
|
369
|
+
async RenewLicense(
|
|
370
|
+
req: RenewLicenseRequest,
|
|
371
|
+
cb?: (error: string, rep: RenewLicenseResponse) => void
|
|
372
|
+
): Promise<RenewLicenseResponse> {
|
|
373
|
+
return this.request("RenewLicense", req, cb)
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* 创建测试应用并开通测试 license
|
|
378
|
+
*/
|
|
379
|
+
async CreateTrialApplicationAndLicense(
|
|
380
|
+
req: CreateTrialApplicationAndLicenseRequest,
|
|
381
|
+
cb?: (error: string, rep: CreateTrialApplicationAndLicenseResponse) => void
|
|
382
|
+
): Promise<CreateTrialApplicationAndLicenseResponse> {
|
|
383
|
+
return this.request("CreateTrialApplicationAndLicense", req, cb)
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
/**
|
|
387
|
+
* 用于优图美视资源列表展示
|
|
388
|
+
*/
|
|
389
|
+
async DescribeXMagicResourceList(
|
|
390
|
+
req: DescribeXMagicResourceListRequest,
|
|
391
|
+
cb?: (error: string, rep: DescribeXMagicResourceListResponse) => void
|
|
392
|
+
): Promise<DescribeXMagicResourceListResponse> {
|
|
393
|
+
return this.request("DescribeXMagicResourceList", req, cb)
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* 查询测试应用可以开通的功能
|
|
398
|
+
*/
|
|
399
|
+
async DescribeTrialFeature(
|
|
400
|
+
req?: DescribeTrialFeatureRequest,
|
|
401
|
+
cb?: (error: string, rep: DescribeTrialFeatureResponse) => void
|
|
402
|
+
): Promise<DescribeTrialFeatureResponse> {
|
|
403
|
+
return this.request("DescribeTrialFeature", req, cb)
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
/**
|
|
407
|
+
* x08开通正式版优图美视功能,针对已经有Application的情况
|
|
408
|
+
*/
|
|
409
|
+
async CreateXMagic(
|
|
410
|
+
req: CreateXMagicRequest,
|
|
411
|
+
cb?: (error: string, rep: CreateXMagicResponse) => void
|
|
412
|
+
): Promise<CreateXMagicResponse> {
|
|
413
|
+
return this.request("CreateXMagic", req, cb)
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* 创建应用和视频播放license 目前只有国际站可以用
|
|
418
|
+
*/
|
|
419
|
+
async CreateApplicationAndVideo(
|
|
420
|
+
req: CreateApplicationAndVideoRequest,
|
|
421
|
+
cb?: (error: string, rep: CreateApplicationAndVideoResponse) => void
|
|
422
|
+
): Promise<CreateApplicationAndVideoResponse> {
|
|
423
|
+
return this.request("CreateApplicationAndVideo", req, cb)
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* 查询功能列表
|
|
428
|
+
*/
|
|
429
|
+
async DescribeFeatureList(
|
|
430
|
+
req?: DescribeFeatureListRequest,
|
|
431
|
+
cb?: (error: string, rep: DescribeFeatureListResponse) => void
|
|
432
|
+
): Promise<DescribeFeatureListResponse> {
|
|
433
|
+
return this.request("DescribeFeatureList", req, cb)
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* 查询产品动态
|
|
438
|
+
*/
|
|
439
|
+
async DescribeNews(
|
|
440
|
+
req: DescribeNewsRequest,
|
|
441
|
+
cb?: (error: string, rep: DescribeNewsResponse) => void
|
|
442
|
+
): Promise<DescribeNewsResponse> {
|
|
443
|
+
return this.request("DescribeNews", req, cb)
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* 使用一个腾讯特效资源,更新现在的腾讯特效license,license功能和到期时间会以新的资源为准,老资源会被替换下来
|
|
448
|
+
*/
|
|
449
|
+
async ModifyXMagic(
|
|
450
|
+
req: ModifyXMagicRequest,
|
|
451
|
+
cb?: (error: string, rep: ModifyXMagicResponse) => void
|
|
452
|
+
): Promise<ModifyXMagicResponse> {
|
|
453
|
+
return this.request("ModifyXMagic", req, cb)
|
|
454
|
+
}
|
|
455
|
+
}
|