Class: TencentCloud::Tke::V20180525::DescribePrometheusAgentsResponse

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

Overview

DescribePrometheusAgents返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(agents = nil, total = nil, requestid = nil) ⇒ DescribePrometheusAgentsResponse

Returns a new instance of DescribePrometheusAgentsResponse.



8587
8588
8589
8590
8591
# File 'lib/v20180525/models.rb', line 8587

def initialize(agents=nil, total=nil, requestid=nil)
  @Agents = agents
  @Total = total
  @RequestId = requestid
end

Instance Attribute Details

#AgentsObject

Parameters:

  • Agents:

    被关联集群信息

  • Total:

    被关联集群总量

  • RequestId:

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



8585
8586
8587
# File 'lib/v20180525/models.rb', line 8585

def Agents
  @Agents
end

#RequestIdObject

Parameters:

  • Agents:

    被关联集群信息

  • Total:

    被关联集群总量

  • RequestId:

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



8585
8586
8587
# File 'lib/v20180525/models.rb', line 8585

def RequestId
  @RequestId
end

#TotalObject

Parameters:

  • Agents:

    被关联集群信息

  • Total:

    被关联集群总量

  • RequestId:

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



8585
8586
8587
# File 'lib/v20180525/models.rb', line 8585

def Total
  @Total
end

Instance Method Details

#deserialize(params) ⇒ Object



8593
8594
8595
8596
8597
8598
8599
8600
8601
8602
8603
8604
# File 'lib/v20180525/models.rb', line 8593

def deserialize(params)
  unless params['Agents'].nil?
    @Agents = []
    params['Agents'].each do |i|
      prometheusagentoverview_tmp = PrometheusAgentOverview.new
      prometheusagentoverview_tmp.deserialize(i)
      @Agents << prometheusagentoverview_tmp
    end
  end
  @Total = params['Total']
  @RequestId = params['RequestId']
end