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 SecurityPolicyRuleHttpHeaderActionOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderAction) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * The list of request headers to add or overwrite if they're already present. 31 * </pre> 32 * 33 * <code> 34 * repeated .google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOption request_headers_to_adds = 87987661; 35 * </code> 36 */ 37 java.util.List<com.google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOption> getRequestHeadersToAddsList()38 getRequestHeadersToAddsList(); 39 /** 40 * 41 * 42 * <pre> 43 * The list of request headers to add or overwrite if they're already present. 44 * </pre> 45 * 46 * <code> 47 * repeated .google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOption request_headers_to_adds = 87987661; 48 * </code> 49 */ 50 com.google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOption getRequestHeadersToAdds(int index)51 getRequestHeadersToAdds(int index); 52 /** 53 * 54 * 55 * <pre> 56 * The list of request headers to add or overwrite if they're already present. 57 * </pre> 58 * 59 * <code> 60 * repeated .google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOption request_headers_to_adds = 87987661; 61 * </code> 62 */ getRequestHeadersToAddsCount()63 int getRequestHeadersToAddsCount(); 64 /** 65 * 66 * 67 * <pre> 68 * The list of request headers to add or overwrite if they're already present. 69 * </pre> 70 * 71 * <code> 72 * repeated .google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOption request_headers_to_adds = 87987661; 73 * </code> 74 */ 75 java.util.List< 76 ? extends 77 com.google.cloud.compute.v1 78 .SecurityPolicyRuleHttpHeaderActionHttpHeaderOptionOrBuilder> getRequestHeadersToAddsOrBuilderList()79 getRequestHeadersToAddsOrBuilderList(); 80 /** 81 * 82 * 83 * <pre> 84 * The list of request headers to add or overwrite if they're already present. 85 * </pre> 86 * 87 * <code> 88 * repeated .google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOption request_headers_to_adds = 87987661; 89 * </code> 90 */ 91 com.google.cloud.compute.v1.SecurityPolicyRuleHttpHeaderActionHttpHeaderOptionOrBuilder getRequestHeadersToAddsOrBuilder(int index)92 getRequestHeadersToAddsOrBuilder(int index); 93 } 94