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.
10038 10039 10040 10041 10042 |
# File 'lib/v20180525/models.rb', line 10038 def initialize(records=nil, total=nil, requestid=nil) @Records = records @Total = total @RequestId = requestid end |
Instance Attribute Details
#Records ⇒ Object
10036 10037 10038 |
# File 'lib/v20180525/models.rb', line 10036 def Records @Records end |
#RequestId ⇒ Object
10036 10037 10038 |
# File 'lib/v20180525/models.rb', line 10036 def RequestId @RequestId end |
#Total ⇒ Object
10036 10037 10038 |
# File 'lib/v20180525/models.rb', line 10036 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 |
# File 'lib/v20180525/models.rb', line 10044 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 |