• 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 LogConfigCloudAuditOptionsOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.LogConfigCloudAuditOptions)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * This is deprecated and has no effect. Do not use.
31    * </pre>
32    *
33    * <code>
34    * optional .google.cloud.compute.v1.AuthorizationLoggingOptions authorization_logging_options = 217861624;
35    * </code>
36    *
37    * @return Whether the authorizationLoggingOptions field is set.
38    */
hasAuthorizationLoggingOptions()39   boolean hasAuthorizationLoggingOptions();
40   /**
41    *
42    *
43    * <pre>
44    * This is deprecated and has no effect. Do not use.
45    * </pre>
46    *
47    * <code>
48    * optional .google.cloud.compute.v1.AuthorizationLoggingOptions authorization_logging_options = 217861624;
49    * </code>
50    *
51    * @return The authorizationLoggingOptions.
52    */
getAuthorizationLoggingOptions()53   com.google.cloud.compute.v1.AuthorizationLoggingOptions getAuthorizationLoggingOptions();
54   /**
55    *
56    *
57    * <pre>
58    * This is deprecated and has no effect. Do not use.
59    * </pre>
60    *
61    * <code>
62    * optional .google.cloud.compute.v1.AuthorizationLoggingOptions authorization_logging_options = 217861624;
63    * </code>
64    */
65   com.google.cloud.compute.v1.AuthorizationLoggingOptionsOrBuilder
getAuthorizationLoggingOptionsOrBuilder()66       getAuthorizationLoggingOptionsOrBuilder();
67 
68   /**
69    *
70    *
71    * <pre>
72    * This is deprecated and has no effect. Do not use.
73    * Check the LogName enum for the list of possible values.
74    * </pre>
75    *
76    * <code>optional string log_name = 402913958;</code>
77    *
78    * @return Whether the logName field is set.
79    */
hasLogName()80   boolean hasLogName();
81   /**
82    *
83    *
84    * <pre>
85    * This is deprecated and has no effect. Do not use.
86    * Check the LogName enum for the list of possible values.
87    * </pre>
88    *
89    * <code>optional string log_name = 402913958;</code>
90    *
91    * @return The logName.
92    */
getLogName()93   java.lang.String getLogName();
94   /**
95    *
96    *
97    * <pre>
98    * This is deprecated and has no effect. Do not use.
99    * Check the LogName enum for the list of possible values.
100    * </pre>
101    *
102    * <code>optional string log_name = 402913958;</code>
103    *
104    * @return The bytes for logName.
105    */
getLogNameBytes()106   com.google.protobuf.ByteString getLogNameBytes();
107 }
108