Class: TencentCloud::Kms::V20190118::GetParametersForImportRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Kms::V20190118::GetParametersForImportRequest
- Defined in:
- lib/v20190118/models.rb
Overview
GetParametersForImport请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(keyid = nil, wrappingalgorithm = nil, wrappingkeyspec = nil) ⇒ GetParametersForImportRequest
constructor
A new instance of GetParametersForImportRequest.
Constructor Details
#initialize(keyid = nil, wrappingalgorithm = nil, wrappingkeyspec = nil) ⇒ GetParametersForImportRequest
Returns a new instance of GetParametersForImportRequest.
1957 1958 1959 1960 1961 |
# File 'lib/v20190118/models.rb', line 1957 def initialize(keyid=nil, wrappingalgorithm=nil, wrappingkeyspec=nil) @KeyId = keyid @WrappingAlgorithm = wrappingalgorithm @WrappingKeySpec = wrappingkeyspec end |
Instance Attribute Details
#KeyId ⇒ Object
1955 1956 1957 |
# File 'lib/v20190118/models.rb', line 1955 def KeyId @KeyId end |
#WrappingAlgorithm ⇒ Object
1955 1956 1957 |
# File 'lib/v20190118/models.rb', line 1955 def WrappingAlgorithm @WrappingAlgorithm end |
#WrappingKeySpec ⇒ Object
1955 1956 1957 |
# File 'lib/v20190118/models.rb', line 1955 def WrappingKeySpec @WrappingKeySpec end |
Instance Method Details
#deserialize(params) ⇒ Object
1963 1964 1965 1966 1967 |
# File 'lib/v20190118/models.rb', line 1963 def deserialize(params) @KeyId = params['KeyId'] @WrappingAlgorithm = params['WrappingAlgorithm'] @WrappingKeySpec = params['WrappingKeySpec'] end |