tencentcloud-sdk-tsf 3.0.656 → 3.0.657
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 +42 -22
- 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: 3f9c9d65f272cf097cea8e16596ec903d869f54a
|
4
|
+
data.tar.gz: a1f0604f0dc8216a941097622c7a7bcfd4fceb96
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c926171d007cfac36758d5697266e7f81ef0cba8d340c610d8e7bab19d8cf44a3704ca7268903ef9f2bc14ab24b6f3f8b707b4463bb03b06299b830f9cc1ac40
|
7
|
+
data.tar.gz: 88e1e2bf7aa7d2453630d8097f89fc30b19ba51776f8e892d5fa6431cebdb266569267a8876ebf03e7d985de196306cf75ff168bc5247a8e35c2b9cfc8507359
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.657
|
data/lib/v20180326/models.rb
CHANGED
@@ -4796,7 +4796,7 @@ module TencentCloud
|
|
4796
4796
|
|
4797
4797
|
# CreateUnitRuleWithDetailResp返回参数结构体
|
4798
4798
|
class CreateUnitRuleWithDetailRespResponse < TencentCloud::Common::AbstractModel
|
4799
|
-
# @param Result:
|
4799
|
+
# @param Result: 单元化规则信息
|
4800
4800
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
4801
4801
|
# @type Result: :class:`Tencentcloud::Tsf.v20180326.models.UnitRule`
|
4802
4802
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
@@ -7618,7 +7618,7 @@ module TencentCloud
|
|
7618
7618
|
|
7619
7619
|
# DescribeCreateGatewayApiStatus请求参数结构体
|
7620
7620
|
class DescribeCreateGatewayApiStatusRequest < TencentCloud::Common::AbstractModel
|
7621
|
-
# @param GroupId:
|
7621
|
+
# @param GroupId: 所属分组ID
|
7622
7622
|
# @type GroupId: String
|
7623
7623
|
# @param MicroserviceId: 微服务ID
|
7624
7624
|
# @type MicroserviceId: String
|
@@ -7742,19 +7742,27 @@ module TencentCloud
|
|
7742
7742
|
# @type Offset: Integer
|
7743
7743
|
# @param Limit: 搜索条数
|
7744
7744
|
# @type Limit: Integer
|
7745
|
+
# @param ProgramIdList: 数据集idList
|
7746
|
+
# @type ProgramIdList: Array
|
7747
|
+
# @param ConfigIdList: ConfigIdList
|
7748
|
+
# @type ConfigIdList: Array
|
7745
7749
|
|
7746
|
-
attr_accessor :SearchWord, :Offset, :Limit
|
7750
|
+
attr_accessor :SearchWord, :Offset, :Limit, :ProgramIdList, :ConfigIdList
|
7747
7751
|
|
7748
|
-
def initialize(searchword=nil, offset=nil, limit=nil)
|
7752
|
+
def initialize(searchword=nil, offset=nil, limit=nil, programidlist=nil, configidlist=nil)
|
7749
7753
|
@SearchWord = searchword
|
7750
7754
|
@Offset = offset
|
7751
7755
|
@Limit = limit
|
7756
|
+
@ProgramIdList = programidlist
|
7757
|
+
@ConfigIdList = configidlist
|
7752
7758
|
end
|
7753
7759
|
|
7754
7760
|
def deserialize(params)
|
7755
7761
|
@SearchWord = params['SearchWord']
|
7756
7762
|
@Offset = params['Offset']
|
7757
7763
|
@Limit = params['Limit']
|
7764
|
+
@ProgramIdList = params['ProgramIdList']
|
7765
|
+
@ConfigIdList = params['ConfigIdList']
|
7758
7766
|
end
|
7759
7767
|
end
|
7760
7768
|
|
@@ -8099,15 +8107,18 @@ module TencentCloud
|
|
8099
8107
|
# @type SearchWord: String
|
8100
8108
|
# @param GatewayDeployGroupId: 部署组ID
|
8101
8109
|
# @type GatewayDeployGroupId: String
|
8110
|
+
# @param ReleaseStatus: 发布状态, drafted(未发布)/released(已发布)/releasing(发布中)/failed(发布失败)
|
8111
|
+
# @type ReleaseStatus: String
|
8102
8112
|
|
8103
|
-
attr_accessor :GroupId, :Offset, :Limit, :SearchWord, :GatewayDeployGroupId
|
8113
|
+
attr_accessor :GroupId, :Offset, :Limit, :SearchWord, :GatewayDeployGroupId, :ReleaseStatus
|
8104
8114
|
|
8105
|
-
def initialize(groupid=nil, offset=nil, limit=nil, searchword=nil, gatewaydeploygroupid=nil)
|
8115
|
+
def initialize(groupid=nil, offset=nil, limit=nil, searchword=nil, gatewaydeploygroupid=nil, releasestatus=nil)
|
8106
8116
|
@GroupId = groupid
|
8107
8117
|
@Offset = offset
|
8108
8118
|
@Limit = limit
|
8109
8119
|
@SearchWord = searchword
|
8110
8120
|
@GatewayDeployGroupId = gatewaydeploygroupid
|
8121
|
+
@ReleaseStatus = releasestatus
|
8111
8122
|
end
|
8112
8123
|
|
8113
8124
|
def deserialize(params)
|
@@ -8116,6 +8127,7 @@ module TencentCloud
|
|
8116
8127
|
@Limit = params['Limit']
|
8117
8128
|
@SearchWord = params['SearchWord']
|
8118
8129
|
@GatewayDeployGroupId = params['GatewayDeployGroupId']
|
8130
|
+
@ReleaseStatus = params['ReleaseStatus']
|
8119
8131
|
end
|
8120
8132
|
end
|
8121
8133
|
|
@@ -8642,33 +8654,33 @@ module TencentCloud
|
|
8642
8654
|
class DescribeGroupsWithPluginRequest < TencentCloud::Common::AbstractModel
|
8643
8655
|
# @param PluginId: 插件ID
|
8644
8656
|
# @type PluginId: String
|
8645
|
-
# @param Bound: 绑定/未绑定: true / false
|
8646
|
-
# @type Bound: Boolean
|
8647
8657
|
# @param Offset: 翻页偏移量
|
8648
8658
|
# @type Offset: Integer
|
8649
8659
|
# @param Limit: 每页记录数量
|
8650
8660
|
# @type Limit: Integer
|
8661
|
+
# @param Bound: 绑定/未绑定: true / false
|
8662
|
+
# @type Bound: Boolean
|
8651
8663
|
# @param SearchWord: 搜索关键字
|
8652
8664
|
# @type SearchWord: String
|
8653
8665
|
# @param GatewayInstanceId: 网关实体ID
|
8654
8666
|
# @type GatewayInstanceId: String
|
8655
8667
|
|
8656
|
-
attr_accessor :PluginId, :
|
8668
|
+
attr_accessor :PluginId, :Offset, :Limit, :Bound, :SearchWord, :GatewayInstanceId
|
8657
8669
|
|
8658
|
-
def initialize(pluginid=nil,
|
8670
|
+
def initialize(pluginid=nil, offset=nil, limit=nil, bound=nil, searchword=nil, gatewayinstanceid=nil)
|
8659
8671
|
@PluginId = pluginid
|
8660
|
-
@Bound = bound
|
8661
8672
|
@Offset = offset
|
8662
8673
|
@Limit = limit
|
8674
|
+
@Bound = bound
|
8663
8675
|
@SearchWord = searchword
|
8664
8676
|
@GatewayInstanceId = gatewayinstanceid
|
8665
8677
|
end
|
8666
8678
|
|
8667
8679
|
def deserialize(params)
|
8668
8680
|
@PluginId = params['PluginId']
|
8669
|
-
@Bound = params['Bound']
|
8670
8681
|
@Offset = params['Offset']
|
8671
8682
|
@Limit = params['Limit']
|
8683
|
+
@Bound = params['Bound']
|
8672
8684
|
@SearchWord = params['SearchWord']
|
8673
8685
|
@GatewayInstanceId = params['GatewayInstanceId']
|
8674
8686
|
end
|
@@ -9851,33 +9863,33 @@ module TencentCloud
|
|
9851
9863
|
class DescribePluginInstancesRequest < TencentCloud::Common::AbstractModel
|
9852
9864
|
# @param ScopeValue: 分组或者API的ID
|
9853
9865
|
# @type ScopeValue: String
|
9854
|
-
# @param Bound: 绑定: true; 未绑定: false
|
9855
|
-
# @type Bound: Boolean
|
9856
9866
|
# @param Offset: 翻页偏移量
|
9857
9867
|
# @type Offset: Integer
|
9858
9868
|
# @param Limit: 每页展示的条数
|
9859
9869
|
# @type Limit: Integer
|
9870
|
+
# @param Bound: 绑定: true; 未绑定: false
|
9871
|
+
# @type Bound: Boolean
|
9860
9872
|
# @param Type: 插件类型
|
9861
9873
|
# @type Type: String
|
9862
9874
|
# @param SearchWord: 搜索关键字
|
9863
9875
|
# @type SearchWord: String
|
9864
9876
|
|
9865
|
-
attr_accessor :ScopeValue, :
|
9877
|
+
attr_accessor :ScopeValue, :Offset, :Limit, :Bound, :Type, :SearchWord
|
9866
9878
|
|
9867
|
-
def initialize(scopevalue=nil,
|
9879
|
+
def initialize(scopevalue=nil, offset=nil, limit=nil, bound=nil, type=nil, searchword=nil)
|
9868
9880
|
@ScopeValue = scopevalue
|
9869
|
-
@Bound = bound
|
9870
9881
|
@Offset = offset
|
9871
9882
|
@Limit = limit
|
9883
|
+
@Bound = bound
|
9872
9884
|
@Type = type
|
9873
9885
|
@SearchWord = searchword
|
9874
9886
|
end
|
9875
9887
|
|
9876
9888
|
def deserialize(params)
|
9877
9889
|
@ScopeValue = params['ScopeValue']
|
9878
|
-
@Bound = params['Bound']
|
9879
9890
|
@Offset = params['Offset']
|
9880
9891
|
@Limit = params['Limit']
|
9892
|
+
@Bound = params['Bound']
|
9881
9893
|
@Type = params['Type']
|
9882
9894
|
@SearchWord = params['SearchWord']
|
9883
9895
|
end
|
@@ -12333,23 +12345,31 @@ module TencentCloud
|
|
12333
12345
|
class GatewayPluginBoundParam < TencentCloud::Common::AbstractModel
|
12334
12346
|
# @param PluginId: 插件id
|
12335
12347
|
# @type PluginId: String
|
12336
|
-
# @param ScopeType: 插件绑定到的对象类型:group/api
|
12348
|
+
# @param ScopeType: 插件绑定到的对象类型:group/api/all
|
12337
12349
|
# @type ScopeType: String
|
12338
12350
|
# @param ScopeValue: 插件绑定到的对象主键值,例如分组的ID/API的ID
|
12339
12351
|
# @type ScopeValue: String
|
12352
|
+
# @param MicroserviceId: 创建关联的服务id,关联envoy网关时使用
|
12353
|
+
# @type MicroserviceId: String
|
12354
|
+
# @param GatewayInstanceId: 网关id
|
12355
|
+
# @type GatewayInstanceId: String
|
12340
12356
|
|
12341
|
-
attr_accessor :PluginId, :ScopeType, :ScopeValue
|
12357
|
+
attr_accessor :PluginId, :ScopeType, :ScopeValue, :MicroserviceId, :GatewayInstanceId
|
12342
12358
|
|
12343
|
-
def initialize(pluginid=nil, scopetype=nil, scopevalue=nil)
|
12359
|
+
def initialize(pluginid=nil, scopetype=nil, scopevalue=nil, microserviceid=nil, gatewayinstanceid=nil)
|
12344
12360
|
@PluginId = pluginid
|
12345
12361
|
@ScopeType = scopetype
|
12346
12362
|
@ScopeValue = scopevalue
|
12363
|
+
@MicroserviceId = microserviceid
|
12364
|
+
@GatewayInstanceId = gatewayinstanceid
|
12347
12365
|
end
|
12348
12366
|
|
12349
12367
|
def deserialize(params)
|
12350
12368
|
@PluginId = params['PluginId']
|
12351
12369
|
@ScopeType = params['ScopeType']
|
12352
12370
|
@ScopeValue = params['ScopeValue']
|
12371
|
+
@MicroserviceId = params['MicroserviceId']
|
12372
|
+
@GatewayInstanceId = params['GatewayInstanceId']
|
12353
12373
|
end
|
12354
12374
|
end
|
12355
12375
|
|
@@ -19594,7 +19614,7 @@ module TencentCloud
|
|
19594
19614
|
# @type GroupName: String
|
19595
19615
|
# @param Description: Api 分组描述
|
19596
19616
|
# @type Description: String
|
19597
|
-
# @param AuthType:
|
19617
|
+
# @param AuthType: 鉴权类型。 secret: 密钥鉴权; none:无鉴权
|
19598
19618
|
# @type AuthType: String
|
19599
19619
|
# @param GroupContext: 分组上下文
|
19600
19620
|
# @type GroupContext: String
|
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.657
|
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-09-
|
11
|
+
date: 2023-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|