tencentcloud-sdk-tsf 3.0.488 → 3.0.490

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/v20180326/models.rb +81 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7437c931b14f0822acc7d6b239ba7f51fd065044
4
- data.tar.gz: 6291fcef07fc01a9f7722ad52582aa768b80241e
3
+ metadata.gz: 03dd5a5663447f1975709f24a2594c4ef408a9d2
4
+ data.tar.gz: 1743e62074e1bf9b9a4233acd36047b8db4348e9
5
5
  SHA512:
6
- metadata.gz: dcd294a0fbb0b1747ec8eed0d5bc390e5410d639f7818b455ecd961fa1c9ef658f08548ab059c17422fd457fdaec0a877ad8e22c6dcf24b7914c9bdcefae797b
7
- data.tar.gz: 36e130ec8b76b4df5e11a7f119c55ad8c3e0a1afc820f1ab2b3a8e7d6bae0c64a031081730eddb6f96386e01491d6b1a66b4ade36c73537a2a8654648077606b
6
+ metadata.gz: be128df7ee3fa22708ab97a83b3de54b89c0d02cae04ecb000ce3d380f31afd272c6bbca4bfc4f9867acccc354200c40f23725a61bde3b775ba4f576a7c3f96b
7
+ data.tar.gz: 4bfc65952e11080ba375e9ae781fc803e8ffc2d839ba4dda0cd61e57ac728b12f840cb1fe9ab974b5e8a88c6e4b6a4e858b6a396743eb86e28985405136ac6d1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.488
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,分组唯一标识
@@ -6164,7 +6203,7 @@ module TencentCloud
6164
6203
  class DescribeContainerGroupsRequest < TencentCloud::Common::AbstractModel
6165
6204
  # @param SearchWord: 搜索字段,模糊搜索groupName字段
6166
6205
  # @type SearchWord: String
6167
- # @param ApplicationId: 分组所属应用ID
6206
+ # @param ApplicationId: 分组所属应用ID。必填
6168
6207
  # @type ApplicationId: String
6169
6208
  # @param OrderBy: 排序字段,默认为 createTime字段,支持id, name, createTime
6170
6209
  # @type OrderBy: String
@@ -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.488
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-06 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