tencentcloud-sdk-cls 3.0.1064 → 3.0.1065

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 85470a360430c682229cc592109560dbb8aa261a
4
- data.tar.gz: 6d2a43321364f7b922ab2ed4d81767cb35e54e2a
3
+ metadata.gz: ccc47381900ebf928ee17be9c0c842b0018ec7d9
4
+ data.tar.gz: 468cbb8eb80fa4db3e2a807209c17bb220319e55
5
5
  SHA512:
6
- metadata.gz: 573ff53eca901b6af24b08d72dd719b360b5deebebbda17a33fdbe09a8d05c31e77b2f783a70c58d886ee5d822d84d2d038f1948298fb6d7d5e47f39c43aaaf3
7
- data.tar.gz: 3b5e51bddd53abc421b291f53416e5ccba3893e45c217816eccb18549dd1b9eaf4a560c31a35f2e4160c8da0d36cd03dcd6d4e9d2e762f0e410bb1517c09bfc3
6
+ metadata.gz: 02466d2026fcc32942fb7fbd0f9be3ba5269851a5a1f633ace780e8348f5bcc2201661e815cb3512e09b67da3acd0946ad0467f73fde5090b20ea350c98b7f77
7
+ data.tar.gz: 590b47cb67746d2472ab8a5b5e5a36f61618c4c02436411a2587f8dd7d915a0205e1be85c7175114375da15477fd50ec0f7559eb4a770ea43e9bbf50add056a4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1064
1
+ 3.0.1065
@@ -2389,7 +2389,8 @@ module TencentCloud
2389
2389
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2390
2390
  end
2391
2391
 
2392
- # 修改机器组
2392
+ # 修改机器组。
2393
+ # 注意:修改接口直接覆盖历史数据,改为本次合法入参数据,请谨慎调用此接口。
2393
2394
 
2394
2395
  # @param request: Request instance for ModifyMachineGroup.
2395
2396
  # @type request: :class:`Tencentcloud::cls::V20201016::ModifyMachineGroupRequest`
@@ -9507,7 +9507,9 @@ module TencentCloud
9507
9507
  # @type GroupId: String
9508
9508
  # @param GroupName: 机器组名称
9509
9509
  # @type GroupName: String
9510
- # @param MachineGroupType: 机器组类型。Type:ip,Values中为ip字符串列表机器组;Type:label,Values中为标签字符串列表机器组。
9510
+ # @param MachineGroupType: 机器组类型。
9511
+ # Type:ip,Values中为ip字符串列表机器组;
9512
+ # Type:label,Values中为标签字符串列表机器组。
9511
9513
  # @type MachineGroupType: :class:`Tencentcloud::Cls.v20201016.models.MachineGroupTypeInfo`
9512
9514
  # @param Tags: 标签列表
9513
9515
  # @type Tags: Array
@@ -10921,10 +10923,12 @@ module TencentCloud
10921
10923
  # @type SyntaxRule: Integer
10922
10924
  # @param HasServicesLog: 是否开启投递服务日志。1:关闭,2:开启。
10923
10925
  # @type HasServicesLog: Integer
10926
+ # @param FullQuery: 全文检索标记。1:关闭,2:打开。
10927
+ # @type FullQuery: Integer
10924
10928
 
10925
- attr_accessor :TaskId, :Name, :SrcTopicId, :SrcTopicName, :DstResource, :CreateTime, :UpdateTime, :Status, :EnableFlag, :ScheduledSqlContent, :ProcessStartTime, :ProcessType, :ProcessEndTime, :ProcessPeriod, :ProcessTimeWindow, :ProcessDelay, :SrcTopicRegion, :SyntaxRule, :HasServicesLog
10929
+ attr_accessor :TaskId, :Name, :SrcTopicId, :SrcTopicName, :DstResource, :CreateTime, :UpdateTime, :Status, :EnableFlag, :ScheduledSqlContent, :ProcessStartTime, :ProcessType, :ProcessEndTime, :ProcessPeriod, :ProcessTimeWindow, :ProcessDelay, :SrcTopicRegion, :SyntaxRule, :HasServicesLog, :FullQuery
10926
10930
 
10927
- def initialize(taskid=nil, name=nil, srctopicid=nil, srctopicname=nil, dstresource=nil, createtime=nil, updatetime=nil, status=nil, enableflag=nil, scheduledsqlcontent=nil, processstarttime=nil, processtype=nil, processendtime=nil, processperiod=nil, processtimewindow=nil, processdelay=nil, srctopicregion=nil, syntaxrule=nil, hasserviceslog=nil)
10931
+ def initialize(taskid=nil, name=nil, srctopicid=nil, srctopicname=nil, dstresource=nil, createtime=nil, updatetime=nil, status=nil, enableflag=nil, scheduledsqlcontent=nil, processstarttime=nil, processtype=nil, processendtime=nil, processperiod=nil, processtimewindow=nil, processdelay=nil, srctopicregion=nil, syntaxrule=nil, hasserviceslog=nil, fullquery=nil)
10928
10932
  @TaskId = taskid
10929
10933
  @Name = name
10930
10934
  @SrcTopicId = srctopicid
@@ -10944,6 +10948,7 @@ module TencentCloud
10944
10948
  @SrcTopicRegion = srctopicregion
10945
10949
  @SyntaxRule = syntaxrule
10946
10950
  @HasServicesLog = hasserviceslog
10951
+ @FullQuery = fullquery
10947
10952
  end
10948
10953
 
10949
10954
  def deserialize(params)
@@ -10969,6 +10974,7 @@ module TencentCloud
10969
10974
  @SrcTopicRegion = params['SrcTopicRegion']
10970
10975
  @SyntaxRule = params['SyntaxRule']
10971
10976
  @HasServicesLog = params['HasServicesLog']
10977
+ @FullQuery = params['FullQuery']
10972
10978
  end
10973
10979
  end
10974
10980
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cls
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1064
4
+ version: 3.0.1065
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-20 00:00:00.000000000 Z
11
+ date: 2025-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common