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.
4699 4700 4701 4702 4703 |
# File 'lib/v20170320/models.rb', line 4699 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
4697 4698 4699 |
# File 'lib/v20170320/models.rb', line 4697 def Items @Items end |
#RequestId ⇒ Object
4697 4698 4699 |
# File 'lib/v20170320/models.rb', line 4697 def RequestId @RequestId end |
#TotalCount ⇒ Object
4697 4698 4699 |
# File 'lib/v20170320/models.rb', line 4697 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 |
# File 'lib/v20170320/models.rb', line 4705 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 |