- 1.62.0 (latest)
- 1.61.0
- 1.59.0
- 1.58.0
- 1.57.0
- 1.56.0
- 1.55.0
- 1.54.0
- 1.53.0
- 1.52.0
- 1.51.0
- 1.50.0
- 1.49.0
- 1.47.0
- 1.46.0
- 1.45.0
- 1.44.0
- 1.43.0
- 1.42.0
- 1.41.0
- 1.40.0
- 1.39.0
- 1.38.0
- 1.37.0
- 1.34.0
- 1.33.0
- 1.32.0
- 1.31.0
- 1.30.0
- 1.29.0
- 1.28.0
- 1.27.0
- 1.26.0
- 1.25.0
- 1.24.0
- 1.23.0
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.0
- 1.13.0
- 1.12.1
- 1.11.0
- 1.9.1
- 1.8.1
- 1.7.2
- 1.6.0-beta
public static final class Expr.Builder extends GeneratedMessageV3.Builder<Expr.Builder> implements ExprOrBuilder
Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: "Summary size limit" description: "Determines if a summary is less than 100 chars" expression: "document.summary.size() < 100" Example (Equality): title: "Requestor is owner" description: "Determines if requestor is the document owner" expression: "document.owner == request.auth.claims.email" Example (Logic): title: "Public documents" description: "Determine whether the document should be publicly visible" expression: "document.type != 'private' && document.type != 'internal'" Example (Data Manipulation): title: "Notification string" description: "Create a notification string with a timestamp." expression: "'New message received at ' + string(document.create_time)" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.
Protobuf type google.cloud.compute.v1.Expr
Inheritance
Object > AbstractMessageLite.Builder<MessageType,BuilderType> > AbstractMessage.Builder<BuilderType> > GeneratedMessageV3.Builder > Expr.BuilderImplements
ExprOrBuilderStatic Methods
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Returns | |
---|---|
Type | Description |
Descriptor |
Methods
addRepeatedField(Descriptors.FieldDescriptor field, Object value)
public Expr.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)
Parameters | |
---|---|
Name | Description |
field |
FieldDescriptor |
value |
Object |
Returns | |
---|---|
Type | Description |
Expr.Builder |
build()
public Expr build()
Returns | |
---|---|
Type | Description |
Expr |
buildPartial()
public Expr buildPartial()
Returns | |
---|---|
Type | Description |
Expr |
clear()
public Expr.Builder clear()
Returns | |
---|---|
Type | Description |
Expr.Builder |
clearDescription()
public Expr.Builder clearDescription()
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
optional string description = 422937596;
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
clearExpression()
public Expr.Builder clearExpression()
Textual representation of an expression in Common Expression Language syntax.
optional string expression = 352031384;
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
clearField(Descriptors.FieldDescriptor field)
public Expr.Builder clearField(Descriptors.FieldDescriptor field)
Parameter | |
---|---|
Name | Description |
field |
FieldDescriptor |
Returns | |
---|---|
Type | Description |
Expr.Builder |
clearLocation()
public Expr.Builder clearLocation()
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
optional string location = 290430901;
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
clearOneof(Descriptors.OneofDescriptor oneof)
public Expr.Builder clearOneof(Descriptors.OneofDescriptor oneof)
Parameter | |
---|---|
Name | Description |
oneof |
OneofDescriptor |
Returns | |
---|---|
Type | Description |
Expr.Builder |
clearTitle()
public Expr.Builder clearTitle()
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
optional string title = 110371416;
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
clone()
public Expr.Builder clone()
Returns | |
---|---|
Type | Description |
Expr.Builder |
getDefaultInstanceForType()
public Expr getDefaultInstanceForType()
Returns | |
---|---|
Type | Description |
Expr |
getDescription()
public String getDescription()
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
optional string description = 422937596;
Returns | |
---|---|
Type | Description |
String |
The description. |
getDescriptionBytes()
public ByteString getDescriptionBytes()
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
optional string description = 422937596;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for description. |
getDescriptorForType()
public Descriptors.Descriptor getDescriptorForType()
Returns | |
---|---|
Type | Description |
Descriptor |
getExpression()
public String getExpression()
Textual representation of an expression in Common Expression Language syntax.
optional string expression = 352031384;
Returns | |
---|---|
Type | Description |
String |
The expression. |
getExpressionBytes()
public ByteString getExpressionBytes()
Textual representation of an expression in Common Expression Language syntax.
optional string expression = 352031384;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for expression. |
getLocation()
public String getLocation()
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
optional string location = 290430901;
Returns | |
---|---|
Type | Description |
String |
The location. |
getLocationBytes()
public ByteString getLocationBytes()
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
optional string location = 290430901;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for location. |
getTitle()
public String getTitle()
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
optional string title = 110371416;
Returns | |
---|---|
Type | Description |
String |
The title. |
getTitleBytes()
public ByteString getTitleBytes()
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
optional string title = 110371416;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for title. |
hasDescription()
public boolean hasDescription()
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
optional string description = 422937596;
Returns | |
---|---|
Type | Description |
boolean |
Whether the description field is set. |
hasExpression()
public boolean hasExpression()
Textual representation of an expression in Common Expression Language syntax.
optional string expression = 352031384;
Returns | |
---|---|
Type | Description |
boolean |
Whether the expression field is set. |
hasLocation()
public boolean hasLocation()
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
optional string location = 290430901;
Returns | |
---|---|
Type | Description |
boolean |
Whether the location field is set. |
hasTitle()
public boolean hasTitle()
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
optional string title = 110371416;
Returns | |
---|---|
Type | Description |
boolean |
Whether the title field is set. |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns | |
---|---|
Type | Description |
FieldAccessorTable |
isInitialized()
public final boolean isInitialized()
Returns | |
---|---|
Type | Description |
boolean |
mergeFrom(Expr other)
public Expr.Builder mergeFrom(Expr other)
Parameter | |
---|---|
Name | Description |
other |
Expr |
Returns | |
---|---|
Type | Description |
Expr.Builder |
mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public Expr.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters | |
---|---|
Name | Description |
input |
CodedInputStream |
extensionRegistry |
ExtensionRegistryLite |
Returns | |
---|---|
Type | Description |
Expr.Builder |
Exceptions | |
---|---|
Type | Description |
IOException |
mergeFrom(Message other)
public Expr.Builder mergeFrom(Message other)
Parameter | |
---|---|
Name | Description |
other |
Message |
Returns | |
---|---|
Type | Description |
Expr.Builder |
mergeUnknownFields(UnknownFieldSet unknownFields)
public final Expr.Builder mergeUnknownFields(UnknownFieldSet unknownFields)
Parameter | |
---|---|
Name | Description |
unknownFields |
UnknownFieldSet |
Returns | |
---|---|
Type | Description |
Expr.Builder |
setDescription(String value)
public Expr.Builder setDescription(String value)
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
optional string description = 422937596;
Parameter | |
---|---|
Name | Description |
value |
String The description to set. |
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
setDescriptionBytes(ByteString value)
public Expr.Builder setDescriptionBytes(ByteString value)
Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.
optional string description = 422937596;
Parameter | |
---|---|
Name | Description |
value |
ByteString The bytes for description to set. |
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
setExpression(String value)
public Expr.Builder setExpression(String value)
Textual representation of an expression in Common Expression Language syntax.
optional string expression = 352031384;
Parameter | |
---|---|
Name | Description |
value |
String The expression to set. |
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
setExpressionBytes(ByteString value)
public Expr.Builder setExpressionBytes(ByteString value)
Textual representation of an expression in Common Expression Language syntax.
optional string expression = 352031384;
Parameter | |
---|---|
Name | Description |
value |
ByteString The bytes for expression to set. |
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
setField(Descriptors.FieldDescriptor field, Object value)
public Expr.Builder setField(Descriptors.FieldDescriptor field, Object value)
Parameters | |
---|---|
Name | Description |
field |
FieldDescriptor |
value |
Object |
Returns | |
---|---|
Type | Description |
Expr.Builder |
setLocation(String value)
public Expr.Builder setLocation(String value)
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
optional string location = 290430901;
Parameter | |
---|---|
Name | Description |
value |
String The location to set. |
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
setLocationBytes(ByteString value)
public Expr.Builder setLocationBytes(ByteString value)
Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file.
optional string location = 290430901;
Parameter | |
---|---|
Name | Description |
value |
ByteString The bytes for location to set. |
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
public Expr.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
Parameters | |
---|---|
Name | Description |
field |
FieldDescriptor |
index |
int |
value |
Object |
Returns | |
---|---|
Type | Description |
Expr.Builder |
setTitle(String value)
public Expr.Builder setTitle(String value)
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
optional string title = 110371416;
Parameter | |
---|---|
Name | Description |
value |
String The title to set. |
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
setTitleBytes(ByteString value)
public Expr.Builder setTitleBytes(ByteString value)
Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.
optional string title = 110371416;
Parameter | |
---|---|
Name | Description |
value |
ByteString The bytes for title to set. |
Returns | |
---|---|
Type | Description |
Expr.Builder |
This builder for chaining. |
setUnknownFields(UnknownFieldSet unknownFields)
public final Expr.Builder setUnknownFields(UnknownFieldSet unknownFields)
Parameter | |
---|---|
Name | Description |
unknownFields |
UnknownFieldSet |
Returns | |
---|---|
Type | Description |
Expr.Builder |