Package com.google.api.expr.v1alpha1
Interface ParseRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ParseRequest,ParseRequest.Builder
public interface ParseRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCelSource()Required.com.google.protobuf.ByteStringgetCelSourceBytes()Required.booleangetDisableMacros()Prevent macro expansion.java.lang.StringgetSourceLocation()File or resource for source text, used in [SourceInfo][google.api.expr.v1alpha1.SourceInfo].com.google.protobuf.ByteStringgetSourceLocationBytes()File or resource for source text, used in [SourceInfo][google.api.expr.v1alpha1.SourceInfo].java.lang.StringgetSyntaxVersion()Tag for version of CEL syntax, for future use.com.google.protobuf.ByteStringgetSyntaxVersionBytes()Tag for version of CEL syntax, for future use.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCelSource
java.lang.String getCelSource()
Required. Source text in CEL syntax.
string cel_source = 1;- Returns:
- The celSource.
-
getCelSourceBytes
com.google.protobuf.ByteString getCelSourceBytes()
Required. Source text in CEL syntax.
string cel_source = 1;- Returns:
- The bytes for celSource.
-
getSyntaxVersion
java.lang.String getSyntaxVersion()
Tag for version of CEL syntax, for future use.
string syntax_version = 2;- Returns:
- The syntaxVersion.
-
getSyntaxVersionBytes
com.google.protobuf.ByteString getSyntaxVersionBytes()
Tag for version of CEL syntax, for future use.
string syntax_version = 2;- Returns:
- The bytes for syntaxVersion.
-
getSourceLocation
java.lang.String getSourceLocation()
File or resource for source text, used in [SourceInfo][google.api.expr.v1alpha1.SourceInfo].
string source_location = 3;- Returns:
- The sourceLocation.
-
getSourceLocationBytes
com.google.protobuf.ByteString getSourceLocationBytes()
File or resource for source text, used in [SourceInfo][google.api.expr.v1alpha1.SourceInfo].
string source_location = 3;- Returns:
- The bytes for sourceLocation.
-
getDisableMacros
boolean getDisableMacros()
Prevent macro expansion. See "Macros" in Language Defiinition.
bool disable_macros = 4;- Returns:
- The disableMacros.
-
-