Class: TencentCloud::Postgres::V20170312::DescribeEncryptionKeysResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Postgres::V20170312::DescribeEncryptionKeysResponse
- Defined in:
- lib/v20170312/models.rb
Overview
DescribeEncryptionKeys返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(encryptionkeys = nil, requestid = nil) ⇒ DescribeEncryptionKeysResponse
constructor
A new instance of DescribeEncryptionKeysResponse.
Constructor Details
#initialize(encryptionkeys = nil, requestid = nil) ⇒ DescribeEncryptionKeysResponse
Returns a new instance of DescribeEncryptionKeysResponse.
3785 3786 3787 3788 |
# File 'lib/v20170312/models.rb', line 3785 def initialize(encryptionkeys=nil, requestid=nil) @EncryptionKeys = encryptionkeys @RequestId = requestid end |
Instance Attribute Details
#EncryptionKeys ⇒ Object
3783 3784 3785 |
# File 'lib/v20170312/models.rb', line 3783 def EncryptionKeys @EncryptionKeys end |
#RequestId ⇒ Object
3783 3784 3785 |
# File 'lib/v20170312/models.rb', line 3783 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 |
# File 'lib/v20170312/models.rb', line 3790 def deserialize(params) unless params['EncryptionKeys'].nil? @EncryptionKeys = [] params['EncryptionKeys'].each do |i| encryptionkey_tmp = EncryptionKey.new encryptionkey_tmp.deserialize(i) @EncryptionKeys << encryptionkey_tmp end end @RequestId = params['RequestId'] end |