Class: Google::Apis::DataprocV1beta2::ParameterValidation
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1beta2::ParameterValidation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataproc_v1beta2/classes.rb,
lib/google/apis/dataproc_v1beta2/representations.rb,
lib/google/apis/dataproc_v1beta2/representations.rb
Overview
Configuration for parameter validation.
Instance Attribute Summary collapse
-
#regex ⇒ Google::Apis::DataprocV1beta2::RegexValidation
Validation based on regular expressions.
-
#values ⇒ Google::Apis::DataprocV1beta2::ValueValidation
Validation based on a list of allowed values.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ParameterValidation
constructor
A new instance of ParameterValidation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ParameterValidation
Returns a new instance of ParameterValidation.
2509 2510 2511 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 2509 def initialize(**args) update!(**args) end |
Instance Attribute Details
#regex ⇒ Google::Apis::DataprocV1beta2::RegexValidation
Validation based on regular expressions.
Corresponds to the JSON property regex
2502 2503 2504 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 2502 def regex @regex end |
#values ⇒ Google::Apis::DataprocV1beta2::ValueValidation
Validation based on a list of allowed values.
Corresponds to the JSON property values
2507 2508 2509 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 2507 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2514 2515 2516 2517 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 2514 def update!(**args) @regex = args[:regex] if args.key?(:regex) @values = args[:values] if args.key?(:values) end |