Class: TencentCloud::Cloudhsm::V20191112::DescribeVsmsRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cloudhsm::V20191112::DescribeVsmsRequest
- Defined in:
- lib/v20191112/models.rb
Overview
DescribeVsms请求参数结构体
Instance Attribute Summary collapse
- #HsmType ⇒ Object
- #Limit ⇒ Object
- #Manufacturer ⇒ Object
- #Offset ⇒ Object
- #SearchWord ⇒ Object
- #TagFilters ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(offset = nil, limit = nil, searchword = nil, tagfilters = nil, manufacturer = nil, hsmtype = nil) ⇒ DescribeVsmsRequest
constructor
A new instance of DescribeVsmsRequest.
Constructor Details
#initialize(offset = nil, limit = nil, searchword = nil, tagfilters = nil, manufacturer = nil, hsmtype = nil) ⇒ DescribeVsmsRequest
Returns a new instance of DescribeVsmsRequest.
550 551 552 553 554 555 556 557 |
# File 'lib/v20191112/models.rb', line 550 def initialize(offset=nil, limit=nil, searchword=nil, tagfilters=nil, manufacturer=nil, hsmtype=nil) @Offset = offset @Limit = limit @SearchWord = searchword @TagFilters = tagfilters @Manufacturer = manufacturer @HsmType = hsmtype end |
Instance Attribute Details
#HsmType ⇒ Object
548 549 550 |
# File 'lib/v20191112/models.rb', line 548 def HsmType @HsmType end |
#Limit ⇒ Object
548 549 550 |
# File 'lib/v20191112/models.rb', line 548 def Limit @Limit end |
#Manufacturer ⇒ Object
548 549 550 |
# File 'lib/v20191112/models.rb', line 548 def Manufacturer @Manufacturer end |
#Offset ⇒ Object
548 549 550 |
# File 'lib/v20191112/models.rb', line 548 def Offset @Offset end |
#SearchWord ⇒ Object
548 549 550 |
# File 'lib/v20191112/models.rb', line 548 def SearchWord @SearchWord end |
#TagFilters ⇒ Object
548 549 550 |
# File 'lib/v20191112/models.rb', line 548 def TagFilters @TagFilters end |
Instance Method Details
#deserialize(params) ⇒ Object
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 |
# File 'lib/v20191112/models.rb', line 559 def deserialize(params) @Offset = params['Offset'] @Limit = params['Limit'] @SearchWord = params['SearchWord'] unless params['TagFilters'].nil? @TagFilters = [] params['TagFilters'].each do |i| tagfilter_tmp = TagFilter.new tagfilter_tmp.deserialize(i) @TagFilters << tagfilter_tmp end end @Manufacturer = params['Manufacturer'] @HsmType = params['HsmType'] end |