tencentcloud-sdk-cdb 3.0.755 → 3.0.757

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: b490b5f5afe2cb66a51e088d3b658732ec1dc13d
4
- data.tar.gz: 350bc9c144810e4d5e86216e4d3d23e7e7e96151
3
+ metadata.gz: fb9a4ae09735ed8e3304a48327076696b6ca52fe
4
+ data.tar.gz: 1969ddf0b0f785c879481b79462c48fa968926ac
5
5
  SHA512:
6
- metadata.gz: dc27754b03ba0861d54e7dbd2c0076936694633a668a1e8b531c8e28645d9b1a3e1442485253b40f12ba1b730072e73fc6c042b26988218ec9a66cf3bbd1b9dd
7
- data.tar.gz: 232b7d7aea693b4a5c8e255cbf99f4e968c9995c7ee3af7ff699e7a412a7235503fd5211099a0d263d51bf24971433af812c258d5bb0d6d508d521345da88f31
6
+ metadata.gz: 56ee41dc9d81d7c5e6496a65d0faef276bfb6b711bac219f3957631ce6b90105a0bc757a7a0191348c0df6cfcb29eab1a5e61e67263343df7897101b2072bb77
7
+ data.tar.gz: 45345e68fdb3e6ae24276a6b520b3f5bce4c8487400cd7768f0a2d0070cf2638ba4415db9e99f5efba97cc571b48ac1c69f4509134695d388b2f03de67637d77
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.755
1
+ 3.0.757
@@ -1632,7 +1632,7 @@ module TencentCloud
1632
1632
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1633
1633
  end
1634
1634
 
1635
- # 本接口(DescribeDBInstanceLogToCLS)用于查询实例慢日志、错误日志投递CLS的配置,通过appId、Region以及实例ID过滤出当前实例日志投递CLS的配置。
1635
+ # 本接口(DescribeDBInstanceLogToCLS)用于查询实例慢日志、错误日志投递CLS的配置,通过AppId、Region以及实例ID过滤出当前实例日志投递CLS的配置。
1636
1636
 
1637
1637
  # @param request: Request instance for DescribeDBInstanceLogToCLS.
1638
1638
  # @type request: :class:`Tencentcloud::cdb::V20170320::DescribeDBInstanceLogToCLSRequest`
@@ -5541,15 +5541,19 @@ module TencentCloud
5541
5541
  class DescribeDBInstanceLogToCLSRequest < TencentCloud::Common::AbstractModel
5542
5542
  # @param InstanceId: 实例ID
5543
5543
  # @type InstanceId: String
5544
+ # @param ClsRegion: CLS服务所在地域
5545
+ # @type ClsRegion: String
5544
5546
 
5545
- attr_accessor :InstanceId
5547
+ attr_accessor :InstanceId, :ClsRegion
5546
5548
 
5547
- def initialize(instanceid=nil)
5549
+ def initialize(instanceid=nil, clsregion=nil)
5548
5550
  @InstanceId = instanceid
5551
+ @ClsRegion = clsregion
5549
5552
  end
5550
5553
 
5551
5554
  def deserialize(params)
5552
5555
  @InstanceId = params['InstanceId']
5556
+ @ClsRegion = params['ClsRegion']
5553
5557
  end
5554
5558
  end
5555
5559
 
@@ -8663,19 +8667,24 @@ module TencentCloud
8663
8667
  # @param LogTopicId: 日志主题ID
8664
8668
  # 注意:此字段可能返回 null,表示取不到有效值。
8665
8669
  # @type LogTopicId: String
8670
+ # @param ClsRegion: CLS服务所在地域
8671
+ # 注意:此字段可能返回 null,表示取不到有效值。
8672
+ # @type ClsRegion: String
8666
8673
 
8667
- attr_accessor :Status, :LogSetId, :LogTopicId
8674
+ attr_accessor :Status, :LogSetId, :LogTopicId, :ClsRegion
8668
8675
 
8669
- def initialize(status=nil, logsetid=nil, logtopicid=nil)
8676
+ def initialize(status=nil, logsetid=nil, logtopicid=nil, clsregion=nil)
8670
8677
  @Status = status
8671
8678
  @LogSetId = logsetid
8672
8679
  @LogTopicId = logtopicid
8680
+ @ClsRegion = clsregion
8673
8681
  end
8674
8682
 
8675
8683
  def deserialize(params)
8676
8684
  @Status = params['Status']
8677
8685
  @LogSetId = params['LogSetId']
8678
8686
  @LogTopicId = params['LogTopicId']
8687
+ @ClsRegion = params['ClsRegion']
8679
8688
  end
8680
8689
  end
8681
8690
 
@@ -9665,7 +9674,7 @@ module TencentCloud
9665
9674
  class ModifyDBInstanceLogToCLSRequest < TencentCloud::Common::AbstractModel
9666
9675
  # @param InstanceId: 实例ID
9667
9676
  # @type InstanceId: String
9668
- # @param LogType: 日志类型:error/slowLog
9677
+ # @param LogType: 日志类型:error/slowlog
9669
9678
  # @type LogType: String
9670
9679
  # @param Status: 投递状态:ON/OFF
9671
9680
  # @type Status: String
@@ -9681,10 +9690,12 @@ module TencentCloud
9681
9690
  # @type Period: Integer
9682
9691
  # @param CreateIndex: 创建日志主题时,是否创建索引
9683
9692
  # @type CreateIndex: Boolean
9693
+ # @param ClsRegion: CLS所在地域
9694
+ # @type ClsRegion: String
9684
9695
 
9685
- attr_accessor :InstanceId, :LogType, :Status, :CreateLogset, :Logset, :CreateLogTopic, :LogTopic, :Period, :CreateIndex
9696
+ attr_accessor :InstanceId, :LogType, :Status, :CreateLogset, :Logset, :CreateLogTopic, :LogTopic, :Period, :CreateIndex, :ClsRegion
9686
9697
 
9687
- def initialize(instanceid=nil, logtype=nil, status=nil, createlogset=nil, logset=nil, createlogtopic=nil, logtopic=nil, period=nil, createindex=nil)
9698
+ def initialize(instanceid=nil, logtype=nil, status=nil, createlogset=nil, logset=nil, createlogtopic=nil, logtopic=nil, period=nil, createindex=nil, clsregion=nil)
9688
9699
  @InstanceId = instanceid
9689
9700
  @LogType = logtype
9690
9701
  @Status = status
@@ -9694,6 +9705,7 @@ module TencentCloud
9694
9705
  @LogTopic = logtopic
9695
9706
  @Period = period
9696
9707
  @CreateIndex = createindex
9708
+ @ClsRegion = clsregion
9697
9709
  end
9698
9710
 
9699
9711
  def deserialize(params)
@@ -9706,6 +9718,7 @@ module TencentCloud
9706
9718
  @LogTopic = params['LogTopic']
9707
9719
  @Period = params['Period']
9708
9720
  @CreateIndex = params['CreateIndex']
9721
+ @ClsRegion = params['ClsRegion']
9709
9722
  end
9710
9723
  end
9711
9724
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.755
4
+ version: 3.0.757
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-22 00:00:00.000000000 Z
11
+ date: 2024-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20170320/client.rb
37
- - lib/v20170320/models.rb
38
36
  - lib/tencentcloud-sdk-cdb.rb
37
+ - lib/v20170320/models.rb
38
+ - lib/v20170320/client.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: