All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.compute.v1.HttpQueryParameterMatchOrBuilder Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2024 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/compute/v1/compute.proto

// Protobuf Java Version: 3.25.5
package com.google.cloud.compute.v1;

public interface HttpQueryParameterMatchOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.HttpQueryParameterMatch)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * 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.
   * 
* * optional string exact_match = 457641093; * * @return Whether the exactMatch field is set. */ boolean hasExactMatch(); /** * * *
   * 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.
   * 
* * optional string exact_match = 457641093; * * @return The exactMatch. */ java.lang.String getExactMatch(); /** * * *
   * 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.
   * 
* * optional string exact_match = 457641093; * * @return The bytes for exactMatch. */ com.google.protobuf.ByteString getExactMatchBytes(); /** * * *
   * 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.
   * 
* * optional string name = 3373707; * * @return Whether the name field is set. */ boolean hasName(); /** * * *
   * 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.
   * 
* * optional string name = 3373707; * * @return The name. */ java.lang.String getName(); /** * * *
   * 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.
   * 
* * optional string name = 3373707; * * @return The bytes for name. */ com.google.protobuf.ByteString getNameBytes(); /** * * *
   * 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.
   * 
* * optional bool present_match = 67435841; * * @return Whether the presentMatch field is set. */ boolean hasPresentMatch(); /** * * *
   * 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.
   * 
* * optional bool present_match = 67435841; * * @return The presentMatch. */ boolean getPresentMatch(); /** * * *
   * 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.
   * 
* * optional string regex_match = 107387853; * * @return Whether the regexMatch field is set. */ boolean hasRegexMatch(); /** * * *
   * 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.
   * 
* * optional string regex_match = 107387853; * * @return The regexMatch. */ java.lang.String getRegexMatch(); /** * * *
   * 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.
   * 
* * optional string regex_match = 107387853; * * @return The bytes for regexMatch. */ com.google.protobuf.ByteString getRegexMatchBytes(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy