Class: TencentCloud::Mongodb::V20190725::DescribeTransparentDataEncryptionStatusResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mongodb::V20190725::DescribeTransparentDataEncryptionStatusResponse
- Defined in:
- lib/v20190725/models.rb
Overview
DescribeTransparentDataEncryptionStatus返回参数结构体
Instance Attribute Summary collapse
-
#KeyInfoList ⇒ Object
- close:未开启。 - open:已开启。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
- close:未开启。 - open:已开启。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TransparentDataEncryptionStatus ⇒ Object
- close:未开启。 - open:已开启。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(transparentdataencryptionstatus = nil, keyinfolist = nil, requestid = nil) ⇒ DescribeTransparentDataEncryptionStatusResponse
constructor
A new instance of DescribeTransparentDataEncryptionStatusResponse.
Constructor Details
#initialize(transparentdataencryptionstatus = nil, keyinfolist = nil, requestid = nil) ⇒ DescribeTransparentDataEncryptionStatusResponse
Returns a new instance of DescribeTransparentDataEncryptionStatusResponse.
3252 3253 3254 3255 3256 |
# File 'lib/v20190725/models.rb', line 3252 def initialize(transparentdataencryptionstatus=nil, =nil, requestid=nil) @TransparentDataEncryptionStatus = transparentdataencryptionstatus @KeyInfoList = @RequestId = requestid end |
Instance Attribute Details
#KeyInfoList ⇒ Object
- close:未开启。
- open:已开启。 注意:此字段可能返回 null,表示取不到有效值。
3250 3251 3252 |
# File 'lib/v20190725/models.rb', line 3250 def KeyInfoList @KeyInfoList end |
#RequestId ⇒ Object
- close:未开启。
- open:已开启。 注意:此字段可能返回 null,表示取不到有效值。
3250 3251 3252 |
# File 'lib/v20190725/models.rb', line 3250 def RequestId @RequestId end |
#TransparentDataEncryptionStatus ⇒ Object
- close:未开启。
- open:已开启。 注意:此字段可能返回 null,表示取不到有效值。
3250 3251 3252 |
# File 'lib/v20190725/models.rb', line 3250 def TransparentDataEncryptionStatus @TransparentDataEncryptionStatus end |
Instance Method Details
#deserialize(params) ⇒ Object
3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 |
# File 'lib/v20190725/models.rb', line 3258 def deserialize(params) @TransparentDataEncryptionStatus = params['TransparentDataEncryptionStatus'] unless params['KeyInfoList'].nil? @KeyInfoList = [] params['KeyInfoList'].each do |i| kmsinfodetail_tmp = KMSInfoDetail.new kmsinfodetail_tmp.deserialize(i) @KeyInfoList << kmsinfodetail_tmp end end @RequestId = params['RequestId'] end |