tencentcloud-sdk-tse 3.0.804 → 3.0.805
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 +15 -2
- 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: 6cec27f4f590ffcdfe263c4e11018b609b071ea9
|
|
4
|
+
data.tar.gz: 7fcb07cfacb5bf6b2ac724efbcf6faf32da9e58d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b410f9296606efb4348cdfbea767b0255fbc452824f8675dc670736b0106ee0e3e4973cb1dd6237289811881e5ca5497d804bffe778a111c87379ce89c30ad88
|
|
7
|
+
data.tar.gz: 6321fd5c1b90bf8d60845c288064270b289776a0f76f9df75d554abb2d21c4f5bdfc2b466395cc2283d1d71d4d51de32a9f93a568ee64d00657e85425770e18b
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.805
|
data/lib/v20201207/models.rb
CHANGED
|
@@ -2592,11 +2592,15 @@ module TencentCloud
|
|
|
2592
2592
|
# - 1:自动续费
|
|
2593
2593
|
# @type PrepaidRenewFlag: Integer
|
|
2594
2594
|
# @param EngineRegionInfos: 跨地域部署的引擎地域配置详情
|
|
2595
|
+
# zk标准版没有跨地域部署,请不要填写
|
|
2595
2596
|
# @type EngineRegionInfos: Array
|
|
2597
|
+
# @param StorageOption: zk专业版至多有两个盘,且磁盘的容量在50-3200之间
|
|
2598
|
+
# 如果只有一个磁盘,storageCapacity与storageOption里面的capacity应该一致
|
|
2599
|
+
# @type StorageOption: Array
|
|
2596
2600
|
|
|
2597
|
-
attr_accessor :EngineType, :EngineVersion, :EngineProductVersion, :EngineRegion, :EngineName, :TradeType, :EngineResourceSpec, :EngineNodeNum, :VpcId, :SubnetId, :ApolloEnvParams, :EngineTags, :EngineAdmin, :PrepaidPeriod, :PrepaidRenewFlag, :EngineRegionInfos
|
|
2601
|
+
attr_accessor :EngineType, :EngineVersion, :EngineProductVersion, :EngineRegion, :EngineName, :TradeType, :EngineResourceSpec, :EngineNodeNum, :VpcId, :SubnetId, :ApolloEnvParams, :EngineTags, :EngineAdmin, :PrepaidPeriod, :PrepaidRenewFlag, :EngineRegionInfos, :StorageOption
|
|
2598
2602
|
|
|
2599
|
-
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)
|
|
2603
|
+
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)
|
|
2600
2604
|
@EngineType = enginetype
|
|
2601
2605
|
@EngineVersion = engineversion
|
|
2602
2606
|
@EngineProductVersion = engineproductversion
|
|
@@ -2613,6 +2617,7 @@ module TencentCloud
|
|
|
2613
2617
|
@PrepaidPeriod = prepaidperiod
|
|
2614
2618
|
@PrepaidRenewFlag = prepaidrenewflag
|
|
2615
2619
|
@EngineRegionInfos = engineregioninfos
|
|
2620
|
+
@StorageOption = storageoption
|
|
2616
2621
|
end
|
|
2617
2622
|
|
|
2618
2623
|
def deserialize(params)
|
|
@@ -2656,6 +2661,14 @@ module TencentCloud
|
|
|
2656
2661
|
@EngineRegionInfos << engineregioninfo_tmp
|
|
2657
2662
|
end
|
|
2658
2663
|
end
|
|
2664
|
+
unless params['StorageOption'].nil?
|
|
2665
|
+
@StorageOption = []
|
|
2666
|
+
params['StorageOption'].each do |i|
|
|
2667
|
+
storageoption_tmp = StorageOption.new
|
|
2668
|
+
storageoption_tmp.deserialize(i)
|
|
2669
|
+
@StorageOption << storageoption_tmp
|
|
2670
|
+
end
|
|
2671
|
+
end
|
|
2659
2672
|
end
|
|
2660
2673
|
end
|
|
2661
2674
|
|
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.805
|
|
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-04-
|
|
11
|
+
date: 2024-04-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|