Class: Google::Apis::AlertcenterV1beta1::UserDefinedDetectorInfo
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::UserDefinedDetectorInfo
- 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
Detector defined by administrators.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Display name of the detector.
-
#resource_name ⇒ String
Resource name that uniquely identifies the detector.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserDefinedDetectorInfo
constructor
A new instance of UserDefinedDetectorInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UserDefinedDetectorInfo
Returns a new instance of UserDefinedDetectorInfo.
1742 1743 1744 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1742 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Display name of the detector.
Corresponds to the JSON property displayName
1735 1736 1737 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1735 def display_name @display_name end |
#resource_name ⇒ String
Resource name that uniquely identifies the detector.
Corresponds to the JSON property resourceName
1740 1741 1742 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1740 def resource_name @resource_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1747 1748 1749 1750 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1747 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @resource_name = args[:resource_name] if args.key?(:resource_name) end |