tencentcloud-sdk-lighthouse 3.0.725 → 3.0.726
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 +21 -3
- 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: 868d988a9709a591ac81b664d4b660873b67d4c0
|
4
|
+
data.tar.gz: 63d44f82d8f2d43088de471712ef1bdc470e8f34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c87c8c8149de606c6cb8ebe24cc8c55b03fcaabb2f86dc17cdf9bd3932c410ec2ab704f3400181a4d0d6316b406765d1aa06eba7a8dc491a46709299242944d
|
7
|
+
data.tar.gz: 43b4522a880d9df220a50fce6a9a065150f87fd1a7a16e86c01fda5c1c4c51b2414e8f6bc860dde8d71de8d21505aa7452c887aae320da2680de02a3934e3e9b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.726
|
data/lib/v20200324/models.rb
CHANGED
@@ -5283,7 +5283,7 @@ module TencentCloud
|
|
5283
5283
|
class InstanceChargePrepaid < TencentCloud::Common::AbstractModel
|
5284
5284
|
# @param Period: 购买实例的时长,单位:月。取值范围:1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 24, 36, 48, 60。
|
5285
5285
|
# @type Period: Integer
|
5286
|
-
# @param RenewFlag: 自动续费标识。取值范围:<br><li>NOTIFY_AND_AUTO_RENEW
|
5286
|
+
# @param RenewFlag: 自动续费标识。取值范围:<br><li>NOTIFY_AND_AUTO_RENEW:通知过期且自动续费</li><br><li>NOTIFY_AND_MANUAL_RENEW:通知过期不自动续费,用户需要手动续费</li><br><li>DISABLE_NOTIFY_AND_MANUAL_RENEW:不自动续费,且不通知</li><br><br>默认取值:NOTIFY_AND_MANUAL_RENEW。若该参数指定为NOTIFY_AND_AUTO_RENEW,在账户余额充足的情况下,实例到期后将按月自动续费。
|
5287
5287
|
# @type RenewFlag: String
|
5288
5288
|
|
5289
5289
|
attr_accessor :Period, :RenewFlag
|
@@ -6761,17 +6761,35 @@ module TencentCloud
|
|
6761
6761
|
# @type InstanceId: String
|
6762
6762
|
# @param BlueprintId: 镜像 ID。可通过[DescribeBlueprints](https://cloud.tencent.com/document/product/1207/47689)接口返回值中的BlueprintId获取。
|
6763
6763
|
# @type BlueprintId: String
|
6764
|
+
# @param Containers: 要创建的容器配置列表。
|
6765
|
+
# @type Containers: Array
|
6766
|
+
# @param LoginConfiguration: 实例登录信息配置。默认缺失情况下代表用户选择实例创建后设置登录密码或绑定密钥。
|
6767
|
+
# @type LoginConfiguration: :class:`Tencentcloud::Lighthouse.v20200324.models.LoginConfiguration`
|
6764
6768
|
|
6765
|
-
attr_accessor :InstanceId, :BlueprintId
|
6769
|
+
attr_accessor :InstanceId, :BlueprintId, :Containers, :LoginConfiguration
|
6766
6770
|
|
6767
|
-
def initialize(instanceid=nil, blueprintid=nil)
|
6771
|
+
def initialize(instanceid=nil, blueprintid=nil, containers=nil, loginconfiguration=nil)
|
6768
6772
|
@InstanceId = instanceid
|
6769
6773
|
@BlueprintId = blueprintid
|
6774
|
+
@Containers = containers
|
6775
|
+
@LoginConfiguration = loginconfiguration
|
6770
6776
|
end
|
6771
6777
|
|
6772
6778
|
def deserialize(params)
|
6773
6779
|
@InstanceId = params['InstanceId']
|
6774
6780
|
@BlueprintId = params['BlueprintId']
|
6781
|
+
unless params['Containers'].nil?
|
6782
|
+
@Containers = []
|
6783
|
+
params['Containers'].each do |i|
|
6784
|
+
dockercontainerconfiguration_tmp = DockerContainerConfiguration.new
|
6785
|
+
dockercontainerconfiguration_tmp.deserialize(i)
|
6786
|
+
@Containers << dockercontainerconfiguration_tmp
|
6787
|
+
end
|
6788
|
+
end
|
6789
|
+
unless params['LoginConfiguration'].nil?
|
6790
|
+
@LoginConfiguration = LoginConfiguration.new
|
6791
|
+
@LoginConfiguration.deserialize(params['LoginConfiguration'])
|
6792
|
+
end
|
6775
6793
|
end
|
6776
6794
|
end
|
6777
6795
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-lighthouse
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.726
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|