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 LogConfigOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.LogConfig) 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>optional .google.cloud.compute.v1.LogConfigCloudAuditOptions cloud_audit = 412852561; 34 * </code> 35 * 36 * @return Whether the cloudAudit field is set. 37 */ hasCloudAudit()38 boolean hasCloudAudit(); 39 /** 40 * 41 * 42 * <pre> 43 * This is deprecated and has no effect. Do not use. 44 * </pre> 45 * 46 * <code>optional .google.cloud.compute.v1.LogConfigCloudAuditOptions cloud_audit = 412852561; 47 * </code> 48 * 49 * @return The cloudAudit. 50 */ getCloudAudit()51 com.google.cloud.compute.v1.LogConfigCloudAuditOptions getCloudAudit(); 52 /** 53 * 54 * 55 * <pre> 56 * This is deprecated and has no effect. Do not use. 57 * </pre> 58 * 59 * <code>optional .google.cloud.compute.v1.LogConfigCloudAuditOptions cloud_audit = 412852561; 60 * </code> 61 */ getCloudAuditOrBuilder()62 com.google.cloud.compute.v1.LogConfigCloudAuditOptionsOrBuilder getCloudAuditOrBuilder(); 63 64 /** 65 * 66 * 67 * <pre> 68 * This is deprecated and has no effect. Do not use. 69 * </pre> 70 * 71 * <code>optional .google.cloud.compute.v1.LogConfigCounterOptions counter = 420959740;</code> 72 * 73 * @return Whether the counter field is set. 74 */ hasCounter()75 boolean hasCounter(); 76 /** 77 * 78 * 79 * <pre> 80 * This is deprecated and has no effect. Do not use. 81 * </pre> 82 * 83 * <code>optional .google.cloud.compute.v1.LogConfigCounterOptions counter = 420959740;</code> 84 * 85 * @return The counter. 86 */ getCounter()87 com.google.cloud.compute.v1.LogConfigCounterOptions getCounter(); 88 /** 89 * 90 * 91 * <pre> 92 * This is deprecated and has no effect. Do not use. 93 * </pre> 94 * 95 * <code>optional .google.cloud.compute.v1.LogConfigCounterOptions counter = 420959740;</code> 96 */ getCounterOrBuilder()97 com.google.cloud.compute.v1.LogConfigCounterOptionsOrBuilder getCounterOrBuilder(); 98 99 /** 100 * 101 * 102 * <pre> 103 * This is deprecated and has no effect. Do not use. 104 * </pre> 105 * 106 * <code>optional .google.cloud.compute.v1.LogConfigDataAccessOptions data_access = 286633881; 107 * </code> 108 * 109 * @return Whether the dataAccess field is set. 110 */ hasDataAccess()111 boolean hasDataAccess(); 112 /** 113 * 114 * 115 * <pre> 116 * This is deprecated and has no effect. Do not use. 117 * </pre> 118 * 119 * <code>optional .google.cloud.compute.v1.LogConfigDataAccessOptions data_access = 286633881; 120 * </code> 121 * 122 * @return The dataAccess. 123 */ getDataAccess()124 com.google.cloud.compute.v1.LogConfigDataAccessOptions getDataAccess(); 125 /** 126 * 127 * 128 * <pre> 129 * This is deprecated and has no effect. Do not use. 130 * </pre> 131 * 132 * <code>optional .google.cloud.compute.v1.LogConfigDataAccessOptions data_access = 286633881; 133 * </code> 134 */ getDataAccessOrBuilder()135 com.google.cloud.compute.v1.LogConfigDataAccessOptionsOrBuilder getDataAccessOrBuilder(); 136 } 137