tencentcloud-sdk-lighthouse 1.0.291 → 1.0.292
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/v20200324/models.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e173be395dabb747f38afd13619b269dc55b64bb
|
|
4
|
+
data.tar.gz: 3e290957ebf1697d7e2fc248566f907d37f176d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e1b0c5008763728a53cd9e56c5d8058a3f2dd56802f0b9b39dabe7ae2c6c7ce1f4317a733d74001eb1d92bd2c3ddb38c967cb956248f5eb30ec62cca2c34d2a5
|
|
7
|
+
data.tar.gz: 83ae54510f61b04b593a52fde08a6514159b2c042a180654de8763845ce72a1267a25103ef31c31d7959fbcc7aa98b8e9fd7fbee661b52831c348982c48122b1
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.292
|
data/lib/v20200324/models.rb
CHANGED
|
@@ -625,10 +625,12 @@ module TencentCloud
|
|
|
625
625
|
# @type LoginConfiguration: :class:`Tencentcloud::Lighthouse.v20200324.models.LoginConfiguration`
|
|
626
626
|
# @param Containers: 要创建的容器配置列表。
|
|
627
627
|
# @type Containers: Array
|
|
628
|
+
# @param AutoVoucher: 是否自动使用代金券。默认不使用。
|
|
629
|
+
# @type AutoVoucher: Boolean
|
|
628
630
|
|
|
629
|
-
attr_accessor :BundleId, :BlueprintId, :InstanceChargePrepaid, :InstanceName, :InstanceCount, :Zones, :DryRun, :ClientToken, :LoginConfiguration, :Containers
|
|
631
|
+
attr_accessor :BundleId, :BlueprintId, :InstanceChargePrepaid, :InstanceName, :InstanceCount, :Zones, :DryRun, :ClientToken, :LoginConfiguration, :Containers, :AutoVoucher
|
|
630
632
|
|
|
631
|
-
def initialize(bundleid=nil, blueprintid=nil, instancechargeprepaid=nil, instancename=nil, instancecount=nil, zones=nil, dryrun=nil, clienttoken=nil, loginconfiguration=nil, containers=nil)
|
|
633
|
+
def initialize(bundleid=nil, blueprintid=nil, instancechargeprepaid=nil, instancename=nil, instancecount=nil, zones=nil, dryrun=nil, clienttoken=nil, loginconfiguration=nil, containers=nil, autovoucher=nil)
|
|
632
634
|
@BundleId = bundleid
|
|
633
635
|
@BlueprintId = blueprintid
|
|
634
636
|
@InstanceChargePrepaid = instancechargeprepaid
|
|
@@ -639,6 +641,7 @@ module TencentCloud
|
|
|
639
641
|
@ClientToken = clienttoken
|
|
640
642
|
@LoginConfiguration = loginconfiguration
|
|
641
643
|
@Containers = containers
|
|
644
|
+
@AutoVoucher = autovoucher
|
|
642
645
|
end
|
|
643
646
|
|
|
644
647
|
def deserialize(params)
|
|
@@ -665,6 +668,7 @@ module TencentCloud
|
|
|
665
668
|
@Containers << dockercontainerconfiguration_tmp
|
|
666
669
|
end
|
|
667
670
|
end
|
|
671
|
+
@AutoVoucher = params['AutoVoucher']
|
|
668
672
|
end
|
|
669
673
|
end
|
|
670
674
|
|