tencentcloud-sdk-lighthouse 3.0.516 → 3.0.517
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 +7 -7
- 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: 3e0c9b2638a0bfa769c62e5d272f688f60f888dd
|
4
|
+
data.tar.gz: 459715266ba7cb8a81d713ef65e3263857c04f26
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 174b2e1d4061ee44bf434d0ee294095a4181d68af0ed8cc3d054bf7b957a647f879f9ec030c5a3dd461ca19e704f2b8a69d3fdc4f0a5ec25aab5f695ebde008f
|
7
|
+
data.tar.gz: fc86e7e7f832403f21b814f2177234f2215013a88052b4960ee00670f07d717c3bdafff3e423296af3b9250f937e71fb1eb13752571041c1c79469fd181a3cf1
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.517
|
data/lib/v20200324/models.rb
CHANGED
@@ -3780,29 +3780,29 @@ module TencentCloud
|
|
3780
3780
|
class InquirePriceCreateInstancesRequest < TencentCloud::Common::AbstractModel
|
3781
3781
|
# @param BundleId: 实例的套餐 ID。
|
3782
3782
|
# @type BundleId: String
|
3783
|
+
# @param InstanceChargePrepaid: 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。
|
3784
|
+
# @type InstanceChargePrepaid: :class:`Tencentcloud::Lighthouse.v20200324.models.InstanceChargePrepaid`
|
3783
3785
|
# @param InstanceCount: 创建数量,默认为 1。
|
3784
3786
|
# @type InstanceCount: Integer
|
3785
|
-
# @param InstanceChargePrepaid: 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。若指定实例的付费模式为预付费则该参数必传。
|
3786
|
-
# @type InstanceChargePrepaid: :class:`Tencentcloud::Lighthouse.v20200324.models.InstanceChargePrepaid`
|
3787
3787
|
# @param BlueprintId: 应用镜像 ID,使用收费应用镜像时必填。可通过[DescribeBlueprints](https://cloud.tencent.com/document/product/1207/47689)接口返回值中的BlueprintId获取。
|
3788
3788
|
# @type BlueprintId: String
|
3789
3789
|
|
3790
|
-
attr_accessor :BundleId, :
|
3790
|
+
attr_accessor :BundleId, :InstanceChargePrepaid, :InstanceCount, :BlueprintId
|
3791
3791
|
|
3792
|
-
def initialize(bundleid=nil,
|
3792
|
+
def initialize(bundleid=nil, instancechargeprepaid=nil, instancecount=nil, blueprintid=nil)
|
3793
3793
|
@BundleId = bundleid
|
3794
|
-
@InstanceCount = instancecount
|
3795
3794
|
@InstanceChargePrepaid = instancechargeprepaid
|
3795
|
+
@InstanceCount = instancecount
|
3796
3796
|
@BlueprintId = blueprintid
|
3797
3797
|
end
|
3798
3798
|
|
3799
3799
|
def deserialize(params)
|
3800
3800
|
@BundleId = params['BundleId']
|
3801
|
-
@InstanceCount = params['InstanceCount']
|
3802
3801
|
unless params['InstanceChargePrepaid'].nil?
|
3803
3802
|
@InstanceChargePrepaid = InstanceChargePrepaid.new
|
3804
3803
|
@InstanceChargePrepaid.deserialize(params['InstanceChargePrepaid'])
|
3805
3804
|
end
|
3805
|
+
@InstanceCount = params['InstanceCount']
|
3806
3806
|
@BlueprintId = params['BlueprintId']
|
3807
3807
|
end
|
3808
3808
|
end
|
@@ -3880,7 +3880,7 @@ module TencentCloud
|
|
3880
3880
|
class InquirePriceRenewInstancesRequest < TencentCloud::Common::AbstractModel
|
3881
3881
|
# @param InstanceIds: 待续费的实例ID。可通过[DescribeInstances](https://cloud.tencent.com/document/api/1207/47573 )接口返回值中的InstanceId获取。每次请求批量实例的上限为50。
|
3882
3882
|
# @type InstanceIds: Array
|
3883
|
-
# @param InstanceChargePrepaid:
|
3883
|
+
# @param InstanceChargePrepaid: 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。
|
3884
3884
|
# @type InstanceChargePrepaid: :class:`Tencentcloud::Lighthouse.v20200324.models.InstanceChargePrepaid`
|
3885
3885
|
# @param RenewDataDisk: 是否续费数据盘。默认值: false, 即不续费。
|
3886
3886
|
# @type RenewDataDisk: Boolean
|
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.517
|
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-02-
|
11
|
+
date: 2023-02-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|