Class: TencentCloud::Cdb::V20170320::DescribeAuditLogFilesResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdb::V20170320::DescribeAuditLogFilesResponse
- Defined in:
- lib/v20170320/models.rb
Overview
DescribeAuditLogFiles返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeAuditLogFilesResponse
constructor
A new instance of DescribeAuditLogFilesResponse.
Constructor Details
#initialize(totalcount = nil, items = nil, requestid = nil) ⇒ DescribeAuditLogFilesResponse
Returns a new instance of DescribeAuditLogFilesResponse.
4633 4634 4635 4636 4637 |
# File 'lib/v20170320/models.rb', line 4633 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
4631 4632 4633 |
# File 'lib/v20170320/models.rb', line 4631 def Items @Items end |
#RequestId ⇒ Object
4631 4632 4633 |
# File 'lib/v20170320/models.rb', line 4631 def RequestId @RequestId end |
#TotalCount ⇒ Object
4631 4632 4633 |
# File 'lib/v20170320/models.rb', line 4631 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 |
# File 'lib/v20170320/models.rb', line 4639 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Items'].nil? @Items = [] params['Items'].each do |i| auditlogfile_tmp = AuditLogFile.new auditlogfile_tmp.deserialize(i) @Items << auditlogfile_tmp end end @RequestId = params['RequestId'] end |