tencentcloud-sdk-cynosdb 3.0.819 → 3.0.820
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190107/models.rb +198 -15
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b80a00338932150d0476e4ac605202affc73e1f
|
4
|
+
data.tar.gz: e601a580096b6b3ad0b46bad3a98250f800174d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e530d7b0c52eb6fdcab56cb08ec639a9347ee8ee6fc604cfe00ec7ce92a330c5c60949e10e5c4c5aafc2cae53173f6fadfa29c2e9701521e0fb6043a7313c00b
|
7
|
+
data.tar.gz: 6b537bc064ec97bb7fc6f5860d8a8439cb209acb537483cf2e4f2527594899a451bcddea81ef5774f1ce9ae032fc2caa94e7f0f988e851f477920158c5bb1d31
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.820
|
data/lib/v20190107/models.rb
CHANGED
@@ -1192,6 +1192,52 @@ module TencentCloud
|
|
1192
1192
|
end
|
1193
1193
|
end
|
1194
1194
|
|
1195
|
+
# CLS日志投递配置
|
1196
|
+
class CLSInfo < TencentCloud::Common::AbstractModel
|
1197
|
+
# @param TopicOperation: 日志主题操作:可选create,reuse。
|
1198
|
+
# create:新增日志主题,使用TopicName创建日志主题。
|
1199
|
+
# reuse:使用已有日志主题,使用TopicId指定日志主题。
|
1200
|
+
# 不允许使用已有日志主题且新建日志集的组合。
|
1201
|
+
# @type TopicOperation: String
|
1202
|
+
# @param GroupOperation: 日志集操作:可选create,reuse。
|
1203
|
+
# create:新增日志集,使用GroupName创建日志集。
|
1204
|
+
# reuse:使用已有日志集,使用GroupId指定日志集。
|
1205
|
+
# 不允许使用已有日志主题且新建日志集的组合。
|
1206
|
+
# @type GroupOperation: String
|
1207
|
+
# @param Region: 日志投递地域
|
1208
|
+
# @type Region: String
|
1209
|
+
# @param TopicId: 日志主题id
|
1210
|
+
# @type TopicId: String
|
1211
|
+
# @param TopicName: 日志主题name
|
1212
|
+
# @type TopicName: String
|
1213
|
+
# @param GroupId: 日志集id
|
1214
|
+
# @type GroupId: String
|
1215
|
+
# @param GroupName: 日志集name
|
1216
|
+
# @type GroupName: String
|
1217
|
+
|
1218
|
+
attr_accessor :TopicOperation, :GroupOperation, :Region, :TopicId, :TopicName, :GroupId, :GroupName
|
1219
|
+
|
1220
|
+
def initialize(topicoperation=nil, groupoperation=nil, region=nil, topicid=nil, topicname=nil, groupid=nil, groupname=nil)
|
1221
|
+
@TopicOperation = topicoperation
|
1222
|
+
@GroupOperation = groupoperation
|
1223
|
+
@Region = region
|
1224
|
+
@TopicId = topicid
|
1225
|
+
@TopicName = topicname
|
1226
|
+
@GroupId = groupid
|
1227
|
+
@GroupName = groupname
|
1228
|
+
end
|
1229
|
+
|
1230
|
+
def deserialize(params)
|
1231
|
+
@TopicOperation = params['TopicOperation']
|
1232
|
+
@GroupOperation = params['GroupOperation']
|
1233
|
+
@Region = params['Region']
|
1234
|
+
@TopicId = params['TopicId']
|
1235
|
+
@TopicName = params['TopicName']
|
1236
|
+
@GroupId = params['GroupId']
|
1237
|
+
@GroupName = params['GroupName']
|
1238
|
+
end
|
1239
|
+
end
|
1240
|
+
|
1195
1241
|
# CloseAuditService请求参数结构体
|
1196
1242
|
class CloseAuditServiceRequest < TencentCloud::Common::AbstractModel
|
1197
1243
|
# @param InstanceId: 实例ID。
|
@@ -1800,27 +1846,47 @@ module TencentCloud
|
|
1800
1846
|
|
1801
1847
|
# CreateCLSDelivery请求参数结构体
|
1802
1848
|
class CreateCLSDeliveryRequest < TencentCloud::Common::AbstractModel
|
1849
|
+
# @param InstanceId: 实例id
|
1850
|
+
# @type InstanceId: String
|
1851
|
+
# @param CLSInfoList: 日志投递配置
|
1852
|
+
# @type CLSInfoList: Array
|
1803
1853
|
|
1854
|
+
attr_accessor :InstanceId, :CLSInfoList
|
1804
1855
|
|
1805
|
-
def initialize()
|
1856
|
+
def initialize(instanceid=nil, clsinfolist=nil)
|
1857
|
+
@InstanceId = instanceid
|
1858
|
+
@CLSInfoList = clsinfolist
|
1806
1859
|
end
|
1807
1860
|
|
1808
1861
|
def deserialize(params)
|
1862
|
+
@InstanceId = params['InstanceId']
|
1863
|
+
unless params['CLSInfoList'].nil?
|
1864
|
+
@CLSInfoList = []
|
1865
|
+
params['CLSInfoList'].each do |i|
|
1866
|
+
clsinfo_tmp = CLSInfo.new
|
1867
|
+
clsinfo_tmp.deserialize(i)
|
1868
|
+
@CLSInfoList << clsinfo_tmp
|
1869
|
+
end
|
1870
|
+
end
|
1809
1871
|
end
|
1810
1872
|
end
|
1811
1873
|
|
1812
1874
|
# CreateCLSDelivery返回参数结构体
|
1813
1875
|
class CreateCLSDeliveryResponse < TencentCloud::Common::AbstractModel
|
1876
|
+
# @param TaskId: 异步任务id
|
1877
|
+
# @type TaskId: Integer
|
1814
1878
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1815
1879
|
# @type RequestId: String
|
1816
1880
|
|
1817
|
-
attr_accessor :RequestId
|
1881
|
+
attr_accessor :TaskId, :RequestId
|
1818
1882
|
|
1819
|
-
def initialize(requestid=nil)
|
1883
|
+
def initialize(taskid=nil, requestid=nil)
|
1884
|
+
@TaskId = taskid
|
1820
1885
|
@RequestId = requestid
|
1821
1886
|
end
|
1822
1887
|
|
1823
1888
|
def deserialize(params)
|
1889
|
+
@TaskId = params['TaskId']
|
1824
1890
|
@RequestId = params['RequestId']
|
1825
1891
|
end
|
1826
1892
|
end
|
@@ -4043,27 +4109,40 @@ module TencentCloud
|
|
4043
4109
|
|
4044
4110
|
# DeleteCLSDelivery请求参数结构体
|
4045
4111
|
class DeleteCLSDeliveryRequest < TencentCloud::Common::AbstractModel
|
4112
|
+
# @param InstanceId: 实例id
|
4113
|
+
# @type InstanceId: String
|
4114
|
+
# @param CLSTopicIds: 日志主题id
|
4115
|
+
# @type CLSTopicIds: Array
|
4046
4116
|
|
4117
|
+
attr_accessor :InstanceId, :CLSTopicIds
|
4047
4118
|
|
4048
|
-
def initialize()
|
4119
|
+
def initialize(instanceid=nil, clstopicids=nil)
|
4120
|
+
@InstanceId = instanceid
|
4121
|
+
@CLSTopicIds = clstopicids
|
4049
4122
|
end
|
4050
4123
|
|
4051
4124
|
def deserialize(params)
|
4125
|
+
@InstanceId = params['InstanceId']
|
4126
|
+
@CLSTopicIds = params['CLSTopicIds']
|
4052
4127
|
end
|
4053
4128
|
end
|
4054
4129
|
|
4055
4130
|
# DeleteCLSDelivery返回参数结构体
|
4056
4131
|
class DeleteCLSDeliveryResponse < TencentCloud::Common::AbstractModel
|
4132
|
+
# @param TaskId: 异步任务id
|
4133
|
+
# @type TaskId: Integer
|
4057
4134
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4058
4135
|
# @type RequestId: String
|
4059
4136
|
|
4060
|
-
attr_accessor :RequestId
|
4137
|
+
attr_accessor :TaskId, :RequestId
|
4061
4138
|
|
4062
|
-
def initialize(requestid=nil)
|
4139
|
+
def initialize(taskid=nil, requestid=nil)
|
4140
|
+
@TaskId = taskid
|
4063
4141
|
@RequestId = requestid
|
4064
4142
|
end
|
4065
4143
|
|
4066
4144
|
def deserialize(params)
|
4145
|
+
@TaskId = params['TaskId']
|
4067
4146
|
@RequestId = params['RequestId']
|
4068
4147
|
end
|
4069
4148
|
end
|
@@ -5710,27 +5789,47 @@ module TencentCloud
|
|
5710
5789
|
|
5711
5790
|
# DescribeInstanceCLSLogDelivery请求参数结构体
|
5712
5791
|
class DescribeInstanceCLSLogDeliveryRequest < TencentCloud::Common::AbstractModel
|
5792
|
+
# @param InstanceId: 实例id
|
5793
|
+
# @type InstanceId: String
|
5713
5794
|
|
5795
|
+
attr_accessor :InstanceId
|
5714
5796
|
|
5715
|
-
def initialize()
|
5797
|
+
def initialize(instanceid=nil)
|
5798
|
+
@InstanceId = instanceid
|
5716
5799
|
end
|
5717
5800
|
|
5718
5801
|
def deserialize(params)
|
5802
|
+
@InstanceId = params['InstanceId']
|
5719
5803
|
end
|
5720
5804
|
end
|
5721
5805
|
|
5722
5806
|
# DescribeInstanceCLSLogDelivery返回参数结构体
|
5723
5807
|
class DescribeInstanceCLSLogDeliveryResponse < TencentCloud::Common::AbstractModel
|
5808
|
+
# @param TotalCount: 总数量
|
5809
|
+
# @type TotalCount: Integer
|
5810
|
+
# @param InstanceCLSDeliveryInfos: 实例投递信息
|
5811
|
+
# @type InstanceCLSDeliveryInfos: Array
|
5724
5812
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5725
5813
|
# @type RequestId: String
|
5726
5814
|
|
5727
|
-
attr_accessor :RequestId
|
5815
|
+
attr_accessor :TotalCount, :InstanceCLSDeliveryInfos, :RequestId
|
5728
5816
|
|
5729
|
-
def initialize(requestid=nil)
|
5817
|
+
def initialize(totalcount=nil, instanceclsdeliveryinfos=nil, requestid=nil)
|
5818
|
+
@TotalCount = totalcount
|
5819
|
+
@InstanceCLSDeliveryInfos = instanceclsdeliveryinfos
|
5730
5820
|
@RequestId = requestid
|
5731
5821
|
end
|
5732
5822
|
|
5733
5823
|
def deserialize(params)
|
5824
|
+
@TotalCount = params['TotalCount']
|
5825
|
+
unless params['InstanceCLSDeliveryInfos'].nil?
|
5826
|
+
@InstanceCLSDeliveryInfos = []
|
5827
|
+
params['InstanceCLSDeliveryInfos'].each do |i|
|
5828
|
+
instanceclsdeliveryinfo_tmp = InstanceCLSDeliveryInfo.new
|
5829
|
+
instanceclsdeliveryinfo_tmp.deserialize(i)
|
5830
|
+
@InstanceCLSDeliveryInfos << instanceclsdeliveryinfo_tmp
|
5831
|
+
end
|
5832
|
+
end
|
5734
5833
|
@RequestId = params['RequestId']
|
5735
5834
|
end
|
5736
5835
|
end
|
@@ -7778,6 +7877,64 @@ module TencentCloud
|
|
7778
7877
|
end
|
7779
7878
|
end
|
7780
7879
|
|
7880
|
+
# 实例日志投递信息
|
7881
|
+
class InstanceCLSDeliveryInfo < TencentCloud::Common::AbstractModel
|
7882
|
+
# @param InstanceId: 实例id
|
7883
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7884
|
+
# @type InstanceId: String
|
7885
|
+
# @param InstanceName: 实例name
|
7886
|
+
|
7887
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7888
|
+
# @type InstanceName: String
|
7889
|
+
# @param TopicId: 日志主题id
|
7890
|
+
|
7891
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7892
|
+
# @type TopicId: String
|
7893
|
+
# @param TopicName: 日志主题name
|
7894
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7895
|
+
# @type TopicName: String
|
7896
|
+
# @param GroupId: 日志集id
|
7897
|
+
|
7898
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7899
|
+
# @type GroupId: String
|
7900
|
+
# @param GroupName: 日志集name
|
7901
|
+
|
7902
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7903
|
+
# @type GroupName: String
|
7904
|
+
# @param Region: 日志投递地域
|
7905
|
+
|
7906
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7907
|
+
# @type Region: String
|
7908
|
+
# @param Status: 投递状态creating,running,offlining,offlined
|
7909
|
+
|
7910
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
7911
|
+
# @type Status: String
|
7912
|
+
|
7913
|
+
attr_accessor :InstanceId, :InstanceName, :TopicId, :TopicName, :GroupId, :GroupName, :Region, :Status
|
7914
|
+
|
7915
|
+
def initialize(instanceid=nil, instancename=nil, topicid=nil, topicname=nil, groupid=nil, groupname=nil, region=nil, status=nil)
|
7916
|
+
@InstanceId = instanceid
|
7917
|
+
@InstanceName = instancename
|
7918
|
+
@TopicId = topicid
|
7919
|
+
@TopicName = topicname
|
7920
|
+
@GroupId = groupid
|
7921
|
+
@GroupName = groupname
|
7922
|
+
@Region = region
|
7923
|
+
@Status = status
|
7924
|
+
end
|
7925
|
+
|
7926
|
+
def deserialize(params)
|
7927
|
+
@InstanceId = params['InstanceId']
|
7928
|
+
@InstanceName = params['InstanceName']
|
7929
|
+
@TopicId = params['TopicId']
|
7930
|
+
@TopicName = params['TopicName']
|
7931
|
+
@GroupId = params['GroupId']
|
7932
|
+
@GroupName = params['GroupName']
|
7933
|
+
@Region = params['Region']
|
7934
|
+
@Status = params['Status']
|
7935
|
+
end
|
7936
|
+
end
|
7937
|
+
|
7781
7938
|
# 实例初始化配置信息
|
7782
7939
|
class InstanceInitInfo < TencentCloud::Common::AbstractModel
|
7783
7940
|
# @param Cpu: 实例cpu
|
@@ -12412,54 +12569,80 @@ module TencentCloud
|
|
12412
12569
|
|
12413
12570
|
# StartCLSDelivery请求参数结构体
|
12414
12571
|
class StartCLSDeliveryRequest < TencentCloud::Common::AbstractModel
|
12572
|
+
# @param InstanceId: 实例id
|
12573
|
+
# @type InstanceId: String
|
12574
|
+
# @param CLSTopicIds: 开通的日志主题id
|
12575
|
+
# @type CLSTopicIds: Array
|
12415
12576
|
|
12577
|
+
attr_accessor :InstanceId, :CLSTopicIds
|
12416
12578
|
|
12417
|
-
def initialize()
|
12579
|
+
def initialize(instanceid=nil, clstopicids=nil)
|
12580
|
+
@InstanceId = instanceid
|
12581
|
+
@CLSTopicIds = clstopicids
|
12418
12582
|
end
|
12419
12583
|
|
12420
12584
|
def deserialize(params)
|
12585
|
+
@InstanceId = params['InstanceId']
|
12586
|
+
@CLSTopicIds = params['CLSTopicIds']
|
12421
12587
|
end
|
12422
12588
|
end
|
12423
12589
|
|
12424
12590
|
# StartCLSDelivery返回参数结构体
|
12425
12591
|
class StartCLSDeliveryResponse < TencentCloud::Common::AbstractModel
|
12592
|
+
# @param TaskId: 异步任务id
|
12593
|
+
# @type TaskId: Integer
|
12426
12594
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12427
12595
|
# @type RequestId: String
|
12428
12596
|
|
12429
|
-
attr_accessor :RequestId
|
12597
|
+
attr_accessor :TaskId, :RequestId
|
12430
12598
|
|
12431
|
-
def initialize(requestid=nil)
|
12599
|
+
def initialize(taskid=nil, requestid=nil)
|
12600
|
+
@TaskId = taskid
|
12432
12601
|
@RequestId = requestid
|
12433
12602
|
end
|
12434
12603
|
|
12435
12604
|
def deserialize(params)
|
12605
|
+
@TaskId = params['TaskId']
|
12436
12606
|
@RequestId = params['RequestId']
|
12437
12607
|
end
|
12438
12608
|
end
|
12439
12609
|
|
12440
12610
|
# StopCLSDelivery请求参数结构体
|
12441
12611
|
class StopCLSDeliveryRequest < TencentCloud::Common::AbstractModel
|
12612
|
+
# @param InstanceId: 实例id
|
12613
|
+
# @type InstanceId: String
|
12614
|
+
# @param CLSTopicIds: 日志主题id
|
12615
|
+
# @type CLSTopicIds: Array
|
12442
12616
|
|
12617
|
+
attr_accessor :InstanceId, :CLSTopicIds
|
12443
12618
|
|
12444
|
-
def initialize()
|
12619
|
+
def initialize(instanceid=nil, clstopicids=nil)
|
12620
|
+
@InstanceId = instanceid
|
12621
|
+
@CLSTopicIds = clstopicids
|
12445
12622
|
end
|
12446
12623
|
|
12447
12624
|
def deserialize(params)
|
12625
|
+
@InstanceId = params['InstanceId']
|
12626
|
+
@CLSTopicIds = params['CLSTopicIds']
|
12448
12627
|
end
|
12449
12628
|
end
|
12450
12629
|
|
12451
12630
|
# StopCLSDelivery返回参数结构体
|
12452
12631
|
class StopCLSDeliveryResponse < TencentCloud::Common::AbstractModel
|
12632
|
+
# @param TaskId: 异步任务id
|
12633
|
+
# @type TaskId: Integer
|
12453
12634
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12454
12635
|
# @type RequestId: String
|
12455
12636
|
|
12456
|
-
attr_accessor :RequestId
|
12637
|
+
attr_accessor :TaskId, :RequestId
|
12457
12638
|
|
12458
|
-
def initialize(requestid=nil)
|
12639
|
+
def initialize(taskid=nil, requestid=nil)
|
12640
|
+
@TaskId = taskid
|
12459
12641
|
@RequestId = requestid
|
12460
12642
|
end
|
12461
12643
|
|
12462
12644
|
def deserialize(params)
|
12645
|
+
@TaskId = params['TaskId']
|
12463
12646
|
@RequestId = params['RequestId']
|
12464
12647
|
end
|
12465
12648
|
end
|
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.820
|
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-05-
|
11
|
+
date: 2024-05-13 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/tencentcloud-sdk-cynosdb.rb
|
36
37
|
- lib/v20190107/client.rb
|
37
38
|
- lib/v20190107/models.rb
|
38
|
-
- lib/tencentcloud-sdk-cynosdb.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|