Class: TencentCloud::Tke::V20180525::PrometheusAlertRuleDetail
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::PrometheusAlertRuleDetail
- Defined in:
- lib/v20180525/models.rb
Overview
托管prometheus告警配置实例
Instance Attribute Summary collapse
-
#Id ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Interval ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Name ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Notification ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Rules ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TemplateId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#UpdatedAt ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, rules = nil, updatedat = nil, notification = nil, id = nil, templateid = nil, interval = nil) ⇒ PrometheusAlertRuleDetail
constructor
A new instance of PrometheusAlertRuleDetail.
Constructor Details
#initialize(name = nil, rules = nil, updatedat = nil, notification = nil, id = nil, templateid = nil, interval = nil) ⇒ PrometheusAlertRuleDetail
Returns a new instance of PrometheusAlertRuleDetail.
15943 15944 15945 15946 15947 15948 15949 15950 15951 |
# File 'lib/v20180525/models.rb', line 15943 def initialize(name=nil, rules=nil, updatedat=nil, notification=nil, id=nil, templateid=nil, interval=nil) @Name = name @Rules = rules @UpdatedAt = updatedat @Notification = notification @Id = id @TemplateId = templateid @Interval = interval end |
Instance Attribute Details
#Id ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
15941 15942 15943 |
# File 'lib/v20180525/models.rb', line 15941 def Id @Id end |
#Interval ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
15941 15942 15943 |
# File 'lib/v20180525/models.rb', line 15941 def Interval @Interval end |
#Name ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
15941 15942 15943 |
# File 'lib/v20180525/models.rb', line 15941 def Name @Name end |
#Notification ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
15941 15942 15943 |
# File 'lib/v20180525/models.rb', line 15941 def Notification @Notification end |
#Rules ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
15941 15942 15943 |
# File 'lib/v20180525/models.rb', line 15941 def Rules @Rules end |
#TemplateId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
15941 15942 15943 |
# File 'lib/v20180525/models.rb', line 15941 def TemplateId @TemplateId end |
#UpdatedAt ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
15941 15942 15943 |
# File 'lib/v20180525/models.rb', line 15941 def UpdatedAt @UpdatedAt end |
Instance Method Details
#deserialize(params) ⇒ Object
15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 |
# File 'lib/v20180525/models.rb', line 15953 def deserialize(params) @Name = params['Name'] unless params['Rules'].nil? @Rules = [] params['Rules'].each do |i| prometheusalertrule_tmp = PrometheusAlertRule.new prometheusalertrule_tmp.deserialize(i) @Rules << prometheusalertrule_tmp end end @UpdatedAt = params['UpdatedAt'] unless params['Notification'].nil? @Notification = PrometheusNotification.new @Notification.deserialize(params['Notification']) end @Id = params['Id'] @TemplateId = params['TemplateId'] @Interval = params['Interval'] end |