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. Currently, this matches on the exact content. In the future, it can be expanded to allow for regular expressions and more complex matching.
Instance Attribute Summary collapse
-
#content ⇒ String
String content to match (max 1024 bytes) Corresponds to the JSON property
content
.
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
566 567 568 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 566 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ String
String content to match (max 1024 bytes)
Corresponds to the JSON property content
564 565 566 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 564 def content @content end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
571 572 573 |
# File 'generated/google/apis/monitoring_v3/classes.rb', line 571 def update!(**args) @content = args[:content] if args.key?(:content) end |