Class: TencentCloud::Dasb::V20191018::SearchAuditLogResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dasb::V20191018::SearchAuditLogResponse
- Defined in:
- lib/v20191018/models.rb
Overview
SearchAuditLog返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(auditlogset = nil, totalcount = nil, requestid = nil) ⇒ SearchAuditLogResponse
constructor
A new instance of SearchAuditLogResponse.
Constructor Details
#initialize(auditlogset = nil, totalcount = nil, requestid = nil) ⇒ SearchAuditLogResponse
Returns a new instance of SearchAuditLogResponse.
4429 4430 4431 4432 4433 |
# File 'lib/v20191018/models.rb', line 4429 def initialize(auditlogset=nil, totalcount=nil, requestid=nil) @AuditLogSet = auditlogset @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#AuditLogSet ⇒ Object
4427 4428 4429 |
# File 'lib/v20191018/models.rb', line 4427 def AuditLogSet @AuditLogSet end |
#RequestId ⇒ Object
4427 4428 4429 |
# File 'lib/v20191018/models.rb', line 4427 def RequestId @RequestId end |
#TotalCount ⇒ Object
4427 4428 4429 |
# File 'lib/v20191018/models.rb', line 4427 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 |
# File 'lib/v20191018/models.rb', line 4435 def deserialize(params) unless params['AuditLogSet'].nil? @AuditLogSet = [] params['AuditLogSet'].each do |i| auditlogresult_tmp = AuditLogResult.new auditlogresult_tmp.deserialize(i) @AuditLogSet << auditlogresult_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |