tencentcloud-sdk-cynosdb 3.0.871 → 3.0.873
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190107/models.rb +53 -12
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4088cbdcc86f978da035dd4f09f5e2a386efcd00
|
4
|
+
data.tar.gz: cad301bf51e0b4cfa4385ee27fd412d8630ac42e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1bcccad41afb564cdd44e8248df0b70d3f97429c271a22ad63b998536d341f163dbdf64d2a9f24a2b3e7c9bb067d63d5d22b480ce7c2fd17a7a5d82c7a7b1b1
|
7
|
+
data.tar.gz: 92c8a08f2af5dbf4d27b22ef04541019dfa5f6fd95044424e15e03ea3e9d4c0ba4d07cf56c89da2a6fdb4b2f4bd29e1c9a3aa016102c2a1836ea97e702fc5f50
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.873
|
data/lib/v20190107/models.rb
CHANGED
@@ -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.
|
4
|
+
version: 3.0.873
|
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-
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|