Class: TencentCloud::Tke::V20180525::DescribePrometheusClusterAgentsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::DescribePrometheusClusterAgentsResponse
- Defined in:
- lib/v20180525/models.rb
Overview
DescribePrometheusClusterAgents返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(agents = nil, total = nil, requestid = nil) ⇒ DescribePrometheusClusterAgentsResponse
constructor
A new instance of DescribePrometheusClusterAgentsResponse.
Constructor Details
#initialize(agents = nil, total = nil, requestid = nil) ⇒ DescribePrometheusClusterAgentsResponse
Returns a new instance of DescribePrometheusClusterAgentsResponse.
8848 8849 8850 8851 8852 |
# File 'lib/v20180525/models.rb', line 8848 def initialize(agents=nil, total=nil, requestid=nil) @Agents = agents @Total = total @RequestId = requestid end |
Instance Attribute Details
#Agents ⇒ Object
8846 8847 8848 |
# File 'lib/v20180525/models.rb', line 8846 def Agents @Agents end |
#RequestId ⇒ Object
8846 8847 8848 |
# File 'lib/v20180525/models.rb', line 8846 def RequestId @RequestId end |
#Total ⇒ Object
8846 8847 8848 |
# File 'lib/v20180525/models.rb', line 8846 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 |
# File 'lib/v20180525/models.rb', line 8854 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 |