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.
1812 1813 1814 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1812 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Display name of the detector.
Corresponds to the JSON property displayName
1805 1806 1807 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1805 def display_name @display_name end |
#resource_name ⇒ String
Resource name that uniquely identifies the detector.
Corresponds to the JSON property resourceName
1810 1811 1812 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1810 def resource_name @resource_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1817 1818 1819 1820 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1817 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @resource_name = args[:resource_name] if args.key?(:resource_name) end |