tencentcloud-sdk-lighthouse 3.0.553 → 3.0.554
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 +24 -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: 5b18f99bccbaae4119615c7599b5209f17787cbf
|
|
4
|
+
data.tar.gz: bcf99cde01c5b9fc6cba8ba5f57ba438f117394d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 94500ea248b5adc1f7f7e9b9c38b4976c4a16719c76543b634db1b719352f6630f5079ea4f710c6b656146b05557a23c254aa3a24ba90d2319ee206932125f50
|
|
7
|
+
data.tar.gz: afa1db42e89472d20a20dee4e4d32c501a588743281efd6b4eadfe284ec2ed29f05cc69223217c1f0e88de30f4535d866a839b2f1334f88381ede1776a9ecd3f
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.554
|
data/lib/v20200324/models.rb
CHANGED
|
@@ -411,8 +411,18 @@ module TencentCloud
|
|
|
411
411
|
# @type BundleSalesState: String
|
|
412
412
|
# @param BundleType: 套餐类型。
|
|
413
413
|
# 取值范围:
|
|
414
|
-
# <li>
|
|
414
|
+
# <li>STARTER_BUNDLE:入门型</li>
|
|
415
|
+
# <li>GENERAL_BUNDLE:通用型</li>
|
|
416
|
+
# <li>ENTERPRISE_BUNDLE:企业型</li>
|
|
417
|
+
# <li>STORAGE_BUNDLE:存储型</li>
|
|
418
|
+
# <li>EXCLUSIVE_BUNDLE:专属型</li>
|
|
419
|
+
# <li>HK_EXCLUSIVE_BUNDLE:香港专属型 </li>
|
|
420
|
+
# <li>CAREFREE_BUNDLE:无忧型</li>
|
|
421
|
+
# <li>BEFAST_BUNDLE:蜂驰型 </li>
|
|
415
422
|
# @type BundleType: String
|
|
423
|
+
# @param BundleTypeDescription: 套餐类型描述信息。
|
|
424
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
425
|
+
# @type BundleTypeDescription: String
|
|
416
426
|
# @param BundleDisplayLabel: 套餐展示标签.
|
|
417
427
|
# 取值范围:
|
|
418
428
|
# "ACTIVITY": 活动套餐,
|
|
@@ -420,9 +430,9 @@ module TencentCloud
|
|
|
420
430
|
# "CAREFREE": 无忧套餐
|
|
421
431
|
# @type BundleDisplayLabel: String
|
|
422
432
|
|
|
423
|
-
attr_accessor :BundleId, :Memory, :SystemDiskType, :SystemDiskSize, :MonthlyTraffic, :SupportLinuxUnixPlatform, :SupportWindowsPlatform, :Price, :CPU, :InternetMaxBandwidthOut, :InternetChargeType, :BundleSalesState, :BundleType, :BundleDisplayLabel
|
|
433
|
+
attr_accessor :BundleId, :Memory, :SystemDiskType, :SystemDiskSize, :MonthlyTraffic, :SupportLinuxUnixPlatform, :SupportWindowsPlatform, :Price, :CPU, :InternetMaxBandwidthOut, :InternetChargeType, :BundleSalesState, :BundleType, :BundleTypeDescription, :BundleDisplayLabel
|
|
424
434
|
|
|
425
|
-
def initialize(bundleid=nil, memory=nil, systemdisktype=nil, systemdisksize=nil, monthlytraffic=nil, supportlinuxunixplatform=nil, supportwindowsplatform=nil, price=nil, cpu=nil, internetmaxbandwidthout=nil, internetchargetype=nil, bundlesalesstate=nil, bundletype=nil, bundledisplaylabel=nil)
|
|
435
|
+
def initialize(bundleid=nil, memory=nil, systemdisktype=nil, systemdisksize=nil, monthlytraffic=nil, supportlinuxunixplatform=nil, supportwindowsplatform=nil, price=nil, cpu=nil, internetmaxbandwidthout=nil, internetchargetype=nil, bundlesalesstate=nil, bundletype=nil, bundletypedescription=nil, bundledisplaylabel=nil)
|
|
426
436
|
@BundleId = bundleid
|
|
427
437
|
@Memory = memory
|
|
428
438
|
@SystemDiskType = systemdisktype
|
|
@@ -436,6 +446,7 @@ module TencentCloud
|
|
|
436
446
|
@InternetChargeType = internetchargetype
|
|
437
447
|
@BundleSalesState = bundlesalesstate
|
|
438
448
|
@BundleType = bundletype
|
|
449
|
+
@BundleTypeDescription = bundletypedescription
|
|
439
450
|
@BundleDisplayLabel = bundledisplaylabel
|
|
440
451
|
end
|
|
441
452
|
|
|
@@ -456,6 +467,7 @@ module TencentCloud
|
|
|
456
467
|
@InternetChargeType = params['InternetChargeType']
|
|
457
468
|
@BundleSalesState = params['BundleSalesState']
|
|
458
469
|
@BundleType = params['BundleType']
|
|
470
|
+
@BundleTypeDescription = params['BundleTypeDescription']
|
|
459
471
|
@BundleDisplayLabel = params['BundleDisplayLabel']
|
|
460
472
|
end
|
|
461
473
|
end
|
|
@@ -2194,6 +2206,15 @@ module TencentCloud
|
|
|
2194
2206
|
# <li>instance-state</li>按照【实例状态】进行过滤。
|
|
2195
2207
|
# 类型:String
|
|
2196
2208
|
# 必选:否
|
|
2209
|
+
# <li>tag-key</li>按照【标签键】进行过滤。
|
|
2210
|
+
# 类型:String
|
|
2211
|
+
# 必选:否
|
|
2212
|
+
# <li>tag-value</li>按照【标签值】进行过滤。
|
|
2213
|
+
# 类型:String
|
|
2214
|
+
# 必选:否
|
|
2215
|
+
# <li> tag:tag-key</li>按照【标签键值对】进行过滤。 tag-key使用具体的标签键进行替换。
|
|
2216
|
+
# 类型:String
|
|
2217
|
+
# 必选:否
|
|
2197
2218
|
# 每次请求的 Filters 的上限为 10,Filter.Values 的上限为 100。参数不支持同时指定 InstanceIds 和 Filters。
|
|
2198
2219
|
# @type Filters: Array
|
|
2199
2220
|
# @param Offset: 偏移量,默认为 0。关于`Offset`的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/product/1207/47578)中的相关小节。
|
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.554
|
|
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-04-
|
|
11
|
+
date: 2023-04-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|