Class: Google::Apis::DataprocV1beta2::RegexValidation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataproc_v1beta2/classes.rb,
generated/google/apis/dataproc_v1beta2/representations.rb,
generated/google/apis/dataproc_v1beta2/representations.rb

Overview

Validation based on regular expressions.

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) ⇒ RegexValidation

Returns a new instance of RegexValidation



1895
1896
1897
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1895

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

Instance Attribute Details

#regexesArray<String>

Required. RE2 regular expressions used to validate the parameter's value. The provided value must match the regexes in its entirety, e.g. substring matches are not enough. Corresponds to the JSON property regexes

Returns:

  • (Array<String>)


1893
1894
1895
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1893

def regexes
  @regexes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1900
1901
1902
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 1900

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