Class: Google::Apis::AlertcenterV1beta1::MatchInfo

Inherits:
Object
  • Object
show all
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 match information from the condition part of the rule.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MatchInfo

Returns a new instance of MatchInfo.



1520
1521
1522
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1520

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#predefined_detectorGoogle::Apis::AlertcenterV1beta1::PredefinedDetectorInfo

Detector provided by Google. Corresponds to the JSON property predefinedDetector



1513
1514
1515
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1513

def predefined_detector
  @predefined_detector
end

#user_defined_detectorGoogle::Apis::AlertcenterV1beta1::UserDefinedDetectorInfo

Detector defined by administrators. Corresponds to the JSON property userDefinedDetector



1518
1519
1520
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1518

def user_defined_detector
  @user_defined_detector
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1525
1526
1527
1528
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1525

def update!(**args)
  @predefined_detector = args[:predefined_detector] if args.key?(:predefined_detector)
  @user_defined_detector = args[:user_defined_detector] if args.key?(:user_defined_detector)
end