Package com.google.cloud.dataproc.v1
Interface ParameterValidationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ParameterValidation
,ParameterValidation.Builder
public interface ParameterValidationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RegexValidation
getRegex()
Validation based on regular expressions.RegexValidationOrBuilder
getRegexOrBuilder()
Validation based on regular expressions.ParameterValidation.ValidationTypeCase
getValidationTypeCase()
ValueValidation
getValues()
Validation based on a list of allowed values.ValueValidationOrBuilder
getValuesOrBuilder()
Validation based on a list of allowed values.boolean
hasRegex()
Validation based on regular expressions.boolean
hasValues()
Validation based on a list of allowed values.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasRegex
boolean hasRegex()
Validation based on regular expressions.
.google.cloud.dataproc.v1.RegexValidation regex = 1;
- Returns:
- Whether the regex field is set.
-
getRegex
RegexValidation getRegex()
Validation based on regular expressions.
.google.cloud.dataproc.v1.RegexValidation regex = 1;
- Returns:
- The regex.
-
getRegexOrBuilder
RegexValidationOrBuilder getRegexOrBuilder()
Validation based on regular expressions.
.google.cloud.dataproc.v1.RegexValidation regex = 1;
-
hasValues
boolean hasValues()
Validation based on a list of allowed values.
.google.cloud.dataproc.v1.ValueValidation values = 2;
- Returns:
- Whether the values field is set.
-
getValues
ValueValidation getValues()
Validation based on a list of allowed values.
.google.cloud.dataproc.v1.ValueValidation values = 2;
- Returns:
- The values.
-
getValuesOrBuilder
ValueValidationOrBuilder getValuesOrBuilder()
Validation based on a list of allowed values.
.google.cloud.dataproc.v1.ValueValidation values = 2;
-
getValidationTypeCase
ParameterValidation.ValidationTypeCase getValidationTypeCase()
-
-