tencentcloud-sdk-eb 3.0.517 → 3.0.518

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210416/models.rb +106 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3eb70fffd22beacc19726787c9e11c9dcdfecf51
4
- data.tar.gz: 8f5fe96075910edf7ff5c2b12b2422eed978c87c
3
+ metadata.gz: 9037a1597e439083ec2be58c63d5f05aa6592446
4
+ data.tar.gz: 9f9ecf74bfd4f2caebdb7058b02aad68c2938435
5
5
  SHA512:
6
- metadata.gz: 1d0e12bccc23fd909adb74fcfbc72e934b2e4831043f9095f75355515be698424263336ba4f8eac335d31a23e0fa2d23a3342e415ec63edc21c62bea4f3c42d2
7
- data.tar.gz: 3ecb10270bd02d6613b891dcdfbba40ecf64fad17b8204b33873ae159a92bd04e0d4d50848f47afc19ddb6b937f0075f075f5041029be60276bb1e6f382f4e00
6
+ metadata.gz: aa83dbd3a440deef830c3e182baba79e383ca826129c963bd78efe0c7e8e9965ea10e5a86d93b38d196f3312420bfc50409a1ed07cbe07762bcc19761a294ee2
7
+ data.tar.gz: 78cf236d0f72d8efd22a4054b6a0b0f2fd9eb86662e0aeaf453fef539aa7ee5a5f6e6ec291fb85d67f934735226f322fe9598fbf8a74e2637b1f4255512d07ec
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.517
1
+ 3.0.518
@@ -229,6 +229,28 @@ module TencentCloud
229
229
  end
230
230
  end
231
231
 
232
+ # 连接器基础信息
233
+ class ConnectionBrief < TencentCloud::Common::AbstractModel
234
+ # @param Type: 连接器类型
235
+ # 注意:此字段可能返回 null,表示取不到有效值。
236
+ # @type Type: String
237
+ # @param Status: 连接器状态
238
+ # 注意:此字段可能返回 null,表示取不到有效值。
239
+ # @type Status: String
240
+
241
+ attr_accessor :Type, :Status
242
+
243
+ def initialize(type=nil, status=nil)
244
+ @Type = type
245
+ @Status = status
246
+ end
247
+
248
+ def deserialize(params)
249
+ @Type = params['Type']
250
+ @Status = params['Status']
251
+ end
252
+ end
253
+
232
254
  # ConnectionDescription描述
233
255
  class ConnectionDescription < TencentCloud::Common::AbstractModel
234
256
  # @param ResourceDescription: 资源qcs六段式,更多参考 [资源六段式](https://cloud.tencent.com/document/product/598/10606)
@@ -239,13 +261,17 @@ module TencentCloud
239
261
  # @param CkafkaParams: ckafka参数
240
262
  # 注意:此字段可能返回 null,表示取不到有效值。
241
263
  # @type CkafkaParams: :class:`Tencentcloud::Eb.v20210416.models.CkafkaParams`
264
+ # @param DTSParams: data transfer service (DTS)参数
265
+ # 注意:此字段可能返回 null,表示取不到有效值。
266
+ # @type DTSParams: :class:`Tencentcloud::Eb.v20210416.models.DTSParams`
242
267
 
243
- attr_accessor :ResourceDescription, :APIGWParams, :CkafkaParams
268
+ attr_accessor :ResourceDescription, :APIGWParams, :CkafkaParams, :DTSParams
244
269
 
245
- def initialize(resourcedescription=nil, apigwparams=nil, ckafkaparams=nil)
270
+ def initialize(resourcedescription=nil, apigwparams=nil, ckafkaparams=nil, dtsparams=nil)
246
271
  @ResourceDescription = resourcedescription
247
272
  @APIGWParams = apigwparams
248
273
  @CkafkaParams = ckafkaparams
274
+ @DTSParams = dtsparams
249
275
  end
250
276
 
251
277
  def deserialize(params)
@@ -258,6 +284,10 @@ module TencentCloud
258
284
  @CkafkaParams = CkafkaParams.new
259
285
  @CkafkaParams.deserialize(params['CkafkaParams'])
260
286
  end
287
+ unless params['DTSParams'].nil?
288
+ @DTSParams = DTSParams.new
289
+ @DTSParams.deserialize(params['DTSParams'])
290
+ end
261
291
  end
262
292
  end
263
293
 
@@ -328,19 +358,23 @@ module TencentCloud
328
358
  # @type Description: String
329
359
  # @param SaveDays: EB存储时长
330
360
  # @type SaveDays: Integer
361
+ # @param EnableStore: EB是否开启存储
362
+ # @type EnableStore: Boolean
331
363
 
332
- attr_accessor :EventBusName, :Description, :SaveDays
364
+ attr_accessor :EventBusName, :Description, :SaveDays, :EnableStore
333
365
 
334
- def initialize(eventbusname=nil, description=nil, savedays=nil)
366
+ def initialize(eventbusname=nil, description=nil, savedays=nil, enablestore=nil)
335
367
  @EventBusName = eventbusname
336
368
  @Description = description
337
369
  @SaveDays = savedays
370
+ @EnableStore = enablestore
338
371
  end
339
372
 
340
373
  def deserialize(params)
341
374
  @EventBusName = params['EventBusName']
342
375
  @Description = params['Description']
343
376
  @SaveDays = params['SaveDays']
377
+ @EnableStore = params['EnableStore']
344
378
  end
345
379
  end
346
380
 
@@ -518,6 +552,17 @@ module TencentCloud
518
552
  end
519
553
  end
520
554
 
555
+ # Data Transfer Service参数
556
+ class DTSParams < TencentCloud::Common::AbstractModel
557
+
558
+
559
+ def initialize()
560
+ end
561
+
562
+ def deserialize(params)
563
+ end
564
+ end
565
+
521
566
  # rule对应的dlq配置
522
567
  class DeadLetterConfig < TencentCloud::Common::AbstractModel
523
568
  # @param DisposeMethod: 支持dlq、丢弃、忽略错误继续传递三种模式, 分别对应: DLQ,DROP,IGNORE_ERROR
@@ -825,16 +870,28 @@ module TencentCloud
825
870
  # @type EventBusId: String
826
871
  # @param Type: 事件集类型
827
872
  # @type Type: String
873
+ # @param PayMode: 计费模式
874
+ # 注意:此字段可能返回 null,表示取不到有效值。
875
+ # @type PayMode: String
876
+ # @param ConnectionBriefs: 连接器基础信息
877
+ # 注意:此字段可能返回 null,表示取不到有效值。
878
+ # @type ConnectionBriefs: Array
879
+ # @param TargetBriefs: 目标简要信息
880
+ # 注意:此字段可能返回 null,表示取不到有效值。
881
+ # @type TargetBriefs: Array
828
882
 
829
- attr_accessor :ModTime, :Description, :AddTime, :EventBusName, :EventBusId, :Type
883
+ attr_accessor :ModTime, :Description, :AddTime, :EventBusName, :EventBusId, :Type, :PayMode, :ConnectionBriefs, :TargetBriefs
830
884
 
831
- def initialize(modtime=nil, description=nil, addtime=nil, eventbusname=nil, eventbusid=nil, type=nil)
885
+ def initialize(modtime=nil, description=nil, addtime=nil, eventbusname=nil, eventbusid=nil, type=nil, paymode=nil, connectionbriefs=nil, targetbriefs=nil)
832
886
  @ModTime = modtime
833
887
  @Description = description
834
888
  @AddTime = addtime
835
889
  @EventBusName = eventbusname
836
890
  @EventBusId = eventbusid
837
891
  @Type = type
892
+ @PayMode = paymode
893
+ @ConnectionBriefs = connectionbriefs
894
+ @TargetBriefs = targetbriefs
838
895
  end
839
896
 
840
897
  def deserialize(params)
@@ -844,6 +901,23 @@ module TencentCloud
844
901
  @EventBusName = params['EventBusName']
845
902
  @EventBusId = params['EventBusId']
846
903
  @Type = params['Type']
904
+ @PayMode = params['PayMode']
905
+ unless params['ConnectionBriefs'].nil?
906
+ @ConnectionBriefs = []
907
+ params['ConnectionBriefs'].each do |i|
908
+ connectionbrief_tmp = ConnectionBrief.new
909
+ connectionbrief_tmp.deserialize(i)
910
+ @ConnectionBriefs << connectionbrief_tmp
911
+ end
912
+ end
913
+ unless params['TargetBriefs'].nil?
914
+ @TargetBriefs = []
915
+ params['TargetBriefs'].each do |i|
916
+ targetbrief_tmp = TargetBrief.new
917
+ targetbrief_tmp.deserialize(i)
918
+ @TargetBriefs << targetbrief_tmp
919
+ end
920
+ end
847
921
  end
848
922
  end
849
923
 
@@ -931,12 +1005,26 @@ module TencentCloud
931
1005
  # @type EventBusId: String
932
1006
  # @param Type: (已废弃)事件集类型
933
1007
  # @type Type: String
1008
+ # @param PayMode: 计费模式
1009
+ # @type PayMode: String
1010
+ # @param SaveDays: EB日志存储时长
1011
+ # 注意:此字段可能返回 null,表示取不到有效值。
1012
+ # @type SaveDays: Integer
1013
+ # @param LogTopicId: EB日志主题ID
1014
+ # 注意:此字段可能返回 null,表示取不到有效值。
1015
+ # @type LogTopicId: String
1016
+ # @param EnableStore: 是否开启存储
1017
+ # 注意:此字段可能返回 null,表示取不到有效值。
1018
+ # @type EnableStore: Boolean
1019
+ # @param LinkMode: 消息序列,是否有序
1020
+ # 注意:此字段可能返回 null,表示取不到有效值。
1021
+ # @type LinkMode: String
934
1022
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
935
1023
  # @type RequestId: String
936
1024
 
937
- attr_accessor :ModTime, :Description, :ClsTopicId, :AddTime, :ClsLogsetId, :EventBusName, :EventBusId, :Type, :RequestId
1025
+ attr_accessor :ModTime, :Description, :ClsTopicId, :AddTime, :ClsLogsetId, :EventBusName, :EventBusId, :Type, :PayMode, :SaveDays, :LogTopicId, :EnableStore, :LinkMode, :RequestId
938
1026
 
939
- def initialize(modtime=nil, description=nil, clstopicid=nil, addtime=nil, clslogsetid=nil, eventbusname=nil, eventbusid=nil, type=nil, requestid=nil)
1027
+ def initialize(modtime=nil, description=nil, clstopicid=nil, addtime=nil, clslogsetid=nil, eventbusname=nil, eventbusid=nil, type=nil, paymode=nil, savedays=nil, logtopicid=nil, enablestore=nil, linkmode=nil, requestid=nil)
940
1028
  @ModTime = modtime
941
1029
  @Description = description
942
1030
  @ClsTopicId = clstopicid
@@ -945,6 +1033,11 @@ module TencentCloud
945
1033
  @EventBusName = eventbusname
946
1034
  @EventBusId = eventbusid
947
1035
  @Type = type
1036
+ @PayMode = paymode
1037
+ @SaveDays = savedays
1038
+ @LogTopicId = logtopicid
1039
+ @EnableStore = enablestore
1040
+ @LinkMode = linkmode
948
1041
  @RequestId = requestid
949
1042
  end
950
1043
 
@@ -957,6 +1050,11 @@ module TencentCloud
957
1050
  @EventBusName = params['EventBusName']
958
1051
  @EventBusId = params['EventBusId']
959
1052
  @Type = params['Type']
1053
+ @PayMode = params['PayMode']
1054
+ @SaveDays = params['SaveDays']
1055
+ @LogTopicId = params['LogTopicId']
1056
+ @EnableStore = params['EnableStore']
1057
+ @LinkMode = params['LinkMode']
960
1058
  @RequestId = params['RequestId']
961
1059
  end
962
1060
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-eb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.517
4
+ version: 3.0.518
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-27 00:00:00.000000000 Z
11
+ date: 2023-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common