• 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 SecurityPolicyAdvancedOptionsConfigOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfig)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * Custom configuration to apply the JSON parsing. Only applicable when json_parsing is set to STANDARD.
31    * </pre>
32    *
33    * <code>
34    * optional .google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfigJsonCustomConfig json_custom_config = 111570105;
35    * </code>
36    *
37    * @return Whether the jsonCustomConfig field is set.
38    */
hasJsonCustomConfig()39   boolean hasJsonCustomConfig();
40   /**
41    *
42    *
43    * <pre>
44    * Custom configuration to apply the JSON parsing. Only applicable when json_parsing is set to STANDARD.
45    * </pre>
46    *
47    * <code>
48    * optional .google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfigJsonCustomConfig json_custom_config = 111570105;
49    * </code>
50    *
51    * @return The jsonCustomConfig.
52    */
53   com.google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfigJsonCustomConfig
getJsonCustomConfig()54       getJsonCustomConfig();
55   /**
56    *
57    *
58    * <pre>
59    * Custom configuration to apply the JSON parsing. Only applicable when json_parsing is set to STANDARD.
60    * </pre>
61    *
62    * <code>
63    * optional .google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfigJsonCustomConfig json_custom_config = 111570105;
64    * </code>
65    */
66   com.google.cloud.compute.v1.SecurityPolicyAdvancedOptionsConfigJsonCustomConfigOrBuilder
getJsonCustomConfigOrBuilder()67       getJsonCustomConfigOrBuilder();
68 
69   /**
70    *
71    *
72    * <pre>
73    *
74    * Check the JsonParsing enum for the list of possible values.
75    * </pre>
76    *
77    * <code>optional string json_parsing = 282493529;</code>
78    *
79    * @return Whether the jsonParsing field is set.
80    */
hasJsonParsing()81   boolean hasJsonParsing();
82   /**
83    *
84    *
85    * <pre>
86    *
87    * Check the JsonParsing enum for the list of possible values.
88    * </pre>
89    *
90    * <code>optional string json_parsing = 282493529;</code>
91    *
92    * @return The jsonParsing.
93    */
getJsonParsing()94   java.lang.String getJsonParsing();
95   /**
96    *
97    *
98    * <pre>
99    *
100    * Check the JsonParsing enum for the list of possible values.
101    * </pre>
102    *
103    * <code>optional string json_parsing = 282493529;</code>
104    *
105    * @return The bytes for jsonParsing.
106    */
getJsonParsingBytes()107   com.google.protobuf.ByteString getJsonParsingBytes();
108 
109   /**
110    *
111    *
112    * <pre>
113    *
114    * Check the LogLevel enum for the list of possible values.
115    * </pre>
116    *
117    * <code>optional string log_level = 140582601;</code>
118    *
119    * @return Whether the logLevel field is set.
120    */
hasLogLevel()121   boolean hasLogLevel();
122   /**
123    *
124    *
125    * <pre>
126    *
127    * Check the LogLevel enum for the list of possible values.
128    * </pre>
129    *
130    * <code>optional string log_level = 140582601;</code>
131    *
132    * @return The logLevel.
133    */
getLogLevel()134   java.lang.String getLogLevel();
135   /**
136    *
137    *
138    * <pre>
139    *
140    * Check the LogLevel enum for the list of possible values.
141    * </pre>
142    *
143    * <code>optional string log_level = 140582601;</code>
144    *
145    * @return The bytes for logLevel.
146    */
getLogLevelBytes()147   com.google.protobuf.ByteString getLogLevelBytes();
148 }
149