Package com.google.api.expr.v1alpha1
Interface EvalRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EvalRequest,EvalRequest.Builder
public interface EvalRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsBindings(java.lang.String key)Bindings for the external variables.java.util.Map<java.lang.String,ExprValue>getBindings()Deprecated.intgetBindingsCount()Bindings for the external variables.java.util.Map<java.lang.String,ExprValue>getBindingsMap()Bindings for the external variables.ExprValuegetBindingsOrDefault(java.lang.String key, ExprValue defaultValue)Bindings for the external variables.ExprValuegetBindingsOrThrow(java.lang.String key)Bindings for the external variables.CheckedExprgetCheckedExpr()Evaluate based on the checked representation.CheckedExprOrBuildergetCheckedExprOrBuilder()Evaluate based on the checked representation.java.lang.StringgetContainer()SHOULD be the same container as used in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked.com.google.protobuf.ByteStringgetContainerBytes()SHOULD be the same container as used in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked.EvalRequest.ExprKindCasegetExprKindCase()ParsedExprgetParsedExpr()Evaluate based on the parsed representation.ParsedExprOrBuildergetParsedExprOrBuilder()Evaluate based on the parsed representation.booleanhasCheckedExpr()Evaluate based on the checked representation.booleanhasParsedExpr()Evaluate based on the parsed representation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasParsedExpr
boolean hasParsedExpr()
Evaluate based on the parsed representation.
.google.api.expr.v1alpha1.ParsedExpr parsed_expr = 1;- Returns:
- Whether the parsedExpr field is set.
-
getParsedExpr
ParsedExpr getParsedExpr()
Evaluate based on the parsed representation.
.google.api.expr.v1alpha1.ParsedExpr parsed_expr = 1;- Returns:
- The parsedExpr.
-
getParsedExprOrBuilder
ParsedExprOrBuilder getParsedExprOrBuilder()
Evaluate based on the parsed representation.
.google.api.expr.v1alpha1.ParsedExpr parsed_expr = 1;
-
hasCheckedExpr
boolean hasCheckedExpr()
Evaluate based on the checked representation.
.google.api.expr.v1alpha1.CheckedExpr checked_expr = 2;- Returns:
- Whether the checkedExpr field is set.
-
getCheckedExpr
CheckedExpr getCheckedExpr()
Evaluate based on the checked representation.
.google.api.expr.v1alpha1.CheckedExpr checked_expr = 2;- Returns:
- The checkedExpr.
-
getCheckedExprOrBuilder
CheckedExprOrBuilder getCheckedExprOrBuilder()
Evaluate based on the checked representation.
.google.api.expr.v1alpha1.CheckedExpr checked_expr = 2;
-
getBindingsCount
int getBindingsCount()
Bindings for the external variables. The types SHOULD be compatible with the type environment in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked.
map<string, .google.api.expr.v1alpha1.ExprValue> bindings = 3;
-
containsBindings
boolean containsBindings(java.lang.String key)
Bindings for the external variables. The types SHOULD be compatible with the type environment in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked.
map<string, .google.api.expr.v1alpha1.ExprValue> bindings = 3;
-
getBindings
@Deprecated java.util.Map<java.lang.String,ExprValue> getBindings()
Deprecated.UsegetBindingsMap()instead.
-
getBindingsMap
java.util.Map<java.lang.String,ExprValue> getBindingsMap()
Bindings for the external variables. The types SHOULD be compatible with the type environment in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked.
map<string, .google.api.expr.v1alpha1.ExprValue> bindings = 3;
-
getBindingsOrDefault
ExprValue getBindingsOrDefault(java.lang.String key, ExprValue defaultValue)
Bindings for the external variables. The types SHOULD be compatible with the type environment in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked.
map<string, .google.api.expr.v1alpha1.ExprValue> bindings = 3;
-
getBindingsOrThrow
ExprValue getBindingsOrThrow(java.lang.String key)
Bindings for the external variables. The types SHOULD be compatible with the type environment in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked.
map<string, .google.api.expr.v1alpha1.ExprValue> bindings = 3;
-
getContainer
java.lang.String getContainer()
SHOULD be the same container as used in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked.
string container = 4;- Returns:
- The container.
-
getContainerBytes
com.google.protobuf.ByteString getContainerBytes()
SHOULD be the same container as used in [CheckRequest][google.api.expr.v1alpha1.CheckRequest], if checked.
string container = 4;- Returns:
- The bytes for container.
-
getExprKindCase
EvalRequest.ExprKindCase getExprKindCase()
-
-