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.
4087 4088 4089 4090 4091 |
# File 'lib/v20210527/models.rb', line 4087 def initialize(tasks=nil, totalcount=nil, requestid=nil) @Tasks = tasks @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
4085 4086 4087 |
# File 'lib/v20210527/models.rb', line 4085 def RequestId @RequestId end |
#Tasks ⇒ Object
4085 4086 4087 |
# File 'lib/v20210527/models.rb', line 4085 def Tasks @Tasks end |
#TotalCount ⇒ Object
4085 4086 4087 |
# File 'lib/v20210527/models.rb', line 4085 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 |
# File 'lib/v20210527/models.rb', line 4093 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 |