Class: TencentCloud::Cynosdb::V20190107::DescribeAuditLogFilesResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cynosdb::V20190107::DescribeAuditLogFilesResponse
- Defined in:
- lib/v20190107/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.
4862 4863 4864 4865 4866 |
# File 'lib/v20190107/models.rb', line 4862 def initialize(totalcount=nil, items=nil, requestid=nil) @TotalCount = totalcount @Items = items @RequestId = requestid end |
Instance Attribute Details
#Items ⇒ Object
4860 4861 4862 |
# File 'lib/v20190107/models.rb', line 4860 def Items @Items end |
#RequestId ⇒ Object
4860 4861 4862 |
# File 'lib/v20190107/models.rb', line 4860 def RequestId @RequestId end |
#TotalCount ⇒ Object
4860 4861 4862 |
# File 'lib/v20190107/models.rb', line 4860 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 |
# File 'lib/v20190107/models.rb', line 4868 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 |