tencentcloud-sdk-nodejs-cdb 4.1.239 → 4.1.243
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
|
@@ -3484,47 +3484,49 @@ export interface ModifyCdbProxyAddressDescResponse {
|
|
|
3484
3484
|
*/
|
|
3485
3485
|
export interface ModifyDBInstanceLogToCLSRequest {
|
|
3486
3486
|
/**
|
|
3487
|
-
*
|
|
3487
|
+
* <p>实例 ID,可通过 <a href="https://cloud.tencent.com/document/product/236/15872">DescribeDBInstances</a> 接口获取。</p>
|
|
3488
3488
|
*/
|
|
3489
3489
|
InstanceId: string;
|
|
3490
3490
|
/**
|
|
3491
|
-
*
|
|
3491
|
+
* <p>日志类型。error:错误日志,slowlog:慢日志。</p>
|
|
3492
3492
|
*/
|
|
3493
3493
|
LogType: string;
|
|
3494
3494
|
/**
|
|
3495
|
-
*
|
|
3495
|
+
* <p>投递状态。ON:开启,OFF:关闭。</p>
|
|
3496
3496
|
*/
|
|
3497
3497
|
Status: string;
|
|
3498
3498
|
/**
|
|
3499
|
-
*
|
|
3499
|
+
* <p>是否需要创建日志集。默认为 false。</p>
|
|
3500
3500
|
*/
|
|
3501
3501
|
CreateLogset?: boolean;
|
|
3502
3502
|
/**
|
|
3503
|
-
*
|
|
3504
|
-
说明:当参数 Status 的值为 ON 时,Logset 和 LogTopic 参数必须填一个。
|
|
3503
|
+
* <p>需要创建日志集时为日志集名称;选择已有日志集时,为日志集 ID。默认为空。<br>说明:当参数 Status 的值为 ON 时,Logset 和 LogTopic 参数必须填一个。</p>
|
|
3505
3504
|
*/
|
|
3506
3505
|
Logset?: string;
|
|
3507
3506
|
/**
|
|
3508
|
-
*
|
|
3507
|
+
* <p>是否需要创建日志主题。默认为 false。</p>
|
|
3509
3508
|
*/
|
|
3510
3509
|
CreateLogTopic?: boolean;
|
|
3511
3510
|
/**
|
|
3512
|
-
*
|
|
3513
|
-
说明:当参数 Status 的值为 ON 时,Logset 和 LogTopic 参数必须填一个。
|
|
3511
|
+
* <p>需要创建日志主题时为日志主题名称;选择已有日志主题时,为日志主题 ID。默认为空。<br>说明:当参数 Status 的值为 ON 时,Logset 和 LogTopic 参数必须填一个。</p>
|
|
3514
3512
|
*/
|
|
3515
3513
|
LogTopic?: string;
|
|
3516
3514
|
/**
|
|
3517
|
-
*
|
|
3515
|
+
* <p>日志主题有效期,不填写时,默认30天,最大值3600。</p>
|
|
3518
3516
|
*/
|
|
3519
3517
|
Period?: number;
|
|
3520
3518
|
/**
|
|
3521
|
-
*
|
|
3519
|
+
* <p>创建日志主题时,是否创建索引,默认为 false。</p>
|
|
3522
3520
|
*/
|
|
3523
3521
|
CreateIndex?: boolean;
|
|
3524
3522
|
/**
|
|
3525
|
-
* CLS 所在地域,不填择默认为 Region
|
|
3523
|
+
* <p>CLS 所在地域,不填择默认为 Region 的参数值。</p>
|
|
3526
3524
|
*/
|
|
3527
3525
|
ClsRegion?: string;
|
|
3526
|
+
/**
|
|
3527
|
+
* <p>创建日志集和日志主题的时候可选,最多不能超过10个标签</p>
|
|
3528
|
+
*/
|
|
3529
|
+
ResourceTags?: Array<TagInfoItem>;
|
|
3528
3530
|
}
|
|
3529
3531
|
/**
|
|
3530
3532
|
* DeleteTimeWindow返回参数结构体
|