Class: Google::Apis::MonitoringV3::ContentMatcher

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ContentMatcher

Returns a new instance of ContentMatcher



341
342
343
# File 'generated/google/apis/monitoring_v3/classes.rb', line 341

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

Instance Attribute Details

#contentString

String content to match Corresponds to the JSON property content

Returns:

  • (String)


339
340
341
# File 'generated/google/apis/monitoring_v3/classes.rb', line 339

def content
  @content
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



346
347
348
# File 'generated/google/apis/monitoring_v3/classes.rb', line 346

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