tencentcloud-sdk-tsf 3.0.489 → 3.0.490

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/v20180326/models.rb +80 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5ca8004e8990312492ad683e3da6fb370d328566
4
- data.tar.gz: e7c14d74c2a0d98fc734a7fe1039e306f6cb6d03
3
+ metadata.gz: 03dd5a5663447f1975709f24a2594c4ef408a9d2
4
+ data.tar.gz: 1743e62074e1bf9b9a4233acd36047b8db4348e9
5
5
  SHA512:
6
- metadata.gz: 5d0ad138009119bab20f0da87250715dca8a106144820dccf026a44f337bd56b72971172e3783674fe78aeb4240e3aefd7967768cb527f075ae159a8d0dfdf17
7
- data.tar.gz: aff4fe344207f6532b4b6080e7b0ba04f1d08368b094e8f39908aa8e310da0c6eefb5791181840912ebb21de6fe353da29a97518db3db37c3d3eda86e313d827
6
+ metadata.gz: be128df7ee3fa22708ab97a83b3de54b89c0d02cae04ecb000ce3d380f31afd272c6bbca4bfc4f9867acccc354200c40f23725a61bde3b775ba4f576a7c3f96b
7
+ data.tar.gz: 4bfc65952e11080ba375e9ae781fc803e8ffc2d839ba4dda0cd61e57ac728b12f840cb1fe9ab974b5e8a88c6e4b6a4e858b6a396743eb86e28985405136ac6d1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.489
1
+ 3.0.490
@@ -329,10 +329,13 @@ module TencentCloud
329
329
  # @param Description: Api描述信息
330
330
  # 注意:此字段可能返回 null,表示取不到有效值。
331
331
  # @type Description: String
332
+ # @param ApiMatchType: API路径匹配类型。normal:普通API;wildcard:通配API。
333
+ # 注意:此字段可能返回 null,表示取不到有效值。
334
+ # @type ApiMatchType: String
332
335
 
333
- attr_accessor :ApiId, :NamespaceId, :NamespaceName, :MicroserviceId, :MicroserviceName, :Path, :PathMapping, :Method, :GroupId, :UsableStatus, :ReleaseStatus, :RateLimitStatus, :MockStatus, :CreatedTime, :UpdatedTime, :ReleasedTime, :GroupName, :Timeout, :Host, :ApiType, :Description
336
+ attr_accessor :ApiId, :NamespaceId, :NamespaceName, :MicroserviceId, :MicroserviceName, :Path, :PathMapping, :Method, :GroupId, :UsableStatus, :ReleaseStatus, :RateLimitStatus, :MockStatus, :CreatedTime, :UpdatedTime, :ReleasedTime, :GroupName, :Timeout, :Host, :ApiType, :Description, :ApiMatchType
334
337
 
335
- def initialize(apiid=nil, namespaceid=nil, namespacename=nil, microserviceid=nil, microservicename=nil, path=nil, pathmapping=nil, method=nil, groupid=nil, usablestatus=nil, releasestatus=nil, ratelimitstatus=nil, mockstatus=nil, createdtime=nil, updatedtime=nil, releasedtime=nil, groupname=nil, timeout=nil, host=nil, apitype=nil, description=nil)
338
+ def initialize(apiid=nil, namespaceid=nil, namespacename=nil, microserviceid=nil, microservicename=nil, path=nil, pathmapping=nil, method=nil, groupid=nil, usablestatus=nil, releasestatus=nil, ratelimitstatus=nil, mockstatus=nil, createdtime=nil, updatedtime=nil, releasedtime=nil, groupname=nil, timeout=nil, host=nil, apitype=nil, description=nil, apimatchtype=nil)
336
339
  @ApiId = apiid
337
340
  @NamespaceId = namespaceid
338
341
  @NamespaceName = namespacename
@@ -354,6 +357,7 @@ module TencentCloud
354
357
  @Host = host
355
358
  @ApiType = apitype
356
359
  @Description = description
360
+ @ApiMatchType = apimatchtype
357
361
  end
358
362
 
359
363
  def deserialize(params)
@@ -378,6 +382,7 @@ module TencentCloud
378
382
  @Host = params['Host']
379
383
  @ApiType = params['ApiType']
380
384
  @Description = params['Description']
385
+ @ApiMatchType = params['ApiMatchType']
381
386
  end
382
387
  end
383
388
 
@@ -4673,6 +4678,40 @@ module TencentCloud
4673
4678
  end
4674
4679
  end
4675
4680
 
4681
+ # kafka投递的topic和path的信息
4682
+ class DeliveryKafkaInfo < TencentCloud::Common::AbstractModel
4683
+ # @param Topic: 投递kafka的topic
4684
+ # 注意:此字段可能返回 null,表示取不到有效值。
4685
+ # @type Topic: String
4686
+ # @param Path: 采集日志的path
4687
+ # 注意:此字段可能返回 null,表示取不到有效值。
4688
+ # @type Path: Array
4689
+ # @param LineRule: default,默认换行符分行
4690
+ # time,按时间分行
4691
+ # custom, 选了custom那么CustomRule就要填入具体的自定义值
4692
+ # 注意:此字段可能返回 null,表示取不到有效值。
4693
+ # @type LineRule: String
4694
+ # @param CustomRule: 自定义的分行值
4695
+ # 注意:此字段可能返回 null,表示取不到有效值。
4696
+ # @type CustomRule: String
4697
+
4698
+ attr_accessor :Topic, :Path, :LineRule, :CustomRule
4699
+
4700
+ def initialize(topic=nil, path=nil, linerule=nil, customrule=nil)
4701
+ @Topic = topic
4702
+ @Path = path
4703
+ @LineRule = linerule
4704
+ @CustomRule = customrule
4705
+ end
4706
+
4707
+ def deserialize(params)
4708
+ @Topic = params['Topic']
4709
+ @Path = params['Path']
4710
+ @LineRule = params['LineRule']
4711
+ @CustomRule = params['CustomRule']
4712
+ end
4713
+ end
4714
+
4676
4715
  # DeployContainerGroup请求参数结构体
4677
4716
  class DeployContainerGroupRequest < TencentCloud::Common::AbstractModel
4678
4717
  # @param GroupId: 部署组ID,分组唯一标识
@@ -12281,10 +12320,28 @@ module TencentCloud
12281
12320
  # @param LineRule: 换行规则
12282
12321
  # 注意:此字段可能返回 null,表示取不到有效值。
12283
12322
  # @type LineRule: String
12323
+ # @param EnableAuth: 是否需要认证
12324
+ # 注意:此字段可能返回 null,表示取不到有效值。
12325
+ # @type EnableAuth: Boolean
12326
+ # @param Username: 用户名
12327
+ # 注意:此字段可能返回 null,表示取不到有效值。
12328
+ # @type Username: String
12329
+ # @param Password: 密码
12330
+ # 注意:此字段可能返回 null,表示取不到有效值。
12331
+ # @type Password: String
12332
+ # @param KafkaInfos: 投递的topic和path
12333
+ # 注意:此字段可能返回 null,表示取不到有效值。
12334
+ # @type KafkaInfos: Array
12335
+ # @param EnableGlobalLineRule: 是否应用单行规则
12336
+ # 注意:此字段可能返回 null,表示取不到有效值。
12337
+ # @type EnableGlobalLineRule: Boolean
12338
+ # @param CustomRule: 自定义分行规则
12339
+ # 注意:此字段可能返回 null,表示取不到有效值。
12340
+ # @type CustomRule: String
12284
12341
 
12285
- attr_accessor :ConfigId, :ConfigName, :CollectPath, :KafkaVIp, :KafkaVPort, :Topic, :LineRule
12342
+ attr_accessor :ConfigId, :ConfigName, :CollectPath, :KafkaVIp, :KafkaVPort, :Topic, :LineRule, :EnableAuth, :Username, :Password, :KafkaInfos, :EnableGlobalLineRule, :CustomRule
12286
12343
 
12287
- def initialize(configid=nil, configname=nil, collectpath=nil, kafkavip=nil, kafkavport=nil, topic=nil, linerule=nil)
12344
+ def initialize(configid=nil, configname=nil, collectpath=nil, kafkavip=nil, kafkavport=nil, topic=nil, linerule=nil, enableauth=nil, username=nil, password=nil, kafkainfos=nil, enablegloballinerule=nil, customrule=nil)
12288
12345
  @ConfigId = configid
12289
12346
  @ConfigName = configname
12290
12347
  @CollectPath = collectpath
@@ -12292,6 +12349,12 @@ module TencentCloud
12292
12349
  @KafkaVPort = kafkavport
12293
12350
  @Topic = topic
12294
12351
  @LineRule = linerule
12352
+ @EnableAuth = enableauth
12353
+ @Username = username
12354
+ @Password = password
12355
+ @KafkaInfos = kafkainfos
12356
+ @EnableGlobalLineRule = enablegloballinerule
12357
+ @CustomRule = customrule
12295
12358
  end
12296
12359
 
12297
12360
  def deserialize(params)
@@ -12302,6 +12365,19 @@ module TencentCloud
12302
12365
  @KafkaVPort = params['KafkaVPort']
12303
12366
  @Topic = params['Topic']
12304
12367
  @LineRule = params['LineRule']
12368
+ @EnableAuth = params['EnableAuth']
12369
+ @Username = params['Username']
12370
+ @Password = params['Password']
12371
+ unless params['KafkaInfos'].nil?
12372
+ @KafkaInfos = []
12373
+ params['KafkaInfos'].each do |i|
12374
+ deliverykafkainfo_tmp = DeliveryKafkaInfo.new
12375
+ deliverykafkainfo_tmp.deserialize(i)
12376
+ @KafkaInfos << deliverykafkainfo_tmp
12377
+ end
12378
+ end
12379
+ @EnableGlobalLineRule = params['EnableGlobalLineRule']
12380
+ @CustomRule = params['CustomRule']
12305
12381
  end
12306
12382
  end
12307
12383
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tsf
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.489
4
+ version: 3.0.490
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-01-09 00:00:00.000000000 Z
11
+ date: 2023-01-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common