tencentcloud-sdk-cloudhsm 1.0.335 → 1.0.336
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/v20191112/models.rb +22 -8
- 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: 89e10594c3a57324b5579cd5532f5841365e1d99
|
4
|
+
data.tar.gz: ac0cd04719f21aa51058ca258855d11a0ef7e108
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8d6a4bee40fcbe9e5c6cb6726f56f385dc8ae885ba2708adca1e477839071489cf3d349c0d942622acdaf3a0a58d25fbd3407d8c1a00408c8f8bd08c1ca893c
|
7
|
+
data.tar.gz: 158e7a30e799dfbfb33dbff82e4bf5a97208cd03cbc2fe9ad80c1eea9fec5b3f4013077e1e3076bd07147b40250e779eada57714ac1f5df287d44c74ab07316d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.336
|
data/lib/v20191112/models.rb
CHANGED
@@ -159,18 +159,24 @@ module TencentCloud
|
|
159
159
|
|
160
160
|
# DescribeSupportedHsm请求参数结构体
|
161
161
|
class DescribeSupportedHsmRequest < TencentCloud::Common::AbstractModel
|
162
|
+
# @param HsmType: Hsm类型,可选值all、virtulization、GHSM、EHSM、SHSM
|
163
|
+
# @type HsmType: String
|
162
164
|
|
165
|
+
attr_accessor :HsmType
|
163
166
|
|
164
|
-
def initialize()
|
167
|
+
def initialize(hsmtype=nil)
|
168
|
+
@HsmType = hsmtype
|
165
169
|
end
|
166
170
|
|
167
171
|
def deserialize(params)
|
172
|
+
@HsmType = params['HsmType']
|
168
173
|
end
|
169
174
|
end
|
170
175
|
|
171
176
|
# DescribeSupportedHsm返回参数结构体
|
172
177
|
class DescribeSupportedHsmResponse < TencentCloud::Common::AbstractModel
|
173
178
|
# @param DeviceTypes: 当前地域所支持的设备列表
|
179
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
174
180
|
# @type DeviceTypes: Array
|
175
181
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
176
182
|
# @type RequestId: String
|
@@ -518,15 +524,18 @@ module TencentCloud
|
|
518
524
|
# @type TagFilters: Array
|
519
525
|
# @param Manufacturer: 设备所属的厂商名称,根据厂商来进行筛选
|
520
526
|
# @type Manufacturer: String
|
527
|
+
# @param HsmType: Hsm服务类型,可选virtualization、physical、GHSM、EHSM、SHSM、all
|
528
|
+
# @type HsmType: String
|
521
529
|
|
522
|
-
attr_accessor :Offset, :Limit, :SearchWord, :TagFilters, :Manufacturer
|
530
|
+
attr_accessor :Offset, :Limit, :SearchWord, :TagFilters, :Manufacturer, :HsmType
|
523
531
|
|
524
|
-
def initialize(offset=nil, limit=nil, searchword=nil, tagfilters=nil, manufacturer=nil)
|
532
|
+
def initialize(offset=nil, limit=nil, searchword=nil, tagfilters=nil, manufacturer=nil, hsmtype=nil)
|
525
533
|
@Offset = offset
|
526
534
|
@Limit = limit
|
527
535
|
@SearchWord = searchword
|
528
536
|
@TagFilters = tagfilters
|
529
537
|
@Manufacturer = manufacturer
|
538
|
+
@HsmType = hsmtype
|
530
539
|
end
|
531
540
|
|
532
541
|
def deserialize(params)
|
@@ -542,6 +551,7 @@ module TencentCloud
|
|
542
551
|
end
|
543
552
|
end
|
544
553
|
@Manufacturer = params['Manufacturer']
|
554
|
+
@HsmType = params['HsmType']
|
545
555
|
end
|
546
556
|
end
|
547
557
|
|
@@ -637,7 +647,7 @@ module TencentCloud
|
|
637
647
|
# @type GoodsNum: Integer
|
638
648
|
# @param PayMode: 付费模式:0表示按需计费/后付费,1表示预付费
|
639
649
|
# @type PayMode: Integer
|
640
|
-
# @param TimeSpan:
|
650
|
+
# @param TimeSpan: 商品的时间大小,整型参数,举例:当TimeSpan为1,TImeUnit为m时,表示询价购买时长为1个月时的价格
|
641
651
|
# @type TimeSpan: String
|
642
652
|
# @param TimeUnit: 商品的时间单位,m表示月,y表示年
|
643
653
|
# @type TimeUnit: String
|
@@ -645,16 +655,19 @@ module TencentCloud
|
|
645
655
|
# @type Currency: String
|
646
656
|
# @param Type: 默认为CREATE,可选RENEW
|
647
657
|
# @type Type: String
|
658
|
+
# @param HsmType: Hsm服务类型,可选值virtualization、physical、GHSM、EHSM、SHSM
|
659
|
+
# @type HsmType: String
|
648
660
|
|
649
|
-
attr_accessor :GoodsNum, :PayMode, :TimeSpan, :TimeUnit, :Currency, :Type
|
661
|
+
attr_accessor :GoodsNum, :PayMode, :TimeSpan, :TimeUnit, :Currency, :Type, :HsmType
|
650
662
|
|
651
|
-
def initialize(goodsnum=nil, paymode=nil, timespan=nil, timeunit=nil, currency=nil, type=nil)
|
663
|
+
def initialize(goodsnum=nil, paymode=nil, timespan=nil, timeunit=nil, currency=nil, type=nil, hsmtype=nil)
|
652
664
|
@GoodsNum = goodsnum
|
653
665
|
@PayMode = paymode
|
654
666
|
@TimeSpan = timespan
|
655
667
|
@TimeUnit = timeunit
|
656
668
|
@Currency = currency
|
657
669
|
@Type = type
|
670
|
+
@HsmType = hsmtype
|
658
671
|
end
|
659
672
|
|
660
673
|
def deserialize(params)
|
@@ -664,12 +677,13 @@ module TencentCloud
|
|
664
677
|
@TimeUnit = params['TimeUnit']
|
665
678
|
@Currency = params['Currency']
|
666
679
|
@Type = params['Type']
|
680
|
+
@HsmType = params['HsmType']
|
667
681
|
end
|
668
682
|
end
|
669
683
|
|
670
684
|
# InquiryPriceBuyVsm返回参数结构体
|
671
685
|
class InquiryPriceBuyVsmResponse < TencentCloud::Common::AbstractModel
|
672
|
-
# @param TotalCost:
|
686
|
+
# @param TotalCost: 原始总金额,浮点型参数,精确到小数点后两位,如:2000.99
|
673
687
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
674
688
|
# @type TotalCost: Float
|
675
689
|
# @param GoodsNum: 购买的实例数量
|
@@ -681,7 +695,7 @@ module TencentCloud
|
|
681
695
|
# @param TimeUnit: 商品的时间单位
|
682
696
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
683
697
|
# @type TimeUnit: String
|
684
|
-
# @param OriginalCost:
|
698
|
+
# @param OriginalCost: 应付总金额,浮点型参数,精确到小数点后两位,如:2000.99
|
685
699
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
686
700
|
# @type OriginalCost: Float
|
687
701
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cloudhsm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.336
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-06-
|
11
|
+
date: 2022-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|