tencentcloud-sdk-nodejs-cls 4.1.173 → 4.1.175
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/package.json
CHANGED
|
@@ -773,7 +773,7 @@ export interface ScheduledSqlTaskInfo {
|
|
|
773
773
|
*/
|
|
774
774
|
export interface CreateDlcDeliverResponse {
|
|
775
775
|
/**
|
|
776
|
-
*
|
|
776
|
+
* <p>配置id</p>
|
|
777
777
|
*/
|
|
778
778
|
TaskId?: string;
|
|
779
779
|
/**
|
|
@@ -1497,40 +1497,39 @@ export interface ModifyDataTransformRequest {
|
|
|
1497
1497
|
*/
|
|
1498
1498
|
export interface CreateDlcDeliverRequest {
|
|
1499
1499
|
/**
|
|
1500
|
-
*
|
|
1501
|
-
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
|
1500
|
+
* <p>日志主题id。</p><ul><li>通过<a href="https://cloud.tencent.com/document/product/614/56454">获取日志主题列表</a>获取日志主题Id。</li></ul>
|
|
1502
1501
|
*/
|
|
1503
1502
|
TopicId: string;
|
|
1504
1503
|
/**
|
|
1505
|
-
*
|
|
1504
|
+
* <p>名称:长度不超过64字符,以字母开头,接受0-9,a-z,A-Z, _,-,中文字符。</p>
|
|
1506
1505
|
*/
|
|
1507
1506
|
Name: string;
|
|
1508
1507
|
/**
|
|
1509
|
-
*
|
|
1508
|
+
* <p>投递类型。0:批投递,1:实时投递</p>
|
|
1510
1509
|
*/
|
|
1511
1510
|
DeliverType: number;
|
|
1512
1511
|
/**
|
|
1513
|
-
*
|
|
1512
|
+
* <p>投递时间范围的开始时间</p>
|
|
1514
1513
|
*/
|
|
1515
1514
|
StartTime: number;
|
|
1516
1515
|
/**
|
|
1517
|
-
* dlc
|
|
1516
|
+
* <p>dlc配置信息</p>
|
|
1518
1517
|
*/
|
|
1519
1518
|
DlcInfo: DlcInfo;
|
|
1520
1519
|
/**
|
|
1521
|
-
*
|
|
1520
|
+
* <p>投递文件大小,单位MB。 DeliverType=0时必填,范围 5<= MaxSize <= 256。</p>
|
|
1522
1521
|
*/
|
|
1523
1522
|
MaxSize?: number;
|
|
1524
1523
|
/**
|
|
1525
|
-
*
|
|
1524
|
+
* <p>投递间隔,单位秒。 DeliverType=0时必填,范围 300<= Interval <=900。</p>
|
|
1526
1525
|
*/
|
|
1527
1526
|
Interval?: number;
|
|
1528
1527
|
/**
|
|
1529
|
-
*
|
|
1528
|
+
* <p>投递时间范围的结束时间。 如果为空,则表示不限时。EndTime不为空时,需要大于StartTime。</p>
|
|
1530
1529
|
*/
|
|
1531
1530
|
EndTime?: number;
|
|
1532
1531
|
/**
|
|
1533
|
-
*
|
|
1532
|
+
* <p>是否开启投递服务日志。1关闭,2开启。默认开启</p>
|
|
1534
1533
|
*/
|
|
1535
1534
|
HasServicesLog?: number;
|
|
1536
1535
|
}
|