Class: TencentCloud::Iecp::V20210914::DescribeEdgeOperationLogsResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210914/models.rb

Overview

DescribeEdgeOperationLogs返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#OperationLogSetObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • TotalCount:

    总数

  • OperationLogSet:

    操作日志列表

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



2283
2284
2285
# File 'lib/v20210914/models.rb', line 2283

def OperationLogSet
  @OperationLogSet
end

#RequestIdObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • TotalCount:

    总数

  • OperationLogSet:

    操作日志列表

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



2283
2284
2285
# File 'lib/v20210914/models.rb', line 2283

def RequestId
  @RequestId
end

#TotalCountObject

注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • TotalCount:

    总数

  • OperationLogSet:

    操作日志列表

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



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