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.
4160 4161 4162 4163 4164 |
# File 'lib/v20210527/models.rb', line 4160 def initialize(tasks=nil, totalcount=nil, requestid=nil) @Tasks = tasks @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
4158 4159 4160 |
# File 'lib/v20210527/models.rb', line 4158 def RequestId @RequestId end |
#Tasks ⇒ Object
4158 4159 4160 |
# File 'lib/v20210527/models.rb', line 4158 def Tasks @Tasks end |
#TotalCount ⇒ Object
4158 4159 4160 |
# File 'lib/v20210527/models.rb', line 4158 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 |
# File 'lib/v20210527/models.rb', line 4166 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 |