tencentcloud-sdk-tse 3.0.819 → 3.0.821
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 +30 -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: bbb49f41a10ea3c88a9d1227e6ff929004696729
|
4
|
+
data.tar.gz: 05f246d883eff925dd55fd7d559de85e1bd23977
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bc3f40560ebd40683ec209282d0a637ee64e4d638adbac56bd0cc003f169c993c98d0c9eb043875a9c095e8f8cdcb7492f8b97031488076b7591eeee9b39f754
|
7
|
+
data.tar.gz: c1a97d86573c5ea9edb260dd68d5b20260337740dd201bf89bc50f4c252e906a61031e1e7cdf5cb2ecbafb526294dfe510645eef80b31bf202f91ed1e6b67d53
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.821
|
data/lib/v20201207/models.rb
CHANGED
@@ -675,10 +675,16 @@ module TencentCloud
|
|
675
675
|
# @param Status: 状态
|
676
676
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
677
677
|
# @type Status: String
|
678
|
+
# @param Weight: 节点权重
|
679
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
680
|
+
# @type Weight: Integer
|
681
|
+
# @param IsDefaultWeight: 是否默认权重
|
682
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
683
|
+
# @type IsDefaultWeight: Boolean
|
678
684
|
|
679
|
-
attr_accessor :NodeId, :NodeIp, :ZoneId, :Zone, :GroupId, :GroupName, :Status
|
685
|
+
attr_accessor :NodeId, :NodeIp, :ZoneId, :Zone, :GroupId, :GroupName, :Status, :Weight, :IsDefaultWeight
|
680
686
|
|
681
|
-
def initialize(nodeid=nil, nodeip=nil, zoneid=nil, zone=nil, groupid=nil, groupname=nil, status=nil)
|
687
|
+
def initialize(nodeid=nil, nodeip=nil, zoneid=nil, zone=nil, groupid=nil, groupname=nil, status=nil, weight=nil, isdefaultweight=nil)
|
682
688
|
@NodeId = nodeid
|
683
689
|
@NodeIp = nodeip
|
684
690
|
@ZoneId = zoneid
|
@@ -686,6 +692,8 @@ module TencentCloud
|
|
686
692
|
@GroupId = groupid
|
687
693
|
@GroupName = groupname
|
688
694
|
@Status = status
|
695
|
+
@Weight = weight
|
696
|
+
@IsDefaultWeight = isdefaultweight
|
689
697
|
end
|
690
698
|
|
691
699
|
def deserialize(params)
|
@@ -696,6 +704,8 @@ module TencentCloud
|
|
696
704
|
@GroupId = params['GroupId']
|
697
705
|
@GroupName = params['GroupName']
|
698
706
|
@Status = params['Status']
|
707
|
+
@Weight = params['Weight']
|
708
|
+
@IsDefaultWeight = params['IsDefaultWeight']
|
699
709
|
end
|
700
710
|
end
|
701
711
|
|
@@ -2618,15 +2628,20 @@ module TencentCloud
|
|
2618
2628
|
# - 固定Leader所在地域当前仅支持跨两个地域
|
2619
2629
|
# - leader地域的副本数必须是3/2 + 1,5/2+1,7/2+1,也就是 2,3,4
|
2620
2630
|
# @type EngineRegionInfos: Array
|
2631
|
+
# @param StorageType: zk标准版请填CLOUD_PREMIUM,zk标准版无法选择磁盘类型和磁盘容量,默认为CLOUD_PREMIUM
|
2632
|
+
# zk专业版可以为:CLOUD_SSD,CLOUD_SSD_PLUS,CLOUD_PREMIUM
|
2633
|
+
# @type StorageType: String
|
2634
|
+
# @param StorageCapacity: zk标准版请填50,zk标准版无法选择磁盘类型和磁盘容量,磁盘容量默认为50
|
2635
|
+
# @type StorageCapacity: Integer
|
2621
2636
|
# @param StorageOption: zk专业版至多有两个盘,且磁盘的容量在50-3200之间
|
2622
2637
|
# 如果只有一个磁盘,storageCapacity与storageOption里面的capacity应该一致
|
2623
2638
|
# @type StorageOption: Array
|
2624
2639
|
# @param AffinityConstraint: ZK引擎实例,可用区分布约束,STRICT:强约束,PERMISSIVE: 弱约束
|
2625
2640
|
# @type AffinityConstraint: String
|
2626
2641
|
|
2627
|
-
attr_accessor :EngineType, :EngineVersion, :EngineProductVersion, :EngineRegion, :EngineName, :TradeType, :EngineResourceSpec, :EngineNodeNum, :VpcId, :SubnetId, :ApolloEnvParams, :EngineTags, :EngineAdmin, :PrepaidPeriod, :PrepaidRenewFlag, :EngineRegionInfos, :StorageOption, :AffinityConstraint
|
2642
|
+
attr_accessor :EngineType, :EngineVersion, :EngineProductVersion, :EngineRegion, :EngineName, :TradeType, :EngineResourceSpec, :EngineNodeNum, :VpcId, :SubnetId, :ApolloEnvParams, :EngineTags, :EngineAdmin, :PrepaidPeriod, :PrepaidRenewFlag, :EngineRegionInfos, :StorageType, :StorageCapacity, :StorageOption, :AffinityConstraint
|
2628
2643
|
|
2629
|
-
def initialize(enginetype=nil, engineversion=nil, engineproductversion=nil, engineregion=nil, enginename=nil, tradetype=nil, engineresourcespec=nil, enginenodenum=nil, vpcid=nil, subnetid=nil, apolloenvparams=nil, enginetags=nil, engineadmin=nil, prepaidperiod=nil, prepaidrenewflag=nil, engineregioninfos=nil, storageoption=nil, affinityconstraint=nil)
|
2644
|
+
def initialize(enginetype=nil, engineversion=nil, engineproductversion=nil, engineregion=nil, enginename=nil, tradetype=nil, engineresourcespec=nil, enginenodenum=nil, vpcid=nil, subnetid=nil, apolloenvparams=nil, enginetags=nil, engineadmin=nil, prepaidperiod=nil, prepaidrenewflag=nil, engineregioninfos=nil, storagetype=nil, storagecapacity=nil, storageoption=nil, affinityconstraint=nil)
|
2630
2645
|
@EngineType = enginetype
|
2631
2646
|
@EngineVersion = engineversion
|
2632
2647
|
@EngineProductVersion = engineproductversion
|
@@ -2643,6 +2658,8 @@ module TencentCloud
|
|
2643
2658
|
@PrepaidPeriod = prepaidperiod
|
2644
2659
|
@PrepaidRenewFlag = prepaidrenewflag
|
2645
2660
|
@EngineRegionInfos = engineregioninfos
|
2661
|
+
@StorageType = storagetype
|
2662
|
+
@StorageCapacity = storagecapacity
|
2646
2663
|
@StorageOption = storageoption
|
2647
2664
|
@AffinityConstraint = affinityconstraint
|
2648
2665
|
end
|
@@ -2688,6 +2705,8 @@ module TencentCloud
|
|
2688
2705
|
@EngineRegionInfos << engineregioninfo_tmp
|
2689
2706
|
end
|
2690
2707
|
end
|
2708
|
+
@StorageType = params['StorageType']
|
2709
|
+
@StorageCapacity = params['StorageCapacity']
|
2691
2710
|
unless params['StorageOption'].nil?
|
2692
2711
|
@StorageOption = []
|
2693
2712
|
params['StorageOption'].each do |i|
|
@@ -10029,10 +10048,13 @@ module TencentCloud
|
|
10029
10048
|
# @param SubnetIds: 子网id
|
10030
10049
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10031
10050
|
# @type SubnetIds: String
|
10051
|
+
# @param DefaultWeight: 分组默认权重
|
10052
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10053
|
+
# @type DefaultWeight: Integer
|
10032
10054
|
|
10033
|
-
attr_accessor :GroupId, :Name, :Description, :NodeConfig, :Status, :CreateTime, :IsFirstGroup, :BindingStrategy, :GatewayId, :InternetMaxBandwidthOut, :ModifyTime, :SubnetIds
|
10055
|
+
attr_accessor :GroupId, :Name, :Description, :NodeConfig, :Status, :CreateTime, :IsFirstGroup, :BindingStrategy, :GatewayId, :InternetMaxBandwidthOut, :ModifyTime, :SubnetIds, :DefaultWeight
|
10034
10056
|
|
10035
|
-
def initialize(groupid=nil, name=nil, description=nil, nodeconfig=nil, status=nil, createtime=nil, isfirstgroup=nil, bindingstrategy=nil, gatewayid=nil, internetmaxbandwidthout=nil, modifytime=nil, subnetids=nil)
|
10057
|
+
def initialize(groupid=nil, name=nil, description=nil, nodeconfig=nil, status=nil, createtime=nil, isfirstgroup=nil, bindingstrategy=nil, gatewayid=nil, internetmaxbandwidthout=nil, modifytime=nil, subnetids=nil, defaultweight=nil)
|
10036
10058
|
@GroupId = groupid
|
10037
10059
|
@Name = name
|
10038
10060
|
@Description = description
|
@@ -10045,6 +10067,7 @@ module TencentCloud
|
|
10045
10067
|
@InternetMaxBandwidthOut = internetmaxbandwidthout
|
10046
10068
|
@ModifyTime = modifytime
|
10047
10069
|
@SubnetIds = subnetids
|
10070
|
+
@DefaultWeight = defaultweight
|
10048
10071
|
end
|
10049
10072
|
|
10050
10073
|
def deserialize(params)
|
@@ -10066,6 +10089,7 @@ module TencentCloud
|
|
10066
10089
|
@InternetMaxBandwidthOut = params['InternetMaxBandwidthOut']
|
10067
10090
|
@ModifyTime = params['ModifyTime']
|
10068
10091
|
@SubnetIds = params['SubnetIds']
|
10092
|
+
@DefaultWeight = params['DefaultWeight']
|
10069
10093
|
end
|
10070
10094
|
end
|
10071
10095
|
|
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.821
|
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-05-
|
11
|
+
date: 2024-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|