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.
2386 2387 2388 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2386 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Display name of the detector.
Corresponds to the JSON property displayName
2379 2380 2381 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2379 def display_name @display_name end |
#resource_name ⇒ String
Resource name that uniquely identifies the detector.
Corresponds to the JSON property resourceName
2384 2385 2386 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2384 def resource_name @resource_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2391 2392 2393 2394 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2391 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @resource_name = args[:resource_name] if args.key?(:resource_name) end |