Class: Google::Apis::DataprocV1::ParameterValidation
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::ParameterValidation
- 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
-
#regex ⇒ Google::Apis::DataprocV1::RegexValidation
Validation based on regular expressions.
-
#values ⇒ Google::Apis::DataprocV1::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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ParameterValidation
Returns a new instance of ParameterValidation
1674 1675 1676 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1674 def initialize(**args) update!(**args) end |
Instance Attribute Details
#regex ⇒ Google::Apis::DataprocV1::RegexValidation
Validation based on regular expressions.
Corresponds to the JSON property regex
1667 1668 1669 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1667 def regex @regex end |
#values ⇒ Google::Apis::DataprocV1::ValueValidation
Validation based on a list of allowed values.
Corresponds to the JSON property values
1672 1673 1674 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1672 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1679 1680 1681 1682 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 1679 def update!(**args) @regex = args[:regex] if args.key?(:regex) @values = args[:values] if args.key?(:values) end |