1 /* 2 * Copyright 2020 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 // Generated by the protocol buffer compiler. DO NOT EDIT! 17 // source: google/cloud/compute/v1/compute.proto 18 19 package com.google.cloud.compute.v1; 20 21 public interface ExprOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.Expr) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. 31 * </pre> 32 * 33 * <code>optional string description = 422937596;</code> 34 * 35 * @return Whether the description field is set. 36 */ hasDescription()37 boolean hasDescription(); 38 /** 39 * 40 * 41 * <pre> 42 * Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. 43 * </pre> 44 * 45 * <code>optional string description = 422937596;</code> 46 * 47 * @return The description. 48 */ getDescription()49 java.lang.String getDescription(); 50 /** 51 * 52 * 53 * <pre> 54 * Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. 55 * </pre> 56 * 57 * <code>optional string description = 422937596;</code> 58 * 59 * @return The bytes for description. 60 */ getDescriptionBytes()61 com.google.protobuf.ByteString getDescriptionBytes(); 62 63 /** 64 * 65 * 66 * <pre> 67 * Textual representation of an expression in Common Expression Language syntax. 68 * </pre> 69 * 70 * <code>optional string expression = 352031384;</code> 71 * 72 * @return Whether the expression field is set. 73 */ hasExpression()74 boolean hasExpression(); 75 /** 76 * 77 * 78 * <pre> 79 * Textual representation of an expression in Common Expression Language syntax. 80 * </pre> 81 * 82 * <code>optional string expression = 352031384;</code> 83 * 84 * @return The expression. 85 */ getExpression()86 java.lang.String getExpression(); 87 /** 88 * 89 * 90 * <pre> 91 * Textual representation of an expression in Common Expression Language syntax. 92 * </pre> 93 * 94 * <code>optional string expression = 352031384;</code> 95 * 96 * @return The bytes for expression. 97 */ getExpressionBytes()98 com.google.protobuf.ByteString getExpressionBytes(); 99 100 /** 101 * 102 * 103 * <pre> 104 * Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. 105 * </pre> 106 * 107 * <code>optional string location = 290430901;</code> 108 * 109 * @return Whether the location field is set. 110 */ hasLocation()111 boolean hasLocation(); 112 /** 113 * 114 * 115 * <pre> 116 * Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. 117 * </pre> 118 * 119 * <code>optional string location = 290430901;</code> 120 * 121 * @return The location. 122 */ getLocation()123 java.lang.String getLocation(); 124 /** 125 * 126 * 127 * <pre> 128 * Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file. 129 * </pre> 130 * 131 * <code>optional string location = 290430901;</code> 132 * 133 * @return The bytes for location. 134 */ getLocationBytes()135 com.google.protobuf.ByteString getLocationBytes(); 136 137 /** 138 * 139 * 140 * <pre> 141 * 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. 142 * </pre> 143 * 144 * <code>optional string title = 110371416;</code> 145 * 146 * @return Whether the title field is set. 147 */ hasTitle()148 boolean hasTitle(); 149 /** 150 * 151 * 152 * <pre> 153 * 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. 154 * </pre> 155 * 156 * <code>optional string title = 110371416;</code> 157 * 158 * @return The title. 159 */ getTitle()160 java.lang.String getTitle(); 161 /** 162 * 163 * 164 * <pre> 165 * 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. 166 * </pre> 167 * 168 * <code>optional string title = 110371416;</code> 169 * 170 * @return The bytes for title. 171 */ getTitleBytes()172 com.google.protobuf.ByteString getTitleBytes(); 173 } 174