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.
4654 4655 4656 4657 4658 |
# File 'lib/v20170320/models.rb', line 4654 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
4652 4653 4654 |
# File 'lib/v20170320/models.rb', line 4652 def Items @Items end |
#RequestId ⇒ Object
4652 4653 4654 |
# File 'lib/v20170320/models.rb', line 4652 def RequestId @RequestId end |
#TotalCount ⇒ Object
4652 4653 4654 |
# File 'lib/v20170320/models.rb', line 4652 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 |
# File 'lib/v20170320/models.rb', line 4660 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 |