Class: TencentCloud::Emr::V20190103::DescribeInstanceOplogResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::DescribeInstanceOplogResponse
- Defined in:
- lib/v20190103/models.rb
Overview
DescribeInstanceOplog返回参数结构体
Instance Attribute Summary collapse
- #LogList ⇒ Object
- #OperandList ⇒ Object
- #RequestId ⇒ Object
- #SecurityLevelList ⇒ Object
- #TotalCnt ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcnt = nil, loglist = nil, operandlist = nil, securitylevellist = nil, requestid = nil) ⇒ DescribeInstanceOplogResponse
constructor
A new instance of DescribeInstanceOplogResponse.
Constructor Details
#initialize(totalcnt = nil, loglist = nil, operandlist = nil, securitylevellist = nil, requestid = nil) ⇒ DescribeInstanceOplogResponse
Returns a new instance of DescribeInstanceOplogResponse.
4322 4323 4324 4325 4326 4327 4328 |
# File 'lib/v20190103/models.rb', line 4322 def initialize(totalcnt=nil, loglist=nil, operandlist=nil, securitylevellist=nil, requestid=nil) @TotalCnt = totalcnt @LogList = loglist @OperandList = operandlist @SecurityLevelList = securitylevellist @RequestId = requestid end |
Instance Attribute Details
#LogList ⇒ Object
4320 4321 4322 |
# File 'lib/v20190103/models.rb', line 4320 def LogList @LogList end |
#OperandList ⇒ Object
4320 4321 4322 |
# File 'lib/v20190103/models.rb', line 4320 def OperandList @OperandList end |
#RequestId ⇒ Object
4320 4321 4322 |
# File 'lib/v20190103/models.rb', line 4320 def RequestId @RequestId end |
#SecurityLevelList ⇒ Object
4320 4321 4322 |
# File 'lib/v20190103/models.rb', line 4320 def SecurityLevelList @SecurityLevelList end |
#TotalCnt ⇒ Object
4320 4321 4322 |
# File 'lib/v20190103/models.rb', line 4320 def TotalCnt @TotalCnt end |
Instance Method Details
#deserialize(params) ⇒ Object
4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 |
# File 'lib/v20190103/models.rb', line 4330 def deserialize(params) @TotalCnt = params['TotalCnt'] unless params['LogList'].nil? @LogList = [] params['LogList'].each do |i| operationlog_tmp = OperationLog.new operationlog_tmp.deserialize(i) @LogList << operationlog_tmp end end @OperandList = params['OperandList'] @SecurityLevelList = params['SecurityLevelList'] @RequestId = params['RequestId'] end |