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 SecurityPolicyRulePreconfiguredWafConfigOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfig) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * A list of exclusions to apply during preconfigured WAF evaluation. 31 * </pre> 32 * 33 * <code> 34 * repeated .google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion exclusions = 208665701; 35 * </code> 36 */ 37 java.util.List<com.google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion> getExclusionsList()38 getExclusionsList(); 39 /** 40 * 41 * 42 * <pre> 43 * A list of exclusions to apply during preconfigured WAF evaluation. 44 * </pre> 45 * 46 * <code> 47 * repeated .google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion exclusions = 208665701; 48 * </code> 49 */ getExclusions( int index)50 com.google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion getExclusions( 51 int index); 52 /** 53 * 54 * 55 * <pre> 56 * A list of exclusions to apply during preconfigured WAF evaluation. 57 * </pre> 58 * 59 * <code> 60 * repeated .google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion exclusions = 208665701; 61 * </code> 62 */ getExclusionsCount()63 int getExclusionsCount(); 64 /** 65 * 66 * 67 * <pre> 68 * A list of exclusions to apply during preconfigured WAF evaluation. 69 * </pre> 70 * 71 * <code> 72 * repeated .google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion exclusions = 208665701; 73 * </code> 74 */ 75 java.util.List< 76 ? extends 77 com.google.cloud.compute.v1 78 .SecurityPolicyRulePreconfiguredWafConfigExclusionOrBuilder> getExclusionsOrBuilderList()79 getExclusionsOrBuilderList(); 80 /** 81 * 82 * 83 * <pre> 84 * A list of exclusions to apply during preconfigured WAF evaluation. 85 * </pre> 86 * 87 * <code> 88 * repeated .google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusion exclusions = 208665701; 89 * </code> 90 */ 91 com.google.cloud.compute.v1.SecurityPolicyRulePreconfiguredWafConfigExclusionOrBuilder getExclusionsOrBuilder(int index)92 getExclusionsOrBuilder(int index); 93 } 94