tencentcloud-sdk-nodejs 4.0.530 → 4.0.531

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 (32) hide show
  1. package/CHANGELOG.md +43 -0
  2. package/SERVICE_CHANGELOG.md +89 -190
  3. package/package.json +1 -1
  4. package/products.md +12 -12
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/asr/v20190614/asr_models.ts +2 -2
  7. package/src/services/cvm/v20170312/cvm_models.ts +2 -6
  8. package/src/services/goosefs/v20220519/goosefs_client.ts +16 -1
  9. package/src/services/goosefs/v20220519/goosefs_models.ts +48 -3
  10. package/src/services/live/v20180801/live_client.ts +30 -4
  11. package/src/services/live/v20180801/live_models.ts +245 -54
  12. package/src/services/mongodb/v20190725/mongodb_models.ts +1 -1
  13. package/src/services/tcb/v20180608/tcb_models.ts +6 -1
  14. package/src/services/waf/v20180125/waf_client.ts +2 -4
  15. package/src/services/waf/v20180125/waf_models.ts +16 -16
  16. package/tencentcloud/common/sdk_version.d.ts +1 -1
  17. package/tencentcloud/common/sdk_version.js +1 -1
  18. package/tencentcloud/services/asr/v20190614/asr_models.d.ts +2 -2
  19. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +2 -6
  20. package/tencentcloud/services/goosefs/v20220519/goosefs_client.d.ts +5 -1
  21. package/tencentcloud/services/goosefs/v20220519/goosefs_client.js +6 -0
  22. package/tencentcloud/services/goosefs/v20220519/goosefs_models.d.ts +41 -3
  23. package/tencentcloud/services/live/v20180801/live_client.d.ts +9 -1
  24. package/tencentcloud/services/live/v20180801/live_client.js +12 -0
  25. package/tencentcloud/services/live/v20180801/live_models.d.ts +210 -50
  26. package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +1 -1
  27. package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +5 -1
  28. package/tencentcloud/services/waf/v20180125/waf_client.d.ts +0 -2
  29. package/tencentcloud/services/waf/v20180125/waf_client.js +0 -2
  30. package/tencentcloud/services/waf/v20180125/waf_models.d.ts +16 -16
  31. package/test/goosefs.v20220519.test.js +10 -0
  32. package/test/live.v20180801.test.js +20 -0
@@ -20,12 +20,12 @@
20
20
  */
21
21
  export interface CreateDataRepositoryTaskRequest {
22
22
  /**
23
- * 数据流通任务类型, FS_TO_COS(文件系统到COS Bucket),或者Bucket到文件系统(COS_TO_FS)
23
+ * 数据流通任务类型, FS_TO_COS(文件系统到COS Bucket),或者COS_TO_FS(COS Bucket到文件系统)
24
24
  */
25
25
  TaskType: string
26
26
 
27
27
  /**
28
- * bucket名
28
+ * COS存储桶名
29
29
  */
30
30
  Bucket: string
31
31
 
@@ -35,7 +35,7 @@ export interface CreateDataRepositoryTaskRequest {
35
35
  FileSystemId: string
36
36
 
37
37
  /**
38
- * 对于FS_TO_COS, TaskPath是Bucket映射目录的相对路径, 对于COS_TO_FS是COS上的路径。如果置位空, 则表示全部数据
38
+ * 对于FS_TO_COS, TaskPath是Bucket映射目录的相对路径, 对于COS_TO_FS是COS上的路径。如果置为空, 则表示全部数据
39
39
  */
40
40
  TaskPath: string
41
41
 
@@ -43,6 +43,16 @@ export interface CreateDataRepositoryTaskRequest {
43
43
  * 任务名称
44
44
  */
45
45
  TaskName: string
46
+
47
+ /**
48
+ * 数据流通方式 MSP_AFM 手动加载 RAW_AFM 按需加载
49
+ */
50
+ RepositoryType?: string
51
+
52
+ /**
53
+ * 文件列表下载地址,以http开头
54
+ */
55
+ TextLocation?: string
46
56
  }
47
57
 
48
58
  /**
@@ -52,8 +62,43 @@ export interface CreateDataRepositoryTaskResponse {
52
62
  /**
53
63
  * 任务ID
54
64
  */
65
+ TaskId?: string
66
+
67
+ /**
68
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
69
+ */
70
+ RequestId?: string
71
+ }
72
+
73
+ /**
74
+ * DescribeDataRepositoryTaskStatus请求参数结构体
75
+ */
76
+ export interface DescribeDataRepositoryTaskStatusRequest {
77
+ /**
78
+ * task id
79
+ */
55
80
  TaskId: string
56
81
 
82
+ /**
83
+ * file system id
84
+ */
85
+ FileSystemId: string
86
+ }
87
+
88
+ /**
89
+ * DescribeDataRepositoryTaskStatus返回参数结构体
90
+ */
91
+ export interface DescribeDataRepositoryTaskStatusResponse {
92
+ /**
93
+ * 任务id
94
+ */
95
+ TaskId?: string
96
+
97
+ /**
98
+ * 任务状态 0(初始化中), 1(运行中), 2(已完成), 3(任务失败)
99
+ */
100
+ Status?: number
101
+
57
102
  /**
58
103
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
59
104
  */
@@ -89,6 +89,7 @@ import {
89
89
  ModifyLiveSnapshotTemplateResponse,
90
90
  DeleteScreenshotTaskRequest,
91
91
  DescribeProIspPlaySumInfoListRequest,
92
+ DescribeTimeShiftStreamListRequest,
92
93
  DescribeDeliverBandwidthListRequest,
93
94
  DescribeScreenshotTaskResponse,
94
95
  AddLiveWatermarkRequest,
@@ -154,11 +155,12 @@ import {
154
155
  CreateLiveTranscodeRuleRequest,
155
156
  DescribeLiveWatermarkRulesRequest,
156
157
  DropLiveStreamRequest,
158
+ UpdateLiveWatermarkRequest,
157
159
  PullPushWatermarkInfo,
158
160
  DescribeProvinceIspPlayInfoListResponse,
159
161
  CreateCommonMixStreamRequest,
160
162
  RefererAuthConfig,
161
- ProIspPlaySumInfo,
163
+ DescribeTimeShiftRecordDetailRequest,
162
164
  PushDataInfo,
163
165
  AddDelayLiveStreamRequest,
164
166
  DescribeGroupProIspPlayInfoListRequest,
@@ -167,6 +169,7 @@ import {
167
169
  TranscodeDetailInfo,
168
170
  DescribeLiveSnapshotTemplateResponse,
169
171
  DescribeLiveTranscodeRulesResponse,
172
+ TimeShiftStreamInfo,
170
173
  DescribeLiveDomainRefererResponse,
171
174
  AddLiveDomainRequest,
172
175
  StreamName,
@@ -192,6 +195,7 @@ import {
192
195
  ResumeLiveStreamResponse,
193
196
  DescribeLiveStreamOnlineListResponse,
194
197
  DeletePullStreamConfigRequest,
198
+ DescribeTimeShiftStreamListResponse,
195
199
  ModifyPullStreamConfigRequest,
196
200
  DescribeStreamPushInfoListResponse,
197
201
  DescribeLiveStreamPushInfoListRequest,
@@ -205,6 +209,7 @@ import {
205
209
  DescribeTopClientIpSumInfoListRequest,
206
210
  CreateLiveCallbackRuleRequest,
207
211
  DeleteLiveWatermarkRuleResponse,
212
+ TimeShiftRecord,
208
213
  DescribeCallbackRecordsListResponse,
209
214
  PublishTime,
210
215
  ModifyLiveTranscodeTemplateResponse,
@@ -214,7 +219,7 @@ import {
214
219
  ModifyLiveDomainRefererResponse,
215
220
  DeleteLiveWatermarkRequest,
216
221
  DescribeLiveDomainsRequest,
217
- RecentPullInfo,
222
+ ProIspPlaySumInfo,
218
223
  SnapshotTemplateInfo,
219
224
  DeleteLiveSnapshotRuleResponse,
220
225
  CreateLiveRecordRequest,
@@ -222,7 +227,7 @@ import {
222
227
  BandwidthInfo,
223
228
  DescribeLogDownloadListResponse,
224
229
  CancelCommonMixStreamRequest,
225
- UpdateLiveWatermarkRequest,
230
+ RecentPullInfo,
226
231
  CertInfo,
227
232
  DescribeRecordTaskResponse,
228
233
  DescribeLiveDelayInfoListResponse,
@@ -271,6 +276,7 @@ import {
271
276
  DescribeLiveSnapshotRulesRequest,
272
277
  CreateRecordTaskRequest,
273
278
  CreateLiveTranscodeRuleResponse,
279
+ ResumeDelayLiveStreamResponse,
274
280
  CreateLiveCallbackRuleResponse,
275
281
  DescribeLiveRecordTemplateResponse,
276
282
  DescribeAreaBillBandwidthAndFluxListRequest,
@@ -319,7 +325,7 @@ import {
319
325
  StopScreenshotTaskResponse,
320
326
  CreateRecordTaskResponse,
321
327
  ForbidStreamInfo,
322
- ResumeDelayLiveStreamResponse,
328
+ DescribeTimeShiftRecordDetailResponse,
323
329
  DescribeLiveDomainCertBindingsRequest,
324
330
  DeleteLiveDomainResponse,
325
331
  CommonMixCropParams,
@@ -516,6 +522,16 @@ export class Client extends AbstractClient {
516
522
  return this.request("DescribeLiveSnapshotRules", req, cb)
517
523
  }
518
524
 
525
+ /**
526
+ * 查询某个时间范围内所有时移流列表。最大支持查询24小时内的数据。
527
+ */
528
+ async DescribeTimeShiftStreamList(
529
+ req: DescribeTimeShiftStreamListRequest,
530
+ cb?: (error: string, rep: DescribeTimeShiftStreamListResponse) => void
531
+ ): Promise<DescribeTimeShiftStreamListResponse> {
532
+ return this.request("DescribeTimeShiftStreamList", req, cb)
533
+ }
534
+
519
535
  /**
520
536
  * 删除转码模板。
521
537
  */
@@ -730,6 +746,16 @@ export class Client extends AbstractClient {
730
746
  return this.request("DeletePullStreamConfig", req, cb)
731
747
  }
732
748
 
749
+ /**
750
+ * 前提调用 DescribeTimeShiftStreamList 获得请求必要参数。查询指定范围内的时移流录制详情,最大支持24小时范围查询。
751
+ */
752
+ async DescribeTimeShiftRecordDetail(
753
+ req: DescribeTimeShiftRecordDetailRequest,
754
+ cb?: (error: string, rep: DescribeTimeShiftRecordDetailResponse) => void
755
+ ): Promise<DescribeTimeShiftRecordDetailResponse> {
756
+ return this.request("DescribeTimeShiftRecordDetail", req, cb)
757
+ }
758
+
733
759
  /**
734
760
  * 获取单个录制模板。
735
761
  */
@@ -1896,6 +1896,47 @@ export interface DescribeProIspPlaySumInfoListRequest {
1896
1896
  OutLanguage?: string
1897
1897
  }
1898
1898
 
1899
+ /**
1900
+ * DescribeTimeShiftStreamList请求参数结构体
1901
+ */
1902
+ export interface DescribeTimeShiftStreamListRequest {
1903
+ /**
1904
+ * 查询范围起始时间,Unix 时间戳。
1905
+ */
1906
+ StartTime: number
1907
+
1908
+ /**
1909
+ * 查询范围结束时间,Unix 时间戳。
1910
+ */
1911
+ EndTime: number
1912
+
1913
+ /**
1914
+ * 流名称。
1915
+ */
1916
+ StreamName?: string
1917
+
1918
+ /**
1919
+ * 推流域名。
1920
+ */
1921
+ Domain?: string
1922
+
1923
+ /**
1924
+ * 推流域名所属域名组。
1925
+ */
1926
+ DomainGroup?: string
1927
+
1928
+ /**
1929
+ * 用户指定要返回的最大结果数,取值范围[0,100],不指定或者指定为0时,API
1930
+ 默认值为100。指定超过100时,API 强制使用100。指定值为负数时,接口返回错误。
1931
+ */
1932
+ PageSize?: number
1933
+
1934
+ /**
1935
+ * 指定拉取的页码,不传时默认为1。
1936
+ */
1937
+ PageNum?: number
1938
+ }
1939
+
1899
1940
  /**
1900
1941
  * DescribeDeliverBandwidthList请求参数结构体
1901
1942
  */
@@ -3641,6 +3682,50 @@ export interface DropLiveStreamRequest {
3641
3682
  AppName: string
3642
3683
  }
3643
3684
 
3685
+ /**
3686
+ * UpdateLiveWatermark请求参数结构体
3687
+ */
3688
+ export interface UpdateLiveWatermarkRequest {
3689
+ /**
3690
+ * 水印 ID。
3691
+ 在添加水印接口 [AddLiveWatermark](/document/product/267/30154) 调用返回值中获取水印 ID。
3692
+ */
3693
+ WatermarkId: number
3694
+
3695
+ /**
3696
+ * 水印图片 URL。
3697
+ URL中禁止包含的字符:
3698
+ ;(){}$>`#"\'|
3699
+ */
3700
+ PictureUrl: string
3701
+
3702
+ /**
3703
+ * 显示位置,X轴偏移,单位是百分比,默认 0。
3704
+ */
3705
+ XPosition: number
3706
+
3707
+ /**
3708
+ * 显示位置,Y轴偏移,单位是百分比,默认 0。
3709
+ */
3710
+ YPosition: number
3711
+
3712
+ /**
3713
+ * 水印名称。
3714
+ 最长16字节。
3715
+ */
3716
+ WatermarkName?: string
3717
+
3718
+ /**
3719
+ * 水印宽度,占直播原始画面宽度百分比,建议高宽只设置一项,另外一项会自适应缩放,避免变形。默认原始宽度。
3720
+ */
3721
+ Width?: number
3722
+
3723
+ /**
3724
+ * 水印高度,占直播原始画面宽度百分比,建议高宽只设置一项,另外一项会自适应缩放,避免变形。默认原始高度。
3725
+ */
3726
+ Height?: number
3727
+ }
3728
+
3644
3729
  /**
3645
3730
  * 云转推水印信息。
3646
3731
  */
@@ -3769,28 +3854,43 @@ export interface RefererAuthConfig {
3769
3854
  }
3770
3855
 
3771
3856
  /**
3772
- * 获取省份/运营商的播放信息。
3857
+ * DescribeTimeShiftRecordDetail请求参数结构体
3773
3858
  */
3774
- export interface ProIspPlaySumInfo {
3859
+ export interface DescribeTimeShiftRecordDetailRequest {
3775
3860
  /**
3776
- * 省份/运营商/国家或地区。
3861
+ * 推流域名。
3777
3862
  */
3778
- Name: string
3863
+ Domain: string
3779
3864
 
3780
3865
  /**
3781
- * 总流量,单位: MB。
3866
+ * 推流路径。
3782
3867
  */
3783
- TotalFlux: number
3868
+ AppName: string
3784
3869
 
3785
3870
  /**
3786
- * 总请求数。
3871
+ * 流名称。
3787
3872
  */
3788
- TotalRequest: number
3873
+ StreamName: string
3789
3874
 
3790
3875
  /**
3791
- * 平均下载流量,单位: MB/s。
3876
+ * 查询范围起始时间,Unix 时间戳。
3792
3877
  */
3793
- AvgFluxPerSecond: number
3878
+ StartTime: number
3879
+
3880
+ /**
3881
+ * 查询范围终止时间,Unix 时间戳。
3882
+ */
3883
+ EndTime: number
3884
+
3885
+ /**
3886
+ * 推流域名所属组,没有域名组或者域名组为空字符串可不填。
3887
+ */
3888
+ DomainGroup?: string
3889
+
3890
+ /**
3891
+ * 转码模板ID,转码模板ID为0可不填。
3892
+ */
3893
+ TransCodeId?: number
3794
3894
  }
3795
3895
 
3796
3896
  /**
@@ -4101,6 +4201,59 @@ export interface DescribeLiveTranscodeRulesResponse {
4101
4201
  RequestId?: string
4102
4202
  }
4103
4203
 
4204
+ /**
4205
+ * 时移流。
4206
+ */
4207
+ export interface TimeShiftStreamInfo {
4208
+ /**
4209
+ * 推流域名所属组。
4210
+ 注意:此字段可能返回 null,表示取不到有效值。
4211
+ */
4212
+ DomainGroup?: string
4213
+
4214
+ /**
4215
+ * 推流域名。
4216
+ */
4217
+ Domain?: string
4218
+
4219
+ /**
4220
+ * 推流路径。
4221
+ */
4222
+ AppName?: string
4223
+
4224
+ /**
4225
+ * 流名称。
4226
+ */
4227
+ StreamName?: string
4228
+
4229
+ /**
4230
+ * 流起始时间,Unix 时间戳。
4231
+ */
4232
+ StartTime?: number
4233
+
4234
+ /**
4235
+ * 截止查询时流结束时间,Unix 时间戳。
4236
+ */
4237
+ EndTime?: number
4238
+
4239
+ /**
4240
+ * 转码模板ID。
4241
+ 注意:此字段可能返回 null,表示取不到有效值。
4242
+ */
4243
+ TransCodeId?: number
4244
+
4245
+ /**
4246
+ * 流类型,取值0为原始流,1为水印流,2为转码流。
4247
+ */
4248
+ StreamType?: number
4249
+
4250
+ /**
4251
+ * 时移数据存储时长,单位秒。
4252
+ 注意:此字段可能返回 null,表示取不到有效值。
4253
+ */
4254
+ Duration?: number
4255
+ }
4256
+
4104
4257
  /**
4105
4258
  * DescribeLiveDomainReferer返回参数结构体
4106
4259
  */
@@ -4798,6 +4951,27 @@ export interface DeletePullStreamConfigRequest {
4798
4951
  ConfigId: string
4799
4952
  }
4800
4953
 
4954
+ /**
4955
+ * DescribeTimeShiftStreamList返回参数结构体
4956
+ */
4957
+ export interface DescribeTimeShiftStreamListResponse {
4958
+ /**
4959
+ * 时间段内所有的数据量。
4960
+ */
4961
+ TotalSize?: number
4962
+
4963
+ /**
4964
+ * 流列表。
4965
+ 注意:此字段可能返回 null,表示取不到有效值。
4966
+ */
4967
+ StreamList?: Array<TimeShiftStreamInfo>
4968
+
4969
+ /**
4970
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4971
+ */
4972
+ RequestId?: string
4973
+ }
4974
+
4801
4975
  /**
4802
4976
  * ModifyPullStreamConfig请求参数结构体
4803
4977
  */
@@ -5160,6 +5334,26 @@ export interface DeleteLiveWatermarkRuleResponse {
5160
5334
  RequestId?: string
5161
5335
  }
5162
5336
 
5337
+ /**
5338
+ * 时移录制段。
5339
+ */
5340
+ export interface TimeShiftRecord {
5341
+ /**
5342
+ * 时移录制会话标识。
5343
+ */
5344
+ Sid?: string
5345
+
5346
+ /**
5347
+ * 录制会话开始时间,Unix 时间戳。
5348
+ */
5349
+ StartTime?: number
5350
+
5351
+ /**
5352
+ * 录制会话结束时间,Unix 时间戳。
5353
+ */
5354
+ EndTime?: number
5355
+ }
5356
+
5163
5357
  /**
5164
5358
  * DescribeCallbackRecordsList返回参数结构体
5165
5359
  */
@@ -5516,30 +5710,28 @@ export interface DescribeLiveDomainsRequest {
5516
5710
  }
5517
5711
 
5518
5712
  /**
5519
- * 直播拉流当前正在拉的文件信息。
5713
+ * 获取省份/运营商的播放信息。
5520
5714
  */
5521
- export interface RecentPullInfo {
5715
+ export interface ProIspPlaySumInfo {
5522
5716
  /**
5523
- * 当前正在拉的文件地址。
5717
+ * 省份/运营商/国家或地区。
5524
5718
  */
5525
- FileUrl: string
5719
+ Name: string
5526
5720
 
5527
5721
  /**
5528
- * 当前正在拉的文件偏移,单位:秒。
5722
+ * 总流量,单位: MB。
5529
5723
  */
5530
- OffsetTime: number
5724
+ TotalFlux: number
5531
5725
 
5532
5726
  /**
5533
- * 最新上报偏移信息时间。UTC格式。
5534
- 如:2020-07-23T03:20:39Z。
5535
- 注意:与北京时间相差八小时。
5536
- */
5537
- ReportTime: string
5727
+ * 总请求数。
5728
+ */
5729
+ TotalRequest: number
5538
5730
 
5539
5731
  /**
5540
- * 已经轮播的次数。
5732
+ * 平均下载流量,单位: MB/s。
5541
5733
  */
5542
- LoopedTimes: number
5734
+ AvgFluxPerSecond: number
5543
5735
  }
5544
5736
 
5545
5737
  /**
@@ -5757,47 +5949,30 @@ export interface CancelCommonMixStreamRequest {
5757
5949
  }
5758
5950
 
5759
5951
  /**
5760
- * UpdateLiveWatermark请求参数结构体
5952
+ * 直播拉流当前正在拉的文件信息。
5761
5953
  */
5762
- export interface UpdateLiveWatermarkRequest {
5763
- /**
5764
- * 水印 ID。
5765
- 在添加水印接口 [AddLiveWatermark](/document/product/267/30154) 调用返回值中获取水印 ID。
5766
- */
5767
- WatermarkId: number
5768
-
5769
- /**
5770
- * 水印图片 URL。
5771
- URL中禁止包含的字符:
5772
- ;(){}$>`#"\'|
5773
- */
5774
- PictureUrl: string
5775
-
5954
+ export interface RecentPullInfo {
5776
5955
  /**
5777
- * 显示位置,X轴偏移,单位是百分比,默认 0。
5956
+ * 当前正在拉的文件地址。
5778
5957
  */
5779
- XPosition: number
5958
+ FileUrl: string
5780
5959
 
5781
5960
  /**
5782
- * 显示位置,Y轴偏移,单位是百分比,默认 0。
5961
+ * 当前正在拉的文件偏移,单位:秒。
5783
5962
  */
5784
- YPosition: number
5963
+ OffsetTime: number
5785
5964
 
5786
5965
  /**
5787
- * 水印名称。
5788
- 最长16字节。
5966
+ * 最新上报偏移信息时间。UTC格式。
5967
+ 如:2020-07-23T03:20:39Z。
5968
+ 注意:与北京时间相差八小时。
5789
5969
  */
5790
- WatermarkName?: string
5791
-
5792
- /**
5793
- * 水印宽度,占直播原始画面宽度百分比,建议高宽只设置一项,另外一项会自适应缩放,避免变形。默认原始宽度。
5794
- */
5795
- Width?: number
5970
+ ReportTime: string
5796
5971
 
5797
5972
  /**
5798
- * 水印高度,占直播原始画面宽度百分比,建议高宽只设置一项,另外一项会自适应缩放,避免变形。默认原始高度。
5973
+ * 已经轮播的次数。
5799
5974
  */
5800
- Height?: number
5975
+ LoopedTimes: number
5801
5976
  }
5802
5977
 
5803
5978
  /**
@@ -7002,6 +7177,16 @@ export interface CreateLiveTranscodeRuleResponse {
7002
7177
  RequestId?: string
7003
7178
  }
7004
7179
 
7180
+ /**
7181
+ * ResumeDelayLiveStream返回参数结构体
7182
+ */
7183
+ export interface ResumeDelayLiveStreamResponse {
7184
+ /**
7185
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
7186
+ */
7187
+ RequestId?: string
7188
+ }
7189
+
7005
7190
  /**
7006
7191
  * CreateLiveCallbackRule返回参数结构体
7007
7192
  */
@@ -8297,9 +8482,15 @@ export interface ForbidStreamInfo {
8297
8482
  }
8298
8483
 
8299
8484
  /**
8300
- * ResumeDelayLiveStream返回参数结构体
8485
+ * DescribeTimeShiftRecordDetail返回参数结构体
8301
8486
  */
8302
- export interface ResumeDelayLiveStreamResponse {
8487
+ export interface DescribeTimeShiftRecordDetailResponse {
8488
+ /**
8489
+ * 时移录制会话数组。
8490
+ 注意:此字段可能返回 null,表示取不到有效值。
8491
+ */
8492
+ RecordList?: Array<TimeShiftRecord>
8493
+
8303
8494
  /**
8304
8495
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8305
8496
  */
@@ -2500,7 +2500,7 @@ export interface InquirePriceCreateDBInstancesRequest {
2500
2500
  Volume: number
2501
2501
 
2502
2502
  /**
2503
- * 实例版本信息。<ul><li>具体支持的版本,请通过接口<a href="https://cloud.tencent.com/document/product/240/38567">DescribeSpecInfo</a>查询,其返回的数据结构SpecItems中的参数MongoVersionCode为实例所支持的版本信息。</li><li>版本信息与版本号对应关系如下:<ul><li>MONGO_3_WT:MongoDB 3.2 WiredTiger存储引擎版本。</li><li>MONGO_3_ROCKS:MongoDB 3.2 RocksDB存储引擎版本。</li><li>MONGO_36_WT:MongoDB 3.6 WiredTiger存储引擎版本。</li><li>MONGO_40_WT:MongoDB 4.0 WiredTiger存储引擎版本。</li></ul>
2503
+ * 实例版本信息。<ul><li>具体支持的版本,请通过接口<a href="https://cloud.tencent.com/document/product/240/38567">DescribeSpecInfo</a>查询,其返回的数据结构SpecItems中的参数MongoVersionCode为实例所支持的版本信息。</li><li>版本信息与版本号对应关系如下:<ul><li>MONGO_3_WT:MongoDB 3.2 WiredTiger存储引擎版本。</li><li>MONGO_3_ROCKS:MongoDB 3.2 RocksDB存储引擎版本。</li><li>MONGO_36_WT:MongoDB 3.6 WiredTiger存储引擎版本。</li><li>MONGO_40_WT:MongoDB 4.0 WiredTiger存储引擎版本。</li><li>MONGO_42_WT:MongoDB 4.2 WiredTiger存储引擎版本。</li><li>MONGO_44_WT:MongoDB 4.4 WiredTiger存储引擎版本。</li></ul>
2504
2504
  */
2505
2505
  MongoVersion: string
2506
2506
 
@@ -3081,7 +3081,12 @@ export interface DescribeEnvsResponse {
3081
3081
  /**
3082
3082
  * 环境信息列表
3083
3083
  */
3084
- EnvList: Array<EnvInfo>
3084
+ EnvList?: Array<EnvInfo>
3085
+
3086
+ /**
3087
+ * 环境个数
3088
+ */
3089
+ Total?: number
3085
3090
 
3086
3091
  /**
3087
3092
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -429,10 +429,8 @@ export class Client extends AbstractClient {
429
429
  }
430
430
 
431
431
  /**
432
- * 获取域名的规则白名单
433
-
434
-
435
- */
432
+ * 获取域名的规则白名单
433
+ */
436
434
  async DescribeDomainWhiteRules(
437
435
  req: DescribeDomainWhiteRulesRequest,
438
436
  cb?: (error: string, rep: DescribeDomainWhiteRulesResponse) => void