tencentcloud-sdk-tsf 3.0.902 → 3.0.904

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 +25 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d1d4f5da0ef298b133debcf043290e968fc35caf
4
- data.tar.gz: 9622f0cc174c0db82e4b4fd083c605425e667184
3
+ metadata.gz: 5876b3586886e70540eda256746d580a29262c7c
4
+ data.tar.gz: 12cd0876aba4832e61f75eb51a61f4f547861f13
5
5
  SHA512:
6
- metadata.gz: 74a0ec8a1e67c36d23db95e254ff3eb216224645c82a961c4852da70fb63802e1bb8124e6ef3d40074932a06e791332ffe39d3166e00c33e0ec751069303b1f5
7
- data.tar.gz: d7184632f150e0a06b745dbacc6394723363e7044a49b4919d80634b3f15dc0796323c048d601aa8cd203e12dc905f6004ec7d889570efb5f871858635069285
6
+ metadata.gz: 845175e4a298f43d595d17edebf21ea0389a556167bee1be7f3e41619c0bd8371352676ae77f7114ca93226121b693fc38a239e8112dc19b79ba9cfac0fea7a7
7
+ data.tar.gz: 51f7951b8bb01f47c687987f47e9b1c1e0f1a4dcafaab9518d13fe17933c0bfd79b4ad3c4aff7528c7833da375e0b1c4f5e82236b0349dd2664b04cada73f684
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.902
1
+ 3.0.904
@@ -657,10 +657,19 @@ module TencentCloud
657
657
  # @param UpdatedTime: 更新时间
658
658
  # 注意:此字段可能返回 null,表示取不到有效值。
659
659
  # @type UpdatedTime: String
660
+ # @param Limit: 分页参数limit
661
+ # 注意:此字段可能返回 null,表示取不到有效值。
662
+ # @type Limit: Integer
663
+ # @param Offset: 分页参数offset
664
+ # 注意:此字段可能返回 null,表示取不到有效值。
665
+ # @type Offset: Integer
666
+ # @param AppId: AppId
667
+ # 注意:此字段可能返回 null,表示取不到有效值。
668
+ # @type AppId: String
660
669
 
661
- attr_accessor :RuleId, :ApiId, :RuleName, :MaxQps, :UsableStatus, :RuleContent, :TsfRuleId, :Description, :CreatedTime, :UpdatedTime
670
+ attr_accessor :RuleId, :ApiId, :RuleName, :MaxQps, :UsableStatus, :RuleContent, :TsfRuleId, :Description, :CreatedTime, :UpdatedTime, :Limit, :Offset, :AppId
662
671
 
663
- def initialize(ruleid=nil, apiid=nil, rulename=nil, maxqps=nil, usablestatus=nil, rulecontent=nil, tsfruleid=nil, description=nil, createdtime=nil, updatedtime=nil)
672
+ def initialize(ruleid=nil, apiid=nil, rulename=nil, maxqps=nil, usablestatus=nil, rulecontent=nil, tsfruleid=nil, description=nil, createdtime=nil, updatedtime=nil, limit=nil, offset=nil, appid=nil)
664
673
  @RuleId = ruleid
665
674
  @ApiId = apiid
666
675
  @RuleName = rulename
@@ -671,6 +680,9 @@ module TencentCloud
671
680
  @Description = description
672
681
  @CreatedTime = createdtime
673
682
  @UpdatedTime = updatedtime
683
+ @Limit = limit
684
+ @Offset = offset
685
+ @AppId = appid
674
686
  end
675
687
 
676
688
  def deserialize(params)
@@ -684,6 +696,9 @@ module TencentCloud
684
696
  @Description = params['Description']
685
697
  @CreatedTime = params['CreatedTime']
686
698
  @UpdatedTime = params['UpdatedTime']
699
+ @Limit = params['Limit']
700
+ @Offset = params['Offset']
701
+ @AppId = params['AppId']
687
702
  end
688
703
  end
689
704
 
@@ -1209,8 +1224,8 @@ module TencentCloud
1209
1224
 
1210
1225
  attr_accessor :ConfigId, :ConfigName, :ConfigPath, :ConfigDesc, :ConfigTags, :ConfigPipeline, :ConfigCreateTime, :ConfigUpdateTime, :ConfigSchema, :ConfigAssociatedGroups, :ConfigAssociatedGroupList
1211
1226
  extend Gem::Deprecate
1212
- deprecate :ConfigAssociatedGroups, :none, 2024, 7
1213
- deprecate :ConfigAssociatedGroups=, :none, 2024, 7
1227
+ deprecate :ConfigAssociatedGroups, :none, 2024, 9
1228
+ deprecate :ConfigAssociatedGroups=, :none, 2024, 9
1214
1229
 
1215
1230
  def initialize(configid=nil, configname=nil, configpath=nil, configdesc=nil, configtags=nil, configpipeline=nil, configcreatetime=nil, configupdatetime=nil, configschema=nil, configassociatedgroups=nil, configassociatedgrouplist=nil)
1216
1231
  @ConfigId = configid
@@ -3040,17 +3055,21 @@ module TencentCloud
3040
3055
  # @type GroupId: String
3041
3056
  # @param MicroserviceId: 微服务ID
3042
3057
  # @type MicroserviceId: String
3058
+ # @param NamespaceId: 命名空间ID
3059
+ # @type NamespaceId: String
3043
3060
 
3044
- attr_accessor :GroupId, :MicroserviceId
3061
+ attr_accessor :GroupId, :MicroserviceId, :NamespaceId
3045
3062
 
3046
- def initialize(groupid=nil, microserviceid=nil)
3063
+ def initialize(groupid=nil, microserviceid=nil, namespaceid=nil)
3047
3064
  @GroupId = groupid
3048
3065
  @MicroserviceId = microserviceid
3066
+ @NamespaceId = namespaceid
3049
3067
  end
3050
3068
 
3051
3069
  def deserialize(params)
3052
3070
  @GroupId = params['GroupId']
3053
3071
  @MicroserviceId = params['MicroserviceId']
3072
+ @NamespaceId = params['NamespaceId']
3054
3073
  end
3055
3074
  end
3056
3075
 
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.902
4
+ version: 3.0.904
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-09-09 00:00:00.000000000 Z
11
+ date: 2024-09-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common