Class: Google::Apis::MonitoringV3::ContentMatcher
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::ContentMatcher
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/google/apis/monitoring_v3/representations.rb
Overview
Used to perform string matching. It allows substring and regular expressions, together with their negations.
Instance Attribute Summary collapse
-
#content ⇒ String
String or regex content to match (max 1024 bytes) Corresponds to the JSON property
content
. -
#matcher ⇒ String
The matcher representing content match options which the check will run with.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ContentMatcher
constructor
A new instance of ContentMatcher.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ContentMatcher
Returns a new instance of ContentMatcher
527 528 529 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 527 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ String
String or regex content to match (max 1024 bytes)
Corresponds to the JSON property content
518 519 520 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 518 def content @content end |
#matcher ⇒ String
The matcher representing content match options which the check will run with.
If the field is not specified (in previous versions), the option is set to be
CONTAINS_STRING which performs content substring matching.
Corresponds to the JSON property matcher
525 526 527 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 525 def matcher @matcher end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
532 533 534 535 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 532 def update!(**args) @content = args[:content] if args.key?(:content) @matcher = args[:matcher] if args.key?(:matcher) end |