• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 HttpQueryParameterMatchOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.HttpQueryParameterMatch)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * The queryParameterMatch matches if the value of the parameter exactly matches the contents of exactMatch. Only one of presentMatch, exactMatch, or regexMatch must be set.
31    * </pre>
32    *
33    * <code>optional string exact_match = 457641093;</code>
34    *
35    * @return Whether the exactMatch field is set.
36    */
hasExactMatch()37   boolean hasExactMatch();
38   /**
39    *
40    *
41    * <pre>
42    * The queryParameterMatch matches if the value of the parameter exactly matches the contents of exactMatch. Only one of presentMatch, exactMatch, or regexMatch must be set.
43    * </pre>
44    *
45    * <code>optional string exact_match = 457641093;</code>
46    *
47    * @return The exactMatch.
48    */
getExactMatch()49   java.lang.String getExactMatch();
50   /**
51    *
52    *
53    * <pre>
54    * The queryParameterMatch matches if the value of the parameter exactly matches the contents of exactMatch. Only one of presentMatch, exactMatch, or regexMatch must be set.
55    * </pre>
56    *
57    * <code>optional string exact_match = 457641093;</code>
58    *
59    * @return The bytes for exactMatch.
60    */
getExactMatchBytes()61   com.google.protobuf.ByteString getExactMatchBytes();
62 
63   /**
64    *
65    *
66    * <pre>
67    * The name of the query parameter to match. The query parameter must exist in the request, in the absence of which the request match fails.
68    * </pre>
69    *
70    * <code>optional string name = 3373707;</code>
71    *
72    * @return Whether the name field is set.
73    */
hasName()74   boolean hasName();
75   /**
76    *
77    *
78    * <pre>
79    * The name of the query parameter to match. The query parameter must exist in the request, in the absence of which the request match fails.
80    * </pre>
81    *
82    * <code>optional string name = 3373707;</code>
83    *
84    * @return The name.
85    */
getName()86   java.lang.String getName();
87   /**
88    *
89    *
90    * <pre>
91    * The name of the query parameter to match. The query parameter must exist in the request, in the absence of which the request match fails.
92    * </pre>
93    *
94    * <code>optional string name = 3373707;</code>
95    *
96    * @return The bytes for name.
97    */
getNameBytes()98   com.google.protobuf.ByteString getNameBytes();
99 
100   /**
101    *
102    *
103    * <pre>
104    * Specifies that the queryParameterMatch matches if the request contains the query parameter, irrespective of whether the parameter has a value or not. Only one of presentMatch, exactMatch, or regexMatch must be set.
105    * </pre>
106    *
107    * <code>optional bool present_match = 67435841;</code>
108    *
109    * @return Whether the presentMatch field is set.
110    */
hasPresentMatch()111   boolean hasPresentMatch();
112   /**
113    *
114    *
115    * <pre>
116    * Specifies that the queryParameterMatch matches if the request contains the query parameter, irrespective of whether the parameter has a value or not. Only one of presentMatch, exactMatch, or regexMatch must be set.
117    * </pre>
118    *
119    * <code>optional bool present_match = 67435841;</code>
120    *
121    * @return The presentMatch.
122    */
getPresentMatch()123   boolean getPresentMatch();
124 
125   /**
126    *
127    *
128    * <pre>
129    * The queryParameterMatch matches if the value of the parameter matches the regular expression specified by regexMatch. For more information about regular expression syntax, see Syntax. Only one of presentMatch, exactMatch, or regexMatch must be set. Regular expressions can only be used when the loadBalancingScheme is set to INTERNAL_SELF_MANAGED.
130    * </pre>
131    *
132    * <code>optional string regex_match = 107387853;</code>
133    *
134    * @return Whether the regexMatch field is set.
135    */
hasRegexMatch()136   boolean hasRegexMatch();
137   /**
138    *
139    *
140    * <pre>
141    * The queryParameterMatch matches if the value of the parameter matches the regular expression specified by regexMatch. For more information about regular expression syntax, see Syntax. Only one of presentMatch, exactMatch, or regexMatch must be set. Regular expressions can only be used when the loadBalancingScheme is set to INTERNAL_SELF_MANAGED.
142    * </pre>
143    *
144    * <code>optional string regex_match = 107387853;</code>
145    *
146    * @return The regexMatch.
147    */
getRegexMatch()148   java.lang.String getRegexMatch();
149   /**
150    *
151    *
152    * <pre>
153    * The queryParameterMatch matches if the value of the parameter matches the regular expression specified by regexMatch. For more information about regular expression syntax, see Syntax. Only one of presentMatch, exactMatch, or regexMatch must be set. Regular expressions can only be used when the loadBalancingScheme is set to INTERNAL_SELF_MANAGED.
154    * </pre>
155    *
156    * <code>optional string regex_match = 107387853;</code>
157    *
158    * @return The bytes for regexMatch.
159    */
getRegexMatchBytes()160   com.google.protobuf.ByteString getRegexMatchBytes();
161 }
162