tencentcloud-sdk-nodejs 4.1.276 → 4.1.278
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/es/common/sdk_version.js +1 -1
- package/es/services/dlc/v20210125/dlc_client.js +9 -0
- package/es/services/mqtt/v20240516/mqtt_client.js +15 -6
- package/es/services/postgres/v20170312/postgres_client.js +21 -0
- package/es/services/trtc/v20190722/trtc_client.js +24 -15
- package/es/services/wedata/v20210820/wedata_client.js +3 -0
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bh/v20230418/bh_models.d.ts +8 -4
- package/tencentcloud/services/cdwdoris/v20211228/cdwdoris_models.d.ts +63 -48
- package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +47 -43
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +1 -1
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +42 -30
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +29 -29
- package/tencentcloud/services/dbdc/v20201029/dbdc_client.d.ts +6 -6
- package/tencentcloud/services/dbdc/v20201029/dbdc_client.js +6 -6
- package/tencentcloud/services/dbdc/v20201029/dbdc_models.d.ts +124 -12
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +13 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +18 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +208 -36
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +49 -29
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +10 -21
- package/tencentcloud/services/ga2/v20250115/ga2_models.d.ts +1 -1
- package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +9 -5
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +2 -2
- package/tencentcloud/services/mqtt/v20240516/mqtt_client.d.ts +21 -9
- package/tencentcloud/services/mqtt/v20240516/mqtt_client.js +29 -11
- package/tencentcloud/services/mqtt/v20240516/mqtt_models.d.ts +529 -265
- package/tencentcloud/services/postgres/v20170312/postgres_client.d.ts +29 -1
- package/tencentcloud/services/postgres/v20170312/postgres_client.js +42 -0
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +513 -97
- package/tencentcloud/services/privatedns/v20201028/privatedns_models.d.ts +1 -1
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +35 -35
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +106 -55
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +16 -19
- package/tencentcloud/services/tione/v20211111/tione_models.d.ts +63 -8
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +48 -34
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +61 -41
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +240 -70
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +4 -5
- package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +5 -1
- package/tencentcloud/services/wedata/v20210820/wedata_client.js +6 -0
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +108 -41
package/es/common/sdk_version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.1.
|
|
1
|
+
export const sdkVersion = "4.1.278";
|
|
@@ -285,6 +285,9 @@ export class Client extends AbstractClient {
|
|
|
285
285
|
async DescribeNotebookSessionStatementSqlResult(req, cb) {
|
|
286
286
|
return this.request("DescribeNotebookSessionStatementSqlResult", req, cb);
|
|
287
287
|
}
|
|
288
|
+
async DescribeMCPSubUin(req, cb) {
|
|
289
|
+
return this.request("DescribeMCPSubUin", req, cb);
|
|
290
|
+
}
|
|
288
291
|
async CreateNotebookSessionStatement(req, cb) {
|
|
289
292
|
return this.request("CreateNotebookSessionStatement", req, cb);
|
|
290
293
|
}
|
|
@@ -450,6 +453,9 @@ export class Client extends AbstractClient {
|
|
|
450
453
|
async QueryResult(req, cb) {
|
|
451
454
|
return this.request("QueryResult", req, cb);
|
|
452
455
|
}
|
|
456
|
+
async ModifySparkAppForTDLC(req, cb) {
|
|
457
|
+
return this.request("ModifySparkAppForTDLC", req, cb);
|
|
458
|
+
}
|
|
453
459
|
async CheckLockMetaData(req, cb) {
|
|
454
460
|
return this.request("CheckLockMetaData", req, cb);
|
|
455
461
|
}
|
|
@@ -471,6 +477,9 @@ export class Client extends AbstractClient {
|
|
|
471
477
|
async CreateExportTask(req, cb) {
|
|
472
478
|
return this.request("CreateExportTask", req, cb);
|
|
473
479
|
}
|
|
480
|
+
async CreateSparkAppForTDLC(req, cb) {
|
|
481
|
+
return this.request("CreateSparkAppForTDLC", req, cb);
|
|
482
|
+
}
|
|
474
483
|
async RegisterThirdPartyAccessUser(req, cb) {
|
|
475
484
|
return this.request("RegisterThirdPartyAccessUser", req, cb);
|
|
476
485
|
}
|
|
@@ -48,8 +48,8 @@ export class Client extends AbstractClient {
|
|
|
48
48
|
async ModifyJWKSAuthenticator(req, cb) {
|
|
49
49
|
return this.request("ModifyJWKSAuthenticator", req, cb);
|
|
50
50
|
}
|
|
51
|
-
async
|
|
52
|
-
return this.request("
|
|
51
|
+
async DescribeDeviceCertificateBackupHistory(req, cb) {
|
|
52
|
+
return this.request("DescribeDeviceCertificateBackupHistory", req, cb);
|
|
53
53
|
}
|
|
54
54
|
async CreateMessageEnrichmentRule(req, cb) {
|
|
55
55
|
return this.request("CreateMessageEnrichmentRule", req, cb);
|
|
@@ -90,9 +90,15 @@ export class Client extends AbstractClient {
|
|
|
90
90
|
async DescribeCaCertificates(req, cb) {
|
|
91
91
|
return this.request("DescribeCaCertificates", req, cb);
|
|
92
92
|
}
|
|
93
|
+
async DescribeUserList(req, cb) {
|
|
94
|
+
return this.request("DescribeUserList", req, cb);
|
|
95
|
+
}
|
|
93
96
|
async UpdateAuthorizationPolicyPriority(req, cb) {
|
|
94
97
|
return this.request("UpdateAuthorizationPolicyPriority", req, cb);
|
|
95
98
|
}
|
|
99
|
+
async UpdateMessageEnrichmentRulePriority(req, cb) {
|
|
100
|
+
return this.request("UpdateMessageEnrichmentRulePriority", req, cb);
|
|
101
|
+
}
|
|
96
102
|
async DeleteDeviceIdentity(req, cb) {
|
|
97
103
|
return this.request("DeleteDeviceIdentity", req, cb);
|
|
98
104
|
}
|
|
@@ -111,6 +117,9 @@ export class Client extends AbstractClient {
|
|
|
111
117
|
async DeleteInsPublicEndpoint(req, cb) {
|
|
112
118
|
return this.request("DeleteInsPublicEndpoint", req, cb);
|
|
113
119
|
}
|
|
120
|
+
async DescribeWillMessage(req, cb) {
|
|
121
|
+
return this.request("DescribeWillMessage", req, cb);
|
|
122
|
+
}
|
|
114
123
|
async CreateInstance(req, cb) {
|
|
115
124
|
return this.request("CreateInstance", req, cb);
|
|
116
125
|
}
|
|
@@ -126,8 +135,8 @@ export class Client extends AbstractClient {
|
|
|
126
135
|
async DescribeInstance(req, cb) {
|
|
127
136
|
return this.request("DescribeInstance", req, cb);
|
|
128
137
|
}
|
|
129
|
-
async
|
|
130
|
-
return this.request("
|
|
138
|
+
async DescribeDeviceIdentityBackupHistory(req, cb) {
|
|
139
|
+
return this.request("DescribeDeviceIdentityBackupHistory", req, cb);
|
|
131
140
|
}
|
|
132
141
|
async DescribeDeviceIdentity(req, cb) {
|
|
133
142
|
return this.request("DescribeDeviceIdentity", req, cb);
|
|
@@ -159,8 +168,8 @@ export class Client extends AbstractClient {
|
|
|
159
168
|
async KickOutClient(req, cb) {
|
|
160
169
|
return this.request("KickOutClient", req, cb);
|
|
161
170
|
}
|
|
162
|
-
async
|
|
163
|
-
return this.request("
|
|
171
|
+
async DescribeMessageDetails(req, cb) {
|
|
172
|
+
return this.request("DescribeMessageDetails", req, cb);
|
|
164
173
|
}
|
|
165
174
|
async ModifyAuthorizationPolicy(req, cb) {
|
|
166
175
|
return this.request("ModifyAuthorizationPolicy", req, cb);
|
|
@@ -66,6 +66,9 @@ export class Client extends AbstractClient {
|
|
|
66
66
|
async DescribeTasks(req, cb) {
|
|
67
67
|
return this.request("DescribeTasks", req, cb);
|
|
68
68
|
}
|
|
69
|
+
async ModifyDBProxyAddress(req, cb) {
|
|
70
|
+
return this.request("ModifyDBProxyAddress", req, cb);
|
|
71
|
+
}
|
|
69
72
|
async DescribeDatabases(req, cb) {
|
|
70
73
|
return this.request("DescribeDatabases", req, cb);
|
|
71
74
|
}
|
|
@@ -75,6 +78,9 @@ export class Client extends AbstractClient {
|
|
|
75
78
|
async DescribeProductConfig(req, cb) {
|
|
76
79
|
return this.request("DescribeProductConfig", req, cb);
|
|
77
80
|
}
|
|
81
|
+
async ReloadBalanceDBProxyNode(req, cb) {
|
|
82
|
+
return this.request("ReloadBalanceDBProxyNode", req, cb);
|
|
83
|
+
}
|
|
78
84
|
async DescribeAccountPrivileges(req, cb) {
|
|
79
85
|
return this.request("DescribeAccountPrivileges", req, cb);
|
|
80
86
|
}
|
|
@@ -264,6 +270,9 @@ export class Client extends AbstractClient {
|
|
|
264
270
|
async DescribeParamsEvent(req, cb) {
|
|
265
271
|
return this.request("DescribeParamsEvent", req, cb);
|
|
266
272
|
}
|
|
273
|
+
async DescribeDBProxySpecs(req, cb) {
|
|
274
|
+
return this.request("DescribeDBProxySpecs", req, cb);
|
|
275
|
+
}
|
|
267
276
|
async DescribeClasses(req, cb) {
|
|
268
277
|
return this.request("DescribeClasses", req, cb);
|
|
269
278
|
}
|
|
@@ -276,6 +285,9 @@ export class Client extends AbstractClient {
|
|
|
276
285
|
async ModifyReadOnlyDBInstanceWeight(req, cb) {
|
|
277
286
|
return this.request("ModifyReadOnlyDBInstanceWeight", req, cb);
|
|
278
287
|
}
|
|
288
|
+
async ModifyDBProxy(req, cb) {
|
|
289
|
+
return this.request("ModifyDBProxy", req, cb);
|
|
290
|
+
}
|
|
279
291
|
async DescribeBackupPlans(req, cb) {
|
|
280
292
|
return this.request("DescribeBackupPlans", req, cb);
|
|
281
293
|
}
|
|
@@ -312,6 +324,9 @@ export class Client extends AbstractClient {
|
|
|
312
324
|
async DeleteBackupPlan(req, cb) {
|
|
313
325
|
return this.request("DeleteBackupPlan", req, cb);
|
|
314
326
|
}
|
|
327
|
+
async DestroyDBProxy(req, cb) {
|
|
328
|
+
return this.request("DestroyDBProxy", req, cb);
|
|
329
|
+
}
|
|
315
330
|
async InquiryPriceUpgradeDBInstance(req, cb) {
|
|
316
331
|
return this.request("InquiryPriceUpgradeDBInstance", req, cb);
|
|
317
332
|
}
|
|
@@ -327,9 +342,15 @@ export class Client extends AbstractClient {
|
|
|
327
342
|
async DeleteBaseBackup(req, cb) {
|
|
328
343
|
return this.request("DeleteBaseBackup", req, cb);
|
|
329
344
|
}
|
|
345
|
+
async CreateDBProxy(req, cb) {
|
|
346
|
+
return this.request("CreateDBProxy", req, cb);
|
|
347
|
+
}
|
|
330
348
|
async LockAccount(req, cb) {
|
|
331
349
|
return this.request("LockAccount", req, cb);
|
|
332
350
|
}
|
|
351
|
+
async DescribeDBProxy(req, cb) {
|
|
352
|
+
return this.request("DescribeDBProxy", req, cb);
|
|
353
|
+
}
|
|
333
354
|
async OpenAuditService(req, cb) {
|
|
334
355
|
return this.request("OpenAuditService", req, cb);
|
|
335
356
|
}
|
|
@@ -6,6 +6,9 @@ export class Client extends AbstractClient {
|
|
|
6
6
|
async CreateCloudModeration(req, cb) {
|
|
7
7
|
return this.request("CreateCloudModeration", req, cb);
|
|
8
8
|
}
|
|
9
|
+
async DescribeTRTCRealTimeQualityData(req, cb) {
|
|
10
|
+
return this.request("DescribeTRTCRealTimeQualityData", req, cb);
|
|
11
|
+
}
|
|
9
12
|
async StopWebRecord(req, cb) {
|
|
10
13
|
return this.request("StopWebRecord", req, cb);
|
|
11
14
|
}
|
|
@@ -21,6 +24,9 @@ export class Client extends AbstractClient {
|
|
|
21
24
|
async DescribeRoomInfo(req, cb) {
|
|
22
25
|
return this.request("DescribeRoomInfo", req, cb);
|
|
23
26
|
}
|
|
27
|
+
async ModifyPicture(req, cb) {
|
|
28
|
+
return this.request("ModifyPicture", req, cb);
|
|
29
|
+
}
|
|
24
30
|
async DescribeWebRecord(req, cb) {
|
|
25
31
|
return this.request("DescribeWebRecord", req, cb);
|
|
26
32
|
}
|
|
@@ -42,11 +48,11 @@ export class Client extends AbstractClient {
|
|
|
42
48
|
async StopMCUMixTranscodeByStrRoomId(req, cb) {
|
|
43
49
|
return this.request("StopMCUMixTranscodeByStrRoomId", req, cb);
|
|
44
50
|
}
|
|
45
|
-
async
|
|
46
|
-
return this.request("
|
|
51
|
+
async DescribeTRTCRealTimeScaleData(req, cb) {
|
|
52
|
+
return this.request("DescribeTRTCRealTimeScaleData", req, cb);
|
|
47
53
|
}
|
|
48
|
-
async
|
|
49
|
-
return this.request("
|
|
54
|
+
async DescribeAIConversation(req, cb) {
|
|
55
|
+
return this.request("DescribeAIConversation", req, cb);
|
|
50
56
|
}
|
|
51
57
|
async StartMCUMixTranscodeByStrRoomId(req, cb) {
|
|
52
58
|
return this.request("StartMCUMixTranscodeByStrRoomId", req, cb);
|
|
@@ -57,6 +63,9 @@ export class Client extends AbstractClient {
|
|
|
57
63
|
async StartStreamIngest(req, cb) {
|
|
58
64
|
return this.request("StartStreamIngest", req, cb);
|
|
59
65
|
}
|
|
66
|
+
async StartAIConversation(req, cb) {
|
|
67
|
+
return this.request("StartAIConversation", req, cb);
|
|
68
|
+
}
|
|
60
69
|
async RemoveUserByStrRoomId(req, cb) {
|
|
61
70
|
return this.request("RemoveUserByStrRoomId", req, cb);
|
|
62
71
|
}
|
|
@@ -66,8 +75,8 @@ export class Client extends AbstractClient {
|
|
|
66
75
|
async CreatePicture(req, cb) {
|
|
67
76
|
return this.request("CreatePicture", req, cb);
|
|
68
77
|
}
|
|
69
|
-
async
|
|
70
|
-
return this.request("
|
|
78
|
+
async CreateLiveStreamModeration(req, cb) {
|
|
79
|
+
return this.request("CreateLiveStreamModeration", req, cb);
|
|
71
80
|
}
|
|
72
81
|
async DescribeTRTCSegmentModerationUsage(req, cb) {
|
|
73
82
|
return this.request("DescribeTRTCSegmentModerationUsage", req, cb);
|
|
@@ -81,6 +90,9 @@ export class Client extends AbstractClient {
|
|
|
81
90
|
async DeleteBasicModeration(req, cb) {
|
|
82
91
|
return this.request("DeleteBasicModeration", req, cb);
|
|
83
92
|
}
|
|
93
|
+
async DescribeLiveStreamModeration(req, cb) {
|
|
94
|
+
return this.request("DescribeLiveStreamModeration", req, cb);
|
|
95
|
+
}
|
|
84
96
|
async ModifyCloudRecording(req, cb) {
|
|
85
97
|
return this.request("ModifyCloudRecording", req, cb);
|
|
86
98
|
}
|
|
@@ -129,8 +141,8 @@ export class Client extends AbstractClient {
|
|
|
129
141
|
async DescribeCloudTranscription(req, cb) {
|
|
130
142
|
return this.request("DescribeCloudTranscription", req, cb);
|
|
131
143
|
}
|
|
132
|
-
async
|
|
133
|
-
return this.request("
|
|
144
|
+
async DeleteLiveStreamModeration(req, cb) {
|
|
145
|
+
return this.request("DeleteLiveStreamModeration", req, cb);
|
|
134
146
|
}
|
|
135
147
|
async DescribeUserInfo(req, cb) {
|
|
136
148
|
return this.request("DescribeUserInfo", req, cb);
|
|
@@ -180,8 +192,8 @@ export class Client extends AbstractClient {
|
|
|
180
192
|
async DescribeCloudRecording(req, cb) {
|
|
181
193
|
return this.request("DescribeCloudRecording", req, cb);
|
|
182
194
|
}
|
|
183
|
-
async
|
|
184
|
-
return this.request("
|
|
195
|
+
async DescribeRelayUsage(req, cb) {
|
|
196
|
+
return this.request("DescribeRelayUsage", req, cb);
|
|
185
197
|
}
|
|
186
198
|
async DescribeAITranscription(req, cb) {
|
|
187
199
|
return this.request("DescribeAITranscription", req, cb);
|
|
@@ -189,8 +201,8 @@ export class Client extends AbstractClient {
|
|
|
189
201
|
async UpdatePublishCdnStream(req, cb) {
|
|
190
202
|
return this.request("UpdatePublishCdnStream", req, cb);
|
|
191
203
|
}
|
|
192
|
-
async
|
|
193
|
-
return this.request("
|
|
204
|
+
async DeleteVoicePrint(req, cb) {
|
|
205
|
+
return this.request("DeleteVoicePrint", req, cb);
|
|
194
206
|
}
|
|
195
207
|
async CreateCloudSliceTask(req, cb) {
|
|
196
208
|
return this.request("CreateCloudSliceTask", req, cb);
|
|
@@ -207,9 +219,6 @@ export class Client extends AbstractClient {
|
|
|
207
219
|
async DescribeCloudModeration(req, cb) {
|
|
208
220
|
return this.request("DescribeCloudModeration", req, cb);
|
|
209
221
|
}
|
|
210
|
-
async DescribeAIConversation(req, cb) {
|
|
211
|
-
return this.request("DescribeAIConversation", req, cb);
|
|
212
|
-
}
|
|
213
222
|
async DescribeTRTCMarketQualityData(req, cb) {
|
|
214
223
|
return this.request("DescribeTRTCMarketQualityData", req, cb);
|
|
215
224
|
}
|
|
@@ -27,6 +27,9 @@ export class Client extends AbstractClient {
|
|
|
27
27
|
async DescribeTaskScript(req, cb) {
|
|
28
28
|
return this.request("DescribeTaskScript", req, cb);
|
|
29
29
|
}
|
|
30
|
+
async DescribeInstancesByExecutors(req, cb) {
|
|
31
|
+
return this.request("DescribeInstancesByExecutors", req, cb);
|
|
32
|
+
}
|
|
30
33
|
async DescribeRealViewSchemaPage(req, cb) {
|
|
31
34
|
return this.request("DescribeRealViewSchemaPage", req, cb);
|
|
32
35
|
}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.1.
|
|
1
|
+
export declare const sdkVersion = "4.1.278";
|
|
@@ -3509,21 +3509,25 @@ export interface DescribeOperationTaskRequest {
|
|
|
3509
3509
|
*/
|
|
3510
3510
|
export interface LoginSetting {
|
|
3511
3511
|
/**
|
|
3512
|
-
*
|
|
3512
|
+
* <p>登录会话超时,10分钟,20分钟,30分钟,默认20分钟</p>
|
|
3513
3513
|
*/
|
|
3514
3514
|
TimeOut: number;
|
|
3515
3515
|
/**
|
|
3516
|
-
*
|
|
3516
|
+
* <p>连续密码错误次数,超过锁定账号,3-5</p>
|
|
3517
3517
|
*/
|
|
3518
3518
|
LockThreshold: number;
|
|
3519
3519
|
/**
|
|
3520
|
-
*
|
|
3520
|
+
* <p>账号锁定时长,10分钟,20分钟,30分钟</p>
|
|
3521
3521
|
*/
|
|
3522
3522
|
LockTime: number;
|
|
3523
3523
|
/**
|
|
3524
|
-
*
|
|
3524
|
+
* <p>用户多少天不活跃,账号自动锁定</p>
|
|
3525
3525
|
*/
|
|
3526
3526
|
InactiveUserLock?: number;
|
|
3527
|
+
/**
|
|
3528
|
+
* <p>运维账号单点登录开关:0-关闭,1-开启</p>
|
|
3529
|
+
*/
|
|
3530
|
+
EnableSingleLogin?: number;
|
|
3527
3531
|
}
|
|
3528
3532
|
/**
|
|
3529
3533
|
* DescribeLDAPUnitSet返回参数结构体
|
|
@@ -371,72 +371,71 @@ export interface WorkloadGroupConfig {
|
|
|
371
371
|
*/
|
|
372
372
|
export interface BackupScheduleInfo {
|
|
373
373
|
/**
|
|
374
|
-
*
|
|
375
|
-
1-远端集群迁移;2-COS迁移
|
|
374
|
+
* <p>迁移类型:<br>1-远端集群迁移;2-COS迁移</p>
|
|
376
375
|
*/
|
|
377
376
|
BackupType?: number;
|
|
378
377
|
/**
|
|
379
|
-
*
|
|
378
|
+
* <p>当前任务现存实例数</p>
|
|
380
379
|
*/
|
|
381
380
|
ExistCount?: number;
|
|
382
381
|
/**
|
|
383
|
-
* cos
|
|
382
|
+
* <p>cos信息</p>
|
|
384
383
|
*/
|
|
385
384
|
CosSourceInfo?: string;
|
|
386
385
|
/**
|
|
387
|
-
* doris
|
|
386
|
+
* <p>doris信息</p>
|
|
388
387
|
*/
|
|
389
388
|
DorisSourceInfo?: string;
|
|
390
389
|
/**
|
|
391
|
-
*
|
|
390
|
+
* <p>恢复类型</p>
|
|
392
391
|
*/
|
|
393
392
|
RestoreType?: number;
|
|
394
393
|
/**
|
|
395
|
-
*
|
|
394
|
+
* <p>快照保留策略</p>
|
|
396
395
|
*/
|
|
397
396
|
SnapshotRemainPolicy?: SnapshotRemainPolicy;
|
|
398
397
|
/**
|
|
399
|
-
*
|
|
398
|
+
* <p>远程备份地域</p>
|
|
400
399
|
*/
|
|
401
400
|
DataRemoteRegion?: string;
|
|
402
401
|
/**
|
|
403
|
-
*
|
|
402
|
+
* <p>是否在宽限期内</p>
|
|
404
403
|
*/
|
|
405
404
|
IsWithinGracePeriod?: boolean;
|
|
406
405
|
/**
|
|
407
|
-
*
|
|
406
|
+
* <p>宽限期(天数)</p>
|
|
408
407
|
*/
|
|
409
408
|
GracePeriod?: number;
|
|
410
409
|
/**
|
|
411
|
-
*
|
|
410
|
+
* <p>宽限开始时间</p>
|
|
412
411
|
*/
|
|
413
412
|
GraceStartTime?: string;
|
|
414
413
|
/**
|
|
415
|
-
*
|
|
414
|
+
* <p>托管桶类型:standard-标准,多可用区-MAZ</p>
|
|
416
415
|
*/
|
|
417
416
|
BucketType?: string;
|
|
418
417
|
/**
|
|
419
|
-
*
|
|
418
|
+
* <p>是否开启安全锁:0-未开启,1-已开启</p>
|
|
420
419
|
*/
|
|
421
420
|
EnableSecurityLock?: number;
|
|
422
421
|
/**
|
|
423
|
-
*
|
|
422
|
+
* <p>实例ID</p>
|
|
424
423
|
*/
|
|
425
424
|
InstanceId?: string;
|
|
426
425
|
/**
|
|
427
|
-
*
|
|
426
|
+
* <p>实例名</p>
|
|
428
427
|
*/
|
|
429
428
|
InstanceName?: string;
|
|
430
429
|
/**
|
|
431
|
-
*
|
|
430
|
+
* <p>实例状态</p>
|
|
432
431
|
*/
|
|
433
432
|
InstanceStatus?: string;
|
|
434
433
|
/**
|
|
435
|
-
*
|
|
434
|
+
* <p>实例状态描述</p>
|
|
436
435
|
*/
|
|
437
436
|
InstanceStatusDesc?: string;
|
|
438
437
|
/**
|
|
439
|
-
*
|
|
438
|
+
* <p>桶加密状态信息</p>
|
|
440
439
|
*/
|
|
441
440
|
BucketEncryption?: BucketEncryptionInfo;
|
|
442
441
|
}
|
|
@@ -3947,125 +3946,141 @@ export interface ModifyInstanceKeyValConfigsRequest {
|
|
|
3947
3946
|
*/
|
|
3948
3947
|
export interface BackUpJobDisplay {
|
|
3949
3948
|
/**
|
|
3950
|
-
*
|
|
3949
|
+
* <p>备份实例id</p>
|
|
3951
3950
|
*/
|
|
3952
3951
|
JobId?: number;
|
|
3953
3952
|
/**
|
|
3954
|
-
*
|
|
3953
|
+
* <p>备份实例名</p>
|
|
3955
3954
|
*/
|
|
3956
3955
|
Snapshot?: string;
|
|
3957
3956
|
/**
|
|
3958
|
-
*
|
|
3957
|
+
* <p>备份数据量</p>
|
|
3959
3958
|
*/
|
|
3960
3959
|
BackUpSize?: number;
|
|
3961
3960
|
/**
|
|
3962
|
-
*
|
|
3961
|
+
* <p>备份单副本数据量</p>
|
|
3963
3962
|
*/
|
|
3964
3963
|
BackUpSingleSize?: number;
|
|
3965
3964
|
/**
|
|
3966
|
-
*
|
|
3965
|
+
* <p>实例创建时间</p>
|
|
3967
3966
|
*/
|
|
3968
3967
|
BackUpTime?: string;
|
|
3969
3968
|
/**
|
|
3970
|
-
*
|
|
3969
|
+
* <p>实例过期时间</p>
|
|
3971
3970
|
*/
|
|
3972
3971
|
ExpireTime?: string;
|
|
3973
3972
|
/**
|
|
3974
|
-
*
|
|
3973
|
+
* <p>实例状态</p>
|
|
3975
3974
|
*/
|
|
3976
3975
|
JobStatus?: string;
|
|
3977
3976
|
/**
|
|
3978
|
-
* 0为默认。1时是对远端的doris
|
|
3977
|
+
* <p>0为默认。1时是对远端的doris进行备份,不周期,一次性</p>
|
|
3979
3978
|
*/
|
|
3980
3979
|
BackupType?: number;
|
|
3981
3980
|
/**
|
|
3982
|
-
* 0为默认。1时是立即备份。2
|
|
3981
|
+
* <p>0为默认。1时是立即备份。2时是迁移</p>
|
|
3983
3982
|
*/
|
|
3984
3983
|
BackupTimeType?: number;
|
|
3985
3984
|
/**
|
|
3986
|
-
*
|
|
3985
|
+
* <p>远端doris的连接信息</p>
|
|
3987
3986
|
*/
|
|
3988
3987
|
DorisSourceInfo?: DorisSourceInfo;
|
|
3989
3988
|
/**
|
|
3990
|
-
*
|
|
3989
|
+
* <p>实例状态对应的数值</p>
|
|
3991
3990
|
*/
|
|
3992
3991
|
JobStatusNum?: number;
|
|
3993
3992
|
/**
|
|
3994
|
-
*
|
|
3993
|
+
* <p>备份实例中关于cos的信息</p>
|
|
3995
3994
|
*/
|
|
3996
3995
|
BackupCosInfo?: BackupCosInfo;
|
|
3997
3996
|
/**
|
|
3998
|
-
*
|
|
3997
|
+
* <p>是否使用的自定义桶</p>
|
|
3999
3998
|
*/
|
|
4000
3999
|
IsUserDefineBucket?: boolean;
|
|
4001
4000
|
/**
|
|
4002
|
-
*
|
|
4001
|
+
* <p>错误原因</p>
|
|
4003
4002
|
*/
|
|
4004
4003
|
ErrorReason?: string;
|
|
4005
4004
|
/**
|
|
4006
|
-
*
|
|
4005
|
+
* <p>快照保留策略</p>
|
|
4007
4006
|
*/
|
|
4008
4007
|
SnapshotRemainPolicy?: SnapshotRemainPolicy;
|
|
4009
4008
|
/**
|
|
4010
|
-
*
|
|
4009
|
+
* <p>隔离次数</p>
|
|
4011
4010
|
*/
|
|
4012
4011
|
IsolationCount?: number;
|
|
4013
4012
|
/**
|
|
4014
|
-
*
|
|
4013
|
+
* <p>是否开启安全锁</p>
|
|
4015
4014
|
*/
|
|
4016
4015
|
EnableSecurityLock?: number;
|
|
4017
4016
|
/**
|
|
4018
|
-
*
|
|
4017
|
+
* <p>宽限期天数</p>
|
|
4019
4018
|
*/
|
|
4020
4019
|
GracePeriod?: number;
|
|
4021
4020
|
/**
|
|
4022
|
-
*
|
|
4021
|
+
* <p>宽限期开始时间</p>
|
|
4023
4022
|
*/
|
|
4024
4023
|
GraceStartTime?: string;
|
|
4025
4024
|
/**
|
|
4026
|
-
*
|
|
4025
|
+
* <p>是否在宽限期内</p>
|
|
4027
4026
|
*/
|
|
4028
4027
|
IsWithinGracePeriod?: boolean;
|
|
4029
4028
|
/**
|
|
4030
|
-
*
|
|
4029
|
+
* <p>是否使用托管桶</p>
|
|
4031
4030
|
*/
|
|
4032
4031
|
UseManagedBucket?: boolean;
|
|
4033
4032
|
/**
|
|
4034
|
-
*
|
|
4033
|
+
* <p>实例ID</p>
|
|
4035
4034
|
*/
|
|
4036
4035
|
InstanceId?: string;
|
|
4037
4036
|
/**
|
|
4038
|
-
*
|
|
4037
|
+
* <p>实例名称</p>
|
|
4039
4038
|
*/
|
|
4040
4039
|
InstanceName?: string;
|
|
4041
4040
|
/**
|
|
4042
|
-
*
|
|
4041
|
+
* <p>实例状态</p>
|
|
4043
4042
|
*/
|
|
4044
4043
|
InstanceStatus?: string;
|
|
4045
4044
|
/**
|
|
4046
|
-
*
|
|
4045
|
+
* <p>实例状态描述</p>
|
|
4047
4046
|
*/
|
|
4048
4047
|
InstanceStatusDesc?: string;
|
|
4049
4048
|
/**
|
|
4050
|
-
*
|
|
4049
|
+
* <p>备份远程桶地域</p>
|
|
4051
4050
|
*/
|
|
4052
4051
|
DataRemoteRegion?: string;
|
|
4053
4052
|
/**
|
|
4054
|
-
*
|
|
4053
|
+
* <p>桶加密状态信息</p>
|
|
4055
4054
|
*/
|
|
4056
4055
|
BucketEncryption?: BucketEncryptionInfo;
|
|
4057
4056
|
/**
|
|
4058
|
-
*
|
|
4057
|
+
* <p>备份任务创建时记录的加密类型:SSE-COS/SSE-KMS/disabled</p>
|
|
4059
4058
|
*/
|
|
4060
4059
|
Encryption?: string;
|
|
4061
4060
|
/**
|
|
4062
|
-
*
|
|
4061
|
+
* <p>是否开通加密存储:0-未开通,1-已开通</p>
|
|
4063
4062
|
*/
|
|
4064
4063
|
EncryptionEnabled?: boolean;
|
|
4065
4064
|
/**
|
|
4066
|
-
*
|
|
4065
|
+
* <p>任务调度id</p>
|
|
4067
4066
|
*/
|
|
4068
4067
|
ScheduleId?: number;
|
|
4068
|
+
/**
|
|
4069
|
+
* <p>总任务数(库数)</p>
|
|
4070
|
+
*/
|
|
4071
|
+
TotalTasks?: number;
|
|
4072
|
+
/**
|
|
4073
|
+
* <p>已完成任务数</p>
|
|
4074
|
+
*/
|
|
4075
|
+
CompletedTasks?: number;
|
|
4076
|
+
/**
|
|
4077
|
+
* <p>失败任务数</p>
|
|
4078
|
+
*/
|
|
4079
|
+
FailedTasks?: number;
|
|
4080
|
+
/**
|
|
4081
|
+
* <p>备份进度描述,如 3/5</p>
|
|
4082
|
+
*/
|
|
4083
|
+
BackupProgress?: string;
|
|
4069
4084
|
}
|
|
4070
4085
|
/**
|
|
4071
4086
|
* ModifyUserBindWorkloadGroup返回参数结构体
|