tencentcloud-sdk-tsf 3.0.902 → 3.0.903
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180326/models.rb +25 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 39ffcde04cdb0e5dbb4c28cf2be3d28fa58de0aa
|
4
|
+
data.tar.gz: 07c28ce3019dcaada32954543b4f6b7da65b7440
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 564485d1e91c9bd809481b4748268bdd4e6156e0c54a86a28ce4b6de1e09d23f483b15e6167e73a948bef8ab0beb6dfe575ff48f157f02787fb592fbeef3bcbf
|
7
|
+
data.tar.gz: 9d2d987710117e8052706ac4ec965e89a8084b57c096a9063f5442c613c5b03810a7cec2c8fc31cdcba9d92d72548ff8b137cd6c06f8a16d2bdd44888f0ebb8a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.903
|
data/lib/v20180326/models.rb
CHANGED
@@ -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,
|
1213
|
-
deprecate :ConfigAssociatedGroups=, :none, 2024,
|
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.
|
4
|
+
version: 3.0.903
|
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-
|
11
|
+
date: 2024-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|