Class: TencentCloud::Tke::V20180525::DescribePrometheusRecordRulesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::DescribePrometheusRecordRulesResponse
- Defined in:
- lib/v20180525/models.rb
Overview
DescribePrometheusRecordRules返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(records = nil, total = nil, requestid = nil) ⇒ DescribePrometheusRecordRulesResponse
constructor
A new instance of DescribePrometheusRecordRulesResponse.
Constructor Details
#initialize(records = nil, total = nil, requestid = nil) ⇒ DescribePrometheusRecordRulesResponse
Returns a new instance of DescribePrometheusRecordRulesResponse.
9396 9397 9398 9399 9400 |
# File 'lib/v20180525/models.rb', line 9396 def initialize(records=nil, total=nil, requestid=nil) @Records = records @Total = total @RequestId = requestid end |
Instance Attribute Details
#Records ⇒ Object
9394 9395 9396 |
# File 'lib/v20180525/models.rb', line 9394 def Records @Records end |
#RequestId ⇒ Object
9394 9395 9396 |
# File 'lib/v20180525/models.rb', line 9394 def RequestId @RequestId end |
#Total ⇒ Object
9394 9395 9396 |
# File 'lib/v20180525/models.rb', line 9394 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 |
# File 'lib/v20180525/models.rb', line 9402 def deserialize(params) unless params['Records'].nil? @Records = [] params['Records'].each do |i| prometheusrecordruleyamlitem_tmp = PrometheusRecordRuleYamlItem.new prometheusrecordruleyamlitem_tmp.deserialize(i) @Records << prometheusrecordruleyamlitem_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |