tencentcloud-sdk-tsf 3.0.506 → 3.0.508

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 +66 -11
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5fb17854d5cf3a6a675e734ae93fcc7237ff9613
4
- data.tar.gz: 898d0182f8492445e09c91923e3d4058357439c6
3
+ metadata.gz: 57c93802b814bec986abe690c469a095e401ee2c
4
+ data.tar.gz: fe601d0fb687a2d8d2e4a35cbb45a71e14ec021a
5
5
  SHA512:
6
- metadata.gz: 89bee291a1ad91566df9877826e3460c83e442e4645b61699aa8f0a77e68706d57a87d73f0ec10afc5fdf32576e5c559d1500d8c23a22b5b3c69398be9eb6155
7
- data.tar.gz: c378dd0b133dcf816e5f94ffef4afa6516b47d8c899ea08f535c0c48252a27e6051040e6e35d4c76ecd828e3748842bab1b5dd61a03bf995c34cfbb2196a07a8
6
+ metadata.gz: b2be909ff155ad3ccb5b6478f83fcdd5d0a30b59155597e6896f588a7060ffe9da0e8a290bfc6ba57f02a8dc2f0bcd231cd823db581cfe5a1e7360c05065adbe
7
+ data.tar.gz: 95124d207ac32cefc3c7beb9102c6133b1e320622e18bbb9d97683c8722076948ef3298939ad2551caa9b925e56b637e3014f94774c03e2eb4c34af0231add08
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.506
1
+ 3.0.508
@@ -332,10 +332,22 @@ module TencentCloud
332
332
  # @param ApiMatchType: API路径匹配类型。normal:普通API;wildcard:通配API。
333
333
  # 注意:此字段可能返回 null,表示取不到有效值。
334
334
  # @type ApiMatchType: String
335
+ # @param RpcExt: RPC 额外信息
336
+ # 注意:此字段可能返回 null,表示取不到有效值。
337
+ # @type RpcExt: String
338
+ # @param GatewayDeployGroupId: 部署组id
339
+ # 注意:此字段可能返回 null,表示取不到有效值。
340
+ # @type GatewayDeployGroupId: String
341
+ # @param Md5: md5
342
+ # 注意:此字段可能返回 null,表示取不到有效值。
343
+ # @type Md5: String
344
+ # @param RpcType: RPC 类型
345
+ # 注意:此字段可能返回 null,表示取不到有效值。
346
+ # @type RpcType: String
335
347
 
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
348
+ attr_accessor :ApiId, :NamespaceId, :NamespaceName, :MicroserviceId, :MicroserviceName, :Path, :PathMapping, :Method, :GroupId, :UsableStatus, :ReleaseStatus, :RateLimitStatus, :MockStatus, :CreatedTime, :UpdatedTime, :ReleasedTime, :GroupName, :Timeout, :Host, :ApiType, :Description, :ApiMatchType, :RpcExt, :GatewayDeployGroupId, :Md5, :RpcType
337
349
 
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)
350
+ 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, rpcext=nil, gatewaydeploygroupid=nil, md5=nil, rpctype=nil)
339
351
  @ApiId = apiid
340
352
  @NamespaceId = namespaceid
341
353
  @NamespaceName = namespacename
@@ -358,6 +370,10 @@ module TencentCloud
358
370
  @ApiType = apitype
359
371
  @Description = description
360
372
  @ApiMatchType = apimatchtype
373
+ @RpcExt = rpcext
374
+ @GatewayDeployGroupId = gatewaydeploygroupid
375
+ @Md5 = md5
376
+ @RpcType = rpctype
361
377
  end
362
378
 
363
379
  def deserialize(params)
@@ -383,6 +399,10 @@ module TencentCloud
383
399
  @ApiType = params['ApiType']
384
400
  @Description = params['Description']
385
401
  @ApiMatchType = params['ApiMatchType']
402
+ @RpcExt = params['RpcExt']
403
+ @GatewayDeployGroupId = params['GatewayDeployGroupId']
404
+ @Md5 = params['Md5']
405
+ @RpcType = params['RpcType']
386
406
  end
387
407
  end
388
408
 
@@ -2155,7 +2175,7 @@ module TencentCloud
2155
2175
  end
2156
2176
  end
2157
2177
 
2158
- # 获取部署组
2178
+ # 获取部署组
2159
2179
  class ContainerGroupDeploy < TencentCloud::Common::AbstractModel
2160
2180
  # @param GroupId: 部署组id
2161
2181
  # 注意:此字段可能返回 null,表示取不到有效值。
@@ -12130,10 +12150,13 @@ module TencentCloud
12130
12150
  # @param ApplicationNameReal: ApplicationName值
12131
12151
  # 注意:此字段可能返回 null,表示取不到有效值。
12132
12152
  # @type ApplicationNameReal: String
12153
+ # @param Public: 是否公共,1:公有,0:私有
12154
+ # 注意:此字段可能返回 null,表示取不到有效值。
12155
+ # @type Public: Integer
12133
12156
 
12134
- attr_accessor :Reponame, :Repotype, :TagCount, :IsPublic, :IsUserFavor, :IsQcloudOfficial, :FavorCount, :PullCount, :Description, :CreationTime, :UpdateTime, :TcrRepoInfo, :TcrBindingId, :ApplicationId, :ApplicationName, :ApplicationNameReal
12157
+ attr_accessor :Reponame, :Repotype, :TagCount, :IsPublic, :IsUserFavor, :IsQcloudOfficial, :FavorCount, :PullCount, :Description, :CreationTime, :UpdateTime, :TcrRepoInfo, :TcrBindingId, :ApplicationId, :ApplicationName, :ApplicationNameReal, :Public
12135
12158
 
12136
- def initialize(reponame=nil, repotype=nil, tagcount=nil, ispublic=nil, isuserfavor=nil, isqcloudofficial=nil, favorcount=nil, pullcount=nil, description=nil, creationtime=nil, updatetime=nil, tcrrepoinfo=nil, tcrbindingid=nil, applicationid=nil, applicationname=nil, applicationnamereal=nil)
12159
+ def initialize(reponame=nil, repotype=nil, tagcount=nil, ispublic=nil, isuserfavor=nil, isqcloudofficial=nil, favorcount=nil, pullcount=nil, description=nil, creationtime=nil, updatetime=nil, tcrrepoinfo=nil, tcrbindingid=nil, applicationid=nil, applicationname=nil, applicationnamereal=nil, public=nil)
12137
12160
  @Reponame = reponame
12138
12161
  @Repotype = repotype
12139
12162
  @TagCount = tagcount
@@ -12150,6 +12173,7 @@ module TencentCloud
12150
12173
  @ApplicationId = applicationid
12151
12174
  @ApplicationName = applicationname
12152
12175
  @ApplicationNameReal = applicationnamereal
12176
+ @Public = public
12153
12177
  end
12154
12178
 
12155
12179
  def deserialize(params)
@@ -12175,6 +12199,7 @@ module TencentCloud
12175
12199
  @ApplicationName.deserialize(params['ApplicationName'])
12176
12200
  end
12177
12201
  @ApplicationNameReal = params['ApplicationNameReal']
12202
+ @Public = params['Public']
12178
12203
  end
12179
12204
  end
12180
12205
 
@@ -12983,10 +13008,13 @@ module TencentCloud
12983
13008
  # @param CustomRule: 自定义分行规则
12984
13009
  # 注意:此字段可能返回 null,表示取不到有效值。
12985
13010
  # @type CustomRule: String
13011
+ # @param KafkaAddress: KafkaAddress
13012
+ # 注意:此字段可能返回 null,表示取不到有效值。
13013
+ # @type KafkaAddress: String
12986
13014
 
12987
- attr_accessor :ConfigId, :ConfigName, :CollectPath, :KafkaVIp, :KafkaVPort, :Topic, :LineRule, :EnableAuth, :Username, :Password, :KafkaInfos, :EnableGlobalLineRule, :CustomRule
13015
+ attr_accessor :ConfigId, :ConfigName, :CollectPath, :KafkaVIp, :KafkaVPort, :Topic, :LineRule, :EnableAuth, :Username, :Password, :KafkaInfos, :EnableGlobalLineRule, :CustomRule, :KafkaAddress
12988
13016
 
12989
- 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)
13017
+ 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, kafkaaddress=nil)
12990
13018
  @ConfigId = configid
12991
13019
  @ConfigName = configname
12992
13020
  @CollectPath = collectpath
@@ -13000,6 +13028,7 @@ module TencentCloud
13000
13028
  @KafkaInfos = kafkainfos
13001
13029
  @EnableGlobalLineRule = enablegloballinerule
13002
13030
  @CustomRule = customrule
13031
+ @KafkaAddress = kafkaaddress
13003
13032
  end
13004
13033
 
13005
13034
  def deserialize(params)
@@ -13023,6 +13052,7 @@ module TencentCloud
13023
13052
  end
13024
13053
  @EnableGlobalLineRule = params['EnableGlobalLineRule']
13025
13054
  @CustomRule = params['CustomRule']
13055
+ @KafkaAddress = params['KafkaAddress']
13026
13056
  end
13027
13057
  end
13028
13058
 
@@ -16055,10 +16085,16 @@ module TencentCloud
16055
16085
  # @param Description: 备注
16056
16086
  # 注意:此字段可能返回 null,表示取不到有效值。
16057
16087
  # @type Description: String
16088
+ # @param DisableMetricAS: 是否关闭指标伸缩, 默认0, 0:打开指标伸缩 1:关闭指标伸缩
16089
+ # 注意:此字段可能返回 null,表示取不到有效值。
16090
+ # @type DisableMetricAS: Integer
16091
+ # @param EnableCronAS: 开启定时伸缩规则, 默认0, 0:关闭定时伸缩 1:开启定时伸缩
16092
+ # 注意:此字段可能返回 null,表示取不到有效值。
16093
+ # @type EnableCronAS: Integer
16058
16094
 
16059
- attr_accessor :RuleId, :Name, :ExpandVmCountLimit, :ShrinkVmCountLimit, :GroupCount, :Desc, :Description
16095
+ attr_accessor :RuleId, :Name, :ExpandVmCountLimit, :ShrinkVmCountLimit, :GroupCount, :Desc, :Description, :DisableMetricAS, :EnableCronAS
16060
16096
 
16061
- def initialize(ruleid=nil, name=nil, expandvmcountlimit=nil, shrinkvmcountlimit=nil, groupcount=nil, desc=nil, description=nil)
16097
+ def initialize(ruleid=nil, name=nil, expandvmcountlimit=nil, shrinkvmcountlimit=nil, groupcount=nil, desc=nil, description=nil, disablemetricas=nil, enablecronas=nil)
16062
16098
  @RuleId = ruleid
16063
16099
  @Name = name
16064
16100
  @ExpandVmCountLimit = expandvmcountlimit
@@ -16066,6 +16102,8 @@ module TencentCloud
16066
16102
  @GroupCount = groupcount
16067
16103
  @Desc = desc
16068
16104
  @Description = description
16105
+ @DisableMetricAS = disablemetricas
16106
+ @EnableCronAS = enablecronas
16069
16107
  end
16070
16108
 
16071
16109
  def deserialize(params)
@@ -16076,6 +16114,8 @@ module TencentCloud
16076
16114
  @GroupCount = params['GroupCount']
16077
16115
  @Desc = params['Desc']
16078
16116
  @Description = params['Description']
16117
+ @DisableMetricAS = params['DisableMetricAS']
16118
+ @EnableCronAS = params['EnableCronAS']
16079
16119
  end
16080
16120
  end
16081
16121
 
@@ -18360,19 +18400,34 @@ module TencentCloud
18360
18400
  # @param Id: 单元化命名空间ID
18361
18401
  # 注意:此字段可能返回 null,表示取不到有效值。
18362
18402
  # @type Id: String
18403
+ # @param GatewayInstanceId: 网关实体ID
18404
+ # 注意:此字段可能返回 null,表示取不到有效值。
18405
+ # @type GatewayInstanceId: String
18406
+ # @param CreatedTime: 创建时间
18407
+ # 注意:此字段可能返回 null,表示取不到有效值。
18408
+ # @type CreatedTime: String
18409
+ # @param UpdatedTime: 更新时间
18410
+ # 注意:此字段可能返回 null,表示取不到有效值。
18411
+ # @type UpdatedTime: String
18363
18412
 
18364
- attr_accessor :NamespaceId, :NamespaceName, :Id
18413
+ attr_accessor :NamespaceId, :NamespaceName, :Id, :GatewayInstanceId, :CreatedTime, :UpdatedTime
18365
18414
 
18366
- def initialize(namespaceid=nil, namespacename=nil, id=nil)
18415
+ def initialize(namespaceid=nil, namespacename=nil, id=nil, gatewayinstanceid=nil, createdtime=nil, updatedtime=nil)
18367
18416
  @NamespaceId = namespaceid
18368
18417
  @NamespaceName = namespacename
18369
18418
  @Id = id
18419
+ @GatewayInstanceId = gatewayinstanceid
18420
+ @CreatedTime = createdtime
18421
+ @UpdatedTime = updatedtime
18370
18422
  end
18371
18423
 
18372
18424
  def deserialize(params)
18373
18425
  @NamespaceId = params['NamespaceId']
18374
18426
  @NamespaceName = params['NamespaceName']
18375
18427
  @Id = params['Id']
18428
+ @GatewayInstanceId = params['GatewayInstanceId']
18429
+ @CreatedTime = params['CreatedTime']
18430
+ @UpdatedTime = params['UpdatedTime']
18376
18431
  end
18377
18432
  end
18378
18433
 
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.506
4
+ version: 3.0.508
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-10 00:00:00.000000000 Z
11
+ date: 2023-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common