tencentcloud-sdk-nodejs-cls 4.1.22 → 4.1.43
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
|
@@ -378,8 +378,9 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
378
378
|
*/
|
|
379
379
|
ModifyWebCallback(req: ModifyWebCallbackRequest, cb?: (error: string, rep: ModifyWebCallbackResponse) => void): Promise<ModifyWebCallbackResponse>;
|
|
380
380
|
/**
|
|
381
|
-
|
|
382
|
-
|
|
381
|
+
* 修改机器组。
|
|
382
|
+
注意:修改接口直接覆盖历史数据,改为本次合法入参数据,请谨慎调用此接口。
|
|
383
|
+
*/
|
|
383
384
|
ModifyMachineGroup(req: ModifyMachineGroupRequest, cb?: (error: string, rep: ModifyMachineGroupResponse) => void): Promise<ModifyMachineGroupResponse>;
|
|
384
385
|
/**
|
|
385
386
|
* 本接口用于获取定时SQL分析任务列表
|
|
@@ -580,8 +580,9 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
580
580
|
return this.request("ModifyWebCallback", req, cb);
|
|
581
581
|
}
|
|
582
582
|
/**
|
|
583
|
-
|
|
584
|
-
|
|
583
|
+
* 修改机器组。
|
|
584
|
+
注意:修改接口直接覆盖历史数据,改为本次合法入参数据,请谨慎调用此接口。
|
|
585
|
+
*/
|
|
585
586
|
async ModifyMachineGroup(req, cb) {
|
|
586
587
|
return this.request("ModifyMachineGroup", req, cb);
|
|
587
588
|
}
|
|
@@ -1831,6 +1831,10 @@ export interface ScheduledSqlTaskInfo {
|
|
|
1831
1831
|
* 是否开启投递服务日志。1:关闭,2:开启。
|
|
1832
1832
|
*/
|
|
1833
1833
|
HasServicesLog?: number;
|
|
1834
|
+
/**
|
|
1835
|
+
* 全文检索标记。1:关闭,2:打开。
|
|
1836
|
+
*/
|
|
1837
|
+
FullQuery?: number;
|
|
1834
1838
|
}
|
|
1835
1839
|
/**
|
|
1836
1840
|
* DescribeConfigMachineGroups请求参数结构体
|
|
@@ -6832,7 +6836,9 @@ export interface ModifyMachineGroupRequest {
|
|
|
6832
6836
|
*/
|
|
6833
6837
|
GroupName?: string;
|
|
6834
6838
|
/**
|
|
6835
|
-
* 机器组类型。
|
|
6839
|
+
* 机器组类型。
|
|
6840
|
+
Type:ip,Values中为ip字符串列表机器组;
|
|
6841
|
+
Type:label,Values中为标签字符串列表机器组。
|
|
6836
6842
|
*/
|
|
6837
6843
|
MachineGroupType?: MachineGroupTypeInfo;
|
|
6838
6844
|
/**
|