Class: Google::Apis::DataprocV1::ParameterValidation

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

Overview

Configuration for parameter validation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ParameterValidation

Returns a new instance of ParameterValidation.

[View source]

4128
4129
4130
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4128

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

Instance Attribute Details

#regexGoogle::Apis::DataprocV1::RegexValidation

Validation based on regular expressions. Corresponds to the JSON property regex


4121
4122
4123
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4121

def regex
  @regex
end

#valuesGoogle::Apis::DataprocV1::ValueValidation

Validation based on a list of allowed values. Corresponds to the JSON property values


4126
4127
4128
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4126

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

4133
4134
4135
4136
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4133

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