Class: Google::Apis::AlertcenterV1beta1::RuleInfo
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::RuleInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/alertcenter_v1beta1/classes.rb,
lib/google/apis/alertcenter_v1beta1/representations.rb,
lib/google/apis/alertcenter_v1beta1/representations.rb
Overview
Proto that contains rule information.
Instance Attribute Summary collapse
-
#display_name ⇒ String
User provided name of the rule.
-
#resource_name ⇒ String
Resource name that uniquely identifies the rule.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RuleInfo
constructor
A new instance of RuleInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RuleInfo
Returns a new instance of RuleInfo.
1802 1803 1804 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1802 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
User provided name of the rule.
Corresponds to the JSON property displayName
1795 1796 1797 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1795 def display_name @display_name end |
#resource_name ⇒ String
Resource name that uniquely identifies the rule.
Corresponds to the JSON property resourceName
1800 1801 1802 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1800 def resource_name @resource_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1807 1808 1809 1810 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1807 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @resource_name = args[:resource_name] if args.key?(:resource_name) end |