Class: TencentCloud::Ms::V20180408::DescribeEncryptInstancesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ms::V20180408::DescribeEncryptInstancesResponse
- Defined in:
- lib/v20180408/models.rb
Overview
DescribeEncryptInstances返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, encryptresults = nil, requestid = nil) ⇒ DescribeEncryptInstancesResponse
constructor
A new instance of DescribeEncryptInstancesResponse.
Constructor Details
#initialize(totalcount = nil, encryptresults = nil, requestid = nil) ⇒ DescribeEncryptInstancesResponse
Returns a new instance of DescribeEncryptInstancesResponse.
1256 1257 1258 1259 1260 |
# File 'lib/v20180408/models.rb', line 1256 def initialize(totalcount=nil, encryptresults=nil, requestid=nil) @TotalCount = totalcount @EncryptResults = encryptresults @RequestId = requestid end |
Instance Attribute Details
#EncryptResults ⇒ Object
1254 1255 1256 |
# File 'lib/v20180408/models.rb', line 1254 def EncryptResults @EncryptResults end |
#RequestId ⇒ Object
1254 1255 1256 |
# File 'lib/v20180408/models.rb', line 1254 def RequestId @RequestId end |
#TotalCount ⇒ Object
1254 1255 1256 |
# File 'lib/v20180408/models.rb', line 1254 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 |
# File 'lib/v20180408/models.rb', line 1262 def deserialize(params) @TotalCount = params['TotalCount'] unless params['EncryptResults'].nil? @EncryptResults = [] params['EncryptResults'].each do |i| encryptresults_tmp = EncryptResults.new encryptresults_tmp.deserialize(i) @EncryptResults << encryptresults_tmp end end @RequestId = params['RequestId'] end |