tencentcloud-sdk-tse 3.0.434 → 3.0.435
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/v20201207/models.rb +45 -5
- 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: 49f09366bcb9edd76fe93fa6122ed9aa41f8a925
|
4
|
+
data.tar.gz: 5e5712896309a4bcd573cc9a8a74d4b921eefe13
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 527eb58c3ae0549258df46c37a374070a54c74fde6764b202e138f16e3aba4d91bf45b64ef5c80c5d6a2c9fea786296aaec841539cddb282fc1111dc4157ae81
|
7
|
+
data.tar.gz: bffb7c726edcc64e6da192ad4948fcb82343d869d13b4eb492310466061824254680a069bb0374a168829a057b20e5ed1e967b1e05e01615be853ecf98e614c3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.435
|
data/lib/v20201207/models.rb
CHANGED
@@ -532,7 +532,7 @@ module TencentCloud
|
|
532
532
|
# @type VpcId: String
|
533
533
|
# @param SubnetId: 子网ID
|
534
534
|
# @type SubnetId: String
|
535
|
-
# @param Workload: 引擎其他组件名称(pushgateway)
|
535
|
+
# @param Workload: 引擎其他组件名称(pushgateway、polaris-limiter)
|
536
536
|
# @type Workload: String
|
537
537
|
# @param EngineRegion: 部署地域
|
538
538
|
# @type EngineRegion: String
|
@@ -576,12 +576,15 @@ module TencentCloud
|
|
576
576
|
# @param ConsoleInternetBandWidth: 控制台公网带宽
|
577
577
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
578
578
|
# @type ConsoleInternetBandWidth: Integer
|
579
|
+
# @param LimiterAddressInfos: 北极星限流server节点接入IP
|
580
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
581
|
+
# @type LimiterAddressInfos: Array
|
579
582
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
580
583
|
# @type RequestId: String
|
581
584
|
|
582
|
-
attr_accessor :IntranetAddress, :InternetAddress, :EnvAddressInfos, :ConsoleInternetAddress, :ConsoleIntranetAddress, :InternetBandWidth, :ConsoleInternetBandWidth, :RequestId
|
585
|
+
attr_accessor :IntranetAddress, :InternetAddress, :EnvAddressInfos, :ConsoleInternetAddress, :ConsoleIntranetAddress, :InternetBandWidth, :ConsoleInternetBandWidth, :LimiterAddressInfos, :RequestId
|
583
586
|
|
584
|
-
def initialize(intranetaddress=nil, internetaddress=nil, envaddressinfos=nil, consoleinternetaddress=nil, consoleintranetaddress=nil, internetbandwidth=nil, consoleinternetbandwidth=nil, requestid=nil)
|
587
|
+
def initialize(intranetaddress=nil, internetaddress=nil, envaddressinfos=nil, consoleinternetaddress=nil, consoleintranetaddress=nil, internetbandwidth=nil, consoleinternetbandwidth=nil, limiteraddressinfos=nil, requestid=nil)
|
585
588
|
@IntranetAddress = intranetaddress
|
586
589
|
@InternetAddress = internetaddress
|
587
590
|
@EnvAddressInfos = envaddressinfos
|
@@ -589,6 +592,7 @@ module TencentCloud
|
|
589
592
|
@ConsoleIntranetAddress = consoleintranetaddress
|
590
593
|
@InternetBandWidth = internetbandwidth
|
591
594
|
@ConsoleInternetBandWidth = consoleinternetbandwidth
|
595
|
+
@LimiterAddressInfos = limiteraddressinfos
|
592
596
|
@RequestId = requestid
|
593
597
|
end
|
594
598
|
|
@@ -607,6 +611,14 @@ module TencentCloud
|
|
607
611
|
@ConsoleIntranetAddress = params['ConsoleIntranetAddress']
|
608
612
|
@InternetBandWidth = params['InternetBandWidth']
|
609
613
|
@ConsoleInternetBandWidth = params['ConsoleInternetBandWidth']
|
614
|
+
unless params['LimiterAddressInfos'].nil?
|
615
|
+
@LimiterAddressInfos = []
|
616
|
+
params['LimiterAddressInfos'].each do |i|
|
617
|
+
polarislimiteraddress_tmp = PolarisLimiterAddress.new
|
618
|
+
polarislimiteraddress_tmp.deserialize(i)
|
619
|
+
@LimiterAddressInfos << polarislimiteraddress_tmp
|
620
|
+
end
|
621
|
+
end
|
610
622
|
@RequestId = params['RequestId']
|
611
623
|
end
|
612
624
|
end
|
@@ -1036,6 +1048,23 @@ module TencentCloud
|
|
1036
1048
|
end
|
1037
1049
|
end
|
1038
1050
|
|
1051
|
+
# 查询Limiter的接入地址
|
1052
|
+
class PolarisLimiterAddress < TencentCloud::Common::AbstractModel
|
1053
|
+
# @param IntranetAddress: VPC接入IP列表
|
1054
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1055
|
+
# @type IntranetAddress: String
|
1056
|
+
|
1057
|
+
attr_accessor :IntranetAddress
|
1058
|
+
|
1059
|
+
def initialize(intranetaddress=nil)
|
1060
|
+
@IntranetAddress = intranetaddress
|
1061
|
+
end
|
1062
|
+
|
1063
|
+
def deserialize(params)
|
1064
|
+
@IntranetAddress = params['IntranetAddress']
|
1065
|
+
end
|
1066
|
+
end
|
1067
|
+
|
1039
1068
|
# 微服务注册引擎实例
|
1040
1069
|
class SREInstance < TencentCloud::Common::AbstractModel
|
1041
1070
|
# @param InstanceId: 实例ID
|
@@ -1241,10 +1270,12 @@ module TencentCloud
|
|
1241
1270
|
# @type MainPassword: String
|
1242
1271
|
# @param PgwVpcInfos: 服务治理pushgateway引擎绑定的网络信息
|
1243
1272
|
# @type PgwVpcInfos: Array
|
1273
|
+
# @param LimiterVpcInfos: 服务治理限流server引擎绑定的网络信息
|
1274
|
+
# @type LimiterVpcInfos: Array
|
1244
1275
|
|
1245
|
-
attr_accessor :EngineRegion, :BoundK8SInfos, :VpcInfos, :AuthOpen, :Features, :MainPassword, :PgwVpcInfos
|
1276
|
+
attr_accessor :EngineRegion, :BoundK8SInfos, :VpcInfos, :AuthOpen, :Features, :MainPassword, :PgwVpcInfos, :LimiterVpcInfos
|
1246
1277
|
|
1247
|
-
def initialize(engineregion=nil, boundk8sinfos=nil, vpcinfos=nil, authopen=nil, features=nil, mainpassword=nil, pgwvpcinfos=nil)
|
1278
|
+
def initialize(engineregion=nil, boundk8sinfos=nil, vpcinfos=nil, authopen=nil, features=nil, mainpassword=nil, pgwvpcinfos=nil, limitervpcinfos=nil)
|
1248
1279
|
@EngineRegion = engineregion
|
1249
1280
|
@BoundK8SInfos = boundk8sinfos
|
1250
1281
|
@VpcInfos = vpcinfos
|
@@ -1252,6 +1283,7 @@ module TencentCloud
|
|
1252
1283
|
@Features = features
|
1253
1284
|
@MainPassword = mainpassword
|
1254
1285
|
@PgwVpcInfos = pgwvpcinfos
|
1286
|
+
@LimiterVpcInfos = limitervpcinfos
|
1255
1287
|
end
|
1256
1288
|
|
1257
1289
|
def deserialize(params)
|
@@ -1283,6 +1315,14 @@ module TencentCloud
|
|
1283
1315
|
@PgwVpcInfos << vpcinfo_tmp
|
1284
1316
|
end
|
1285
1317
|
end
|
1318
|
+
unless params['LimiterVpcInfos'].nil?
|
1319
|
+
@LimiterVpcInfos = []
|
1320
|
+
params['LimiterVpcInfos'].each do |i|
|
1321
|
+
vpcinfo_tmp = VpcInfo.new
|
1322
|
+
vpcinfo_tmp.deserialize(i)
|
1323
|
+
@LimiterVpcInfos << vpcinfo_tmp
|
1324
|
+
end
|
1325
|
+
end
|
1286
1326
|
end
|
1287
1327
|
end
|
1288
1328
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tse
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.435
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-10-
|
11
|
+
date: 2022-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|