tencentcloud-sdk-cynosdb 3.0.872 → 3.0.874

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190107/models.rb +53 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc460a40b36773df7e0a7f43efd0759ddcb06610
4
- data.tar.gz: c925f79e28d1dcc65c8e4677b0bd7f7055a89f1c
3
+ metadata.gz: b0ab077c34fdb00f283f2d60d02c3640c422c6b6
4
+ data.tar.gz: eba2639fc3a47673d9b909a80ea34429ef995642
5
5
  SHA512:
6
- metadata.gz: fbb32a4c75488d42bd8cc9b974d933a2ab1d0f10c3c662fc72cc2c7c334c8b81d4cfbfc79184bec70283fb47fe6d24ff1a3ae581e2564cf9b8778c3e69fecb7c
7
- data.tar.gz: 8510077ea21163b333ce3535a1fac213dba44a0c492e3d95ea79d3722f9cb36bbd2dd1989d4a175c03f7c3dd46bf4b6592688119667d06f64b496f4f89478a2b
6
+ metadata.gz: fc737e5b8187bdcd537919381a7df03bb591d5040263716602a8c28d3003774ddaa446f40ac4b7d7e45614d5ece7221c5d1fbcf80e5c1ae5f6a1496590f8768d
7
+ data.tar.gz: 9bde774f336d5ec15ef7e60ad354106e104bde987231857baea5b1853a48d3a11c6e075a0c7027d10c6d2fa69c90d82ca3d3f9c25cd9468781a36411ceb3e51a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.872
1
+ 3.0.874
@@ -1904,12 +1904,18 @@ module TencentCloud
1904
1904
  # @type InstanceId: String
1905
1905
  # @param CLSInfoList: 日志投递配置
1906
1906
  # @type CLSInfoList: Array
1907
+ # @param LogType: 日志类型
1908
+ # @type LogType: String
1909
+ # @param IsInMaintainPeriod: 是否维护时间运行
1910
+ # @type IsInMaintainPeriod: String
1907
1911
 
1908
- attr_accessor :InstanceId, :CLSInfoList
1912
+ attr_accessor :InstanceId, :CLSInfoList, :LogType, :IsInMaintainPeriod
1909
1913
 
1910
- def initialize(instanceid=nil, clsinfolist=nil)
1914
+ def initialize(instanceid=nil, clsinfolist=nil, logtype=nil, isinmaintainperiod=nil)
1911
1915
  @InstanceId = instanceid
1912
1916
  @CLSInfoList = clsinfolist
1917
+ @LogType = logtype
1918
+ @IsInMaintainPeriod = isinmaintainperiod
1913
1919
  end
1914
1920
 
1915
1921
  def deserialize(params)
@@ -1922,6 +1928,8 @@ module TencentCloud
1922
1928
  @CLSInfoList << clsinfo_tmp
1923
1929
  end
1924
1930
  end
1931
+ @LogType = params['LogType']
1932
+ @IsInMaintainPeriod = params['IsInMaintainPeriod']
1925
1933
  end
1926
1934
  end
1927
1935
 
@@ -4172,17 +4180,25 @@ module TencentCloud
4172
4180
  # @type InstanceId: String
4173
4181
  # @param CLSTopicIds: 日志主题id
4174
4182
  # @type CLSTopicIds: Array
4183
+ # @param LogType: 日志类型
4184
+ # @type LogType: String
4185
+ # @param IsInMaintainPeriod: 是否维护时间运行
4186
+ # @type IsInMaintainPeriod: String
4175
4187
 
4176
- attr_accessor :InstanceId, :CLSTopicIds
4188
+ attr_accessor :InstanceId, :CLSTopicIds, :LogType, :IsInMaintainPeriod
4177
4189
 
4178
- def initialize(instanceid=nil, clstopicids=nil)
4190
+ def initialize(instanceid=nil, clstopicids=nil, logtype=nil, isinmaintainperiod=nil)
4179
4191
  @InstanceId = instanceid
4180
4192
  @CLSTopicIds = clstopicids
4193
+ @LogType = logtype
4194
+ @IsInMaintainPeriod = isinmaintainperiod
4181
4195
  end
4182
4196
 
4183
4197
  def deserialize(params)
4184
4198
  @InstanceId = params['InstanceId']
4185
4199
  @CLSTopicIds = params['CLSTopicIds']
4200
+ @LogType = params['LogType']
4201
+ @IsInMaintainPeriod = params['IsInMaintainPeriod']
4186
4202
  end
4187
4203
  end
4188
4204
 
@@ -5850,15 +5866,19 @@ module TencentCloud
5850
5866
  class DescribeInstanceCLSLogDeliveryRequest < TencentCloud::Common::AbstractModel
5851
5867
  # @param InstanceId: 实例id
5852
5868
  # @type InstanceId: String
5869
+ # @param LogType: 日志类型
5870
+ # @type LogType: String
5853
5871
 
5854
- attr_accessor :InstanceId
5872
+ attr_accessor :InstanceId, :LogType
5855
5873
 
5856
- def initialize(instanceid=nil)
5874
+ def initialize(instanceid=nil, logtype=nil)
5857
5875
  @InstanceId = instanceid
5876
+ @LogType = logtype
5858
5877
  end
5859
5878
 
5860
5879
  def deserialize(params)
5861
5880
  @InstanceId = params['InstanceId']
5881
+ @LogType = params['LogType']
5862
5882
  end
5863
5883
  end
5864
5884
 
@@ -8100,10 +8120,13 @@ module TencentCloud
8100
8120
 
8101
8121
  # 注意:此字段可能返回 null,表示取不到有效值。
8102
8122
  # @type Status: String
8123
+ # @param LogType: 日志类型
8124
+ # 注意:此字段可能返回 null,表示取不到有效值。
8125
+ # @type LogType: String
8103
8126
 
8104
- attr_accessor :InstanceId, :InstanceName, :TopicId, :TopicName, :GroupId, :GroupName, :Region, :Status
8127
+ attr_accessor :InstanceId, :InstanceName, :TopicId, :TopicName, :GroupId, :GroupName, :Region, :Status, :LogType
8105
8128
 
8106
- def initialize(instanceid=nil, instancename=nil, topicid=nil, topicname=nil, groupid=nil, groupname=nil, region=nil, status=nil)
8129
+ def initialize(instanceid=nil, instancename=nil, topicid=nil, topicname=nil, groupid=nil, groupname=nil, region=nil, status=nil, logtype=nil)
8107
8130
  @InstanceId = instanceid
8108
8131
  @InstanceName = instancename
8109
8132
  @TopicId = topicid
@@ -8112,6 +8135,7 @@ module TencentCloud
8112
8135
  @GroupName = groupname
8113
8136
  @Region = region
8114
8137
  @Status = status
8138
+ @LogType = logtype
8115
8139
  end
8116
8140
 
8117
8141
  def deserialize(params)
@@ -8123,6 +8147,7 @@ module TencentCloud
8123
8147
  @GroupName = params['GroupName']
8124
8148
  @Region = params['Region']
8125
8149
  @Status = params['Status']
8150
+ @LogType = params['LogType']
8126
8151
  end
8127
8152
  end
8128
8153
 
@@ -13145,17 +13170,25 @@ module TencentCloud
13145
13170
  # @type InstanceId: String
13146
13171
  # @param CLSTopicIds: 开通的日志主题id
13147
13172
  # @type CLSTopicIds: Array
13173
+ # @param LogType: 日志类型
13174
+ # @type LogType: String
13175
+ # @param IsInMaintainPeriod: 是否维护时间运行
13176
+ # @type IsInMaintainPeriod: String
13148
13177
 
13149
- attr_accessor :InstanceId, :CLSTopicIds
13178
+ attr_accessor :InstanceId, :CLSTopicIds, :LogType, :IsInMaintainPeriod
13150
13179
 
13151
- def initialize(instanceid=nil, clstopicids=nil)
13180
+ def initialize(instanceid=nil, clstopicids=nil, logtype=nil, isinmaintainperiod=nil)
13152
13181
  @InstanceId = instanceid
13153
13182
  @CLSTopicIds = clstopicids
13183
+ @LogType = logtype
13184
+ @IsInMaintainPeriod = isinmaintainperiod
13154
13185
  end
13155
13186
 
13156
13187
  def deserialize(params)
13157
13188
  @InstanceId = params['InstanceId']
13158
13189
  @CLSTopicIds = params['CLSTopicIds']
13190
+ @LogType = params['LogType']
13191
+ @IsInMaintainPeriod = params['IsInMaintainPeriod']
13159
13192
  end
13160
13193
  end
13161
13194
 
@@ -13185,17 +13218,25 @@ module TencentCloud
13185
13218
  # @type InstanceId: String
13186
13219
  # @param CLSTopicIds: 日志主题id
13187
13220
  # @type CLSTopicIds: Array
13221
+ # @param LogType: 日志类型
13222
+ # @type LogType: String
13223
+ # @param IsInMaintainPeriod: 是否维护时间运行
13224
+ # @type IsInMaintainPeriod: String
13188
13225
 
13189
- attr_accessor :InstanceId, :CLSTopicIds
13226
+ attr_accessor :InstanceId, :CLSTopicIds, :LogType, :IsInMaintainPeriod
13190
13227
 
13191
- def initialize(instanceid=nil, clstopicids=nil)
13228
+ def initialize(instanceid=nil, clstopicids=nil, logtype=nil, isinmaintainperiod=nil)
13192
13229
  @InstanceId = instanceid
13193
13230
  @CLSTopicIds = clstopicids
13231
+ @LogType = logtype
13232
+ @IsInMaintainPeriod = isinmaintainperiod
13194
13233
  end
13195
13234
 
13196
13235
  def deserialize(params)
13197
13236
  @InstanceId = params['InstanceId']
13198
13237
  @CLSTopicIds = params['CLSTopicIds']
13238
+ @LogType = params['LogType']
13239
+ @IsInMaintainPeriod = params['IsInMaintainPeriod']
13199
13240
  end
13200
13241
  end
13201
13242
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cynosdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.872
4
+ version: 3.0.874
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-07-24 00:00:00.000000000 Z
11
+ date: 2024-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common