Class: TencentCloud::Iecp::V20210914::DescribeEdgeOperationLogsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iecp::V20210914::DescribeEdgeOperationLogsResponse
- Defined in:
- lib/v20210914/models.rb
Overview
DescribeEdgeOperationLogs返回参数结构体
Instance Attribute Summary collapse
-
#OperationLogSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, operationlogset = nil, requestid = nil) ⇒ DescribeEdgeOperationLogsResponse
constructor
A new instance of DescribeEdgeOperationLogsResponse.
Constructor Details
#initialize(totalcount = nil, operationlogset = nil, requestid = nil) ⇒ DescribeEdgeOperationLogsResponse
Returns a new instance of DescribeEdgeOperationLogsResponse.
2285 2286 2287 2288 2289 |
# File 'lib/v20210914/models.rb', line 2285 def initialize(totalcount=nil, operationlogset=nil, requestid=nil) @TotalCount = totalcount @OperationLogSet = operationlogset @RequestId = requestid end |
Instance Attribute Details
#OperationLogSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2283 2284 2285 |
# File 'lib/v20210914/models.rb', line 2283 def OperationLogSet @OperationLogSet end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2283 2284 2285 |
# File 'lib/v20210914/models.rb', line 2283 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
2283 2284 2285 |
# File 'lib/v20210914/models.rb', line 2283 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 |
# File 'lib/v20210914/models.rb', line 2291 def deserialize(params) @TotalCount = params['TotalCount'] unless params['OperationLogSet'].nil? @OperationLogSet = [] params['OperationLogSet'].each do |i| operationlog_tmp = OperationLog.new operationlog_tmp.deserialize(i) @OperationLogSet << operationlog_tmp end end @RequestId = params['RequestId'] end |