Interface CustomConfig.CustomOutputSpec.PropertyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CustomConfig.CustomOutputSpec.Property,CustomConfig.CustomOutputSpec.Property.Builder
- Enclosing class:
- CustomConfig.CustomOutputSpec
public static interface CustomConfig.CustomOutputSpec.PropertyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Name of the property for the custom output.com.google.protobuf.ByteStringgetNameBytes()Name of the property for the custom output.com.google.type.ExprgetValueExpression()The CEL expression for the custom output.com.google.type.ExprOrBuildergetValueExpressionOrBuilder()The CEL expression for the custom output.booleanhasValueExpression()The CEL expression for the custom output.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Name of the property for the custom output.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the property for the custom output.
string name = 1;- Returns:
- The bytes for name.
-
hasValueExpression
boolean hasValueExpression()
The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks.
.google.type.Expr value_expression = 2;- Returns:
- Whether the valueExpression field is set.
-
getValueExpression
com.google.type.Expr getValueExpression()
The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks.
.google.type.Expr value_expression = 2;- Returns:
- The valueExpression.
-
getValueExpressionOrBuilder
com.google.type.ExprOrBuilder getValueExpressionOrBuilder()
The CEL expression for the custom output. A resource property can be specified to return the value of the property or a text string enclosed in quotation marks.
.google.type.Expr value_expression = 2;
-
-