Class: TencentCloud::Emr::V20190103::DescribeKyuubiQueryInfoResponse

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

Overview

DescribeKyuubiQueryInfo返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, kyuubiqueryinfolist = nil, requestid = nil) ⇒ DescribeKyuubiQueryInfoResponse

Returns a new instance of DescribeKyuubiQueryInfoResponse.



4667
4668
4669
4670
4671
# File 'lib/v20190103/models.rb', line 4667

def initialize(totalcount=nil, kyuubiqueryinfolist=nil, requestid=nil)
  @TotalCount = totalcount
  @KyuubiQueryInfoList = kyuubiqueryinfolist
  @RequestId = requestid
end

Instance Attribute Details

#KyuubiQueryInfoListObject

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

Parameters:

  • TotalCount:

    总数,分页查询时使用

  • KyuubiQueryInfoList:

    Kyuubi查询信息列表

  • RequestId:

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



4665
4666
4667
# File 'lib/v20190103/models.rb', line 4665

def KyuubiQueryInfoList
  @KyuubiQueryInfoList
end

#RequestIdObject

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

Parameters:

  • TotalCount:

    总数,分页查询时使用

  • KyuubiQueryInfoList:

    Kyuubi查询信息列表

  • RequestId:

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



4665
4666
4667
# File 'lib/v20190103/models.rb', line 4665

def RequestId
  @RequestId
end

#TotalCountObject

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

Parameters:

  • TotalCount:

    总数,分页查询时使用

  • KyuubiQueryInfoList:

    Kyuubi查询信息列表

  • RequestId:

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



4665
4666
4667
# File 'lib/v20190103/models.rb', line 4665

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
# File 'lib/v20190103/models.rb', line 4673

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['KyuubiQueryInfoList'].nil?
    @KyuubiQueryInfoList = []
    params['KyuubiQueryInfoList'].each do |i|
      kyuubiqueryinfo_tmp = KyuubiQueryInfo.new
      kyuubiqueryinfo_tmp.deserialize(i)
      @KyuubiQueryInfoList << kyuubiqueryinfo_tmp
    end
  end
  @RequestId = params['RequestId']
end