Class: TencentCloud::Kms::V20190118::GetPublicKeyResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Kms::V20190118::GetPublicKeyResponse
- Defined in:
- lib/v20190118/models.rb
Overview
GetPublicKey返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(keyid = nil, publickey = nil, publickeypem = nil, requestid = nil) ⇒ GetPublicKeyResponse
constructor
A new instance of GetPublicKeyResponse.
Constructor Details
#initialize(keyid = nil, publickey = nil, publickeypem = nil, requestid = nil) ⇒ GetPublicKeyResponse
Returns a new instance of GetPublicKeyResponse.
2031 2032 2033 2034 2035 2036 |
# File 'lib/v20190118/models.rb', line 2031 def initialize(keyid=nil, publickey=nil, publickeypem=nil, requestid=nil) @KeyId = keyid @PublicKey = publickey @PublicKeyPem = publickeypem @RequestId = requestid end |
Instance Attribute Details
#KeyId ⇒ Object
2029 2030 2031 |
# File 'lib/v20190118/models.rb', line 2029 def KeyId @KeyId end |
#PublicKey ⇒ Object
2029 2030 2031 |
# File 'lib/v20190118/models.rb', line 2029 def PublicKey @PublicKey end |
#PublicKeyPem ⇒ Object
2029 2030 2031 |
# File 'lib/v20190118/models.rb', line 2029 def PublicKeyPem @PublicKeyPem end |
#RequestId ⇒ Object
2029 2030 2031 |
# File 'lib/v20190118/models.rb', line 2029 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2038 2039 2040 2041 2042 2043 |
# File 'lib/v20190118/models.rb', line 2038 def deserialize(params) @KeyId = params['KeyId'] @PublicKey = params['PublicKey'] @PublicKeyPem = params['PublicKeyPem'] @RequestId = params['RequestId'] end |