Class: TencentCloud::Kms::V20190118::ListKeysRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Kms::V20190118::ListKeysRequest
- Defined in:
- lib/v20190118/models.rb
Overview
ListKeys请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(offset = nil, limit = nil, role = nil, hsmclusterid = nil) ⇒ ListKeysRequest
constructor
A new instance of ListKeysRequest.
Constructor Details
#initialize(offset = nil, limit = nil, role = nil, hsmclusterid = nil) ⇒ ListKeysRequest
Returns a new instance of ListKeysRequest.
2758 2759 2760 2761 2762 2763 |
# File 'lib/v20190118/models.rb', line 2758 def initialize(offset=nil, limit=nil, role=nil, hsmclusterid=nil) @Offset = offset @Limit = limit @Role = role @HsmClusterId = hsmclusterid end |
Instance Attribute Details
#HsmClusterId ⇒ Object
2756 2757 2758 |
# File 'lib/v20190118/models.rb', line 2756 def HsmClusterId @HsmClusterId end |
#Limit ⇒ Object
2756 2757 2758 |
# File 'lib/v20190118/models.rb', line 2756 def Limit @Limit end |
#Offset ⇒ Object
2756 2757 2758 |
# File 'lib/v20190118/models.rb', line 2756 def Offset @Offset end |
#Role ⇒ Object
2756 2757 2758 |
# File 'lib/v20190118/models.rb', line 2756 def Role @Role end |
Instance Method Details
#deserialize(params) ⇒ Object
2765 2766 2767 2768 2769 2770 |
# File 'lib/v20190118/models.rb', line 2765 def deserialize(params) @Offset = params['Offset'] @Limit = params['Limit'] @Role = params['Role'] @HsmClusterId = params['HsmClusterId'] end |