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

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

Overview

Configuration for parameter validation.

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

Returns a new instance of ParameterValidation



2100
2101
2102
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2100

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

Instance Attribute Details

#regexGoogle::Apis::DataprocV1::RegexValidation

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



2093
2094
2095
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2093

def regex
  @regex
end

#valuesGoogle::Apis::DataprocV1::ValueValidation

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



2098
2099
2100
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2098

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2105
2106
2107
2108
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2105

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