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.
2355 2356 2357 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2355 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Display name of the detector.
Corresponds to the JSON property displayName
2348 2349 2350 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2348 def display_name @display_name end |
#resource_name ⇒ String
Resource name that uniquely identifies the detector.
Corresponds to the JSON property resourceName
2353 2354 2355 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2353 def resource_name @resource_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2360 2361 2362 2363 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2360 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @resource_name = args[:resource_name] if args.key?(:resource_name) end |