Class: TencentCloud::Dbbrain::V20210527::DescribeSecurityAuditLogExportTasksResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20210527::DescribeSecurityAuditLogExportTasksResponse
- Defined in:
- lib/v20210527/models.rb
Overview
DescribeSecurityAuditLogExportTasks返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tasks = nil, totalcount = nil, requestid = nil) ⇒ DescribeSecurityAuditLogExportTasksResponse
constructor
A new instance of DescribeSecurityAuditLogExportTasksResponse.
Constructor Details
#initialize(tasks = nil, totalcount = nil, requestid = nil) ⇒ DescribeSecurityAuditLogExportTasksResponse
Returns a new instance of DescribeSecurityAuditLogExportTasksResponse.
4224 4225 4226 4227 4228 |
# File 'lib/v20210527/models.rb', line 4224 def initialize(tasks=nil, totalcount=nil, requestid=nil) @Tasks = tasks @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
4222 4223 4224 |
# File 'lib/v20210527/models.rb', line 4222 def RequestId @RequestId end |
#Tasks ⇒ Object
4222 4223 4224 |
# File 'lib/v20210527/models.rb', line 4222 def Tasks @Tasks end |
#TotalCount ⇒ Object
4222 4223 4224 |
# File 'lib/v20210527/models.rb', line 4222 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 |
# File 'lib/v20210527/models.rb', line 4230 def deserialize(params) unless params['Tasks'].nil? @Tasks = [] params['Tasks'].each do |i| seclogexporttaskinfo_tmp = SecLogExportTaskInfo.new seclogexporttaskinfo_tmp.deserialize(i) @Tasks << seclogexporttaskinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |