tencentcloud-sdk-tse 1.0.352 → 1.0.353
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 +26 -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: 49b7a774d337ea6a505c61277b3915d11521aecf
|
4
|
+
data.tar.gz: b45a71c381f582b0981dd156d36ab306c8557cde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ddf107f823d23fd6ca8824a4164ab86cbff391d511602e3eca0cf25e103b6a259612fa81506b314493a02151fbf47be4dd74ceb32d21de07519e7e4d5ea4dc1
|
7
|
+
data.tar.gz: 6d29fceabf1716666dda5ed09b1c6c48dd8d7a805e4379602bc50a9c6d12fc1a87554b0233bc4cc3df8a0c99df5f56fcae10a6038859222349845d7e75f7e20b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.353
|
data/lib/v20201207/models.rb
CHANGED
@@ -390,19 +390,23 @@ module TencentCloud
|
|
390
390
|
# @type VpcId: String
|
391
391
|
# @param SubnetId: 子网ID
|
392
392
|
# @type SubnetId: String
|
393
|
+
# @param Workload: 引擎其他组件名称(pushgateway)
|
394
|
+
# @type Workload: String
|
393
395
|
|
394
|
-
attr_accessor :InstanceId, :VpcId, :SubnetId
|
396
|
+
attr_accessor :InstanceId, :VpcId, :SubnetId, :Workload
|
395
397
|
|
396
|
-
def initialize(instanceid=nil, vpcid=nil, subnetid=nil)
|
398
|
+
def initialize(instanceid=nil, vpcid=nil, subnetid=nil, workload=nil)
|
397
399
|
@InstanceId = instanceid
|
398
400
|
@VpcId = vpcid
|
399
401
|
@SubnetId = subnetid
|
402
|
+
@Workload = workload
|
400
403
|
end
|
401
404
|
|
402
405
|
def deserialize(params)
|
403
406
|
@InstanceId = params['InstanceId']
|
404
407
|
@VpcId = params['VpcId']
|
405
408
|
@SubnetId = params['SubnetId']
|
409
|
+
@Workload = params['Workload']
|
406
410
|
end
|
407
411
|
end
|
408
412
|
|
@@ -674,19 +678,24 @@ module TencentCloud
|
|
674
678
|
# @type EnableConfigInternet: Boolean
|
675
679
|
# @param ConfigInternetServiceIp: config公网ip
|
676
680
|
# @type ConfigInternetServiceIp: String
|
681
|
+
# @param ConfigIntranetAddress: config内网访问地址
|
682
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
683
|
+
# @type ConfigIntranetAddress: String
|
677
684
|
|
678
|
-
attr_accessor :EnvName, :EnableConfigInternet, :ConfigInternetServiceIp
|
685
|
+
attr_accessor :EnvName, :EnableConfigInternet, :ConfigInternetServiceIp, :ConfigIntranetAddress
|
679
686
|
|
680
|
-
def initialize(envname=nil, enableconfiginternet=nil, configinternetserviceip=nil)
|
687
|
+
def initialize(envname=nil, enableconfiginternet=nil, configinternetserviceip=nil, configintranetaddress=nil)
|
681
688
|
@EnvName = envname
|
682
689
|
@EnableConfigInternet = enableconfiginternet
|
683
690
|
@ConfigInternetServiceIp = configinternetserviceip
|
691
|
+
@ConfigIntranetAddress = configintranetaddress
|
684
692
|
end
|
685
693
|
|
686
694
|
def deserialize(params)
|
687
695
|
@EnvName = params['EnvName']
|
688
696
|
@EnableConfigInternet = params['EnableConfigInternet']
|
689
697
|
@ConfigInternetServiceIp = params['ConfigInternetServiceIp']
|
698
|
+
@ConfigIntranetAddress = params['ConfigIntranetAddress']
|
690
699
|
end
|
691
700
|
end
|
692
701
|
|
@@ -1064,16 +1073,19 @@ module TencentCloud
|
|
1064
1073
|
# @type Features: Array
|
1065
1074
|
# @param MainPassword: 主账户名默认为 polaris,该值为主账户的默认密码
|
1066
1075
|
# @type MainPassword: String
|
1076
|
+
# @param PgwVpcInfos: 服务治理pushgateway引擎绑定的网络信息
|
1077
|
+
# @type PgwVpcInfos: Array
|
1067
1078
|
|
1068
|
-
attr_accessor :EngineRegion, :BoundK8SInfos, :VpcInfos, :AuthOpen, :Features, :MainPassword
|
1079
|
+
attr_accessor :EngineRegion, :BoundK8SInfos, :VpcInfos, :AuthOpen, :Features, :MainPassword, :PgwVpcInfos
|
1069
1080
|
|
1070
|
-
def initialize(engineregion=nil, boundk8sinfos=nil, vpcinfos=nil, authopen=nil, features=nil, mainpassword=nil)
|
1081
|
+
def initialize(engineregion=nil, boundk8sinfos=nil, vpcinfos=nil, authopen=nil, features=nil, mainpassword=nil, pgwvpcinfos=nil)
|
1071
1082
|
@EngineRegion = engineregion
|
1072
1083
|
@BoundK8SInfos = boundk8sinfos
|
1073
1084
|
@VpcInfos = vpcinfos
|
1074
1085
|
@AuthOpen = authopen
|
1075
1086
|
@Features = features
|
1076
1087
|
@MainPassword = mainpassword
|
1088
|
+
@PgwVpcInfos = pgwvpcinfos
|
1077
1089
|
end
|
1078
1090
|
|
1079
1091
|
def deserialize(params)
|
@@ -1097,6 +1109,14 @@ module TencentCloud
|
|
1097
1109
|
@AuthOpen = params['AuthOpen']
|
1098
1110
|
@Features = params['Features']
|
1099
1111
|
@MainPassword = params['MainPassword']
|
1112
|
+
unless params['PgwVpcInfos'].nil?
|
1113
|
+
@PgwVpcInfos = []
|
1114
|
+
params['PgwVpcInfos'].each do |i|
|
1115
|
+
vpcinfo_tmp = VpcInfo.new
|
1116
|
+
vpcinfo_tmp.deserialize(i)
|
1117
|
+
@PgwVpcInfos << vpcinfo_tmp
|
1118
|
+
end
|
1119
|
+
end
|
1100
1120
|
end
|
1101
1121
|
end
|
1102
1122
|
|
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: 1.0.
|
4
|
+
version: 1.0.353
|
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-07-
|
11
|
+
date: 2022-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|