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 LogConfigCounterOptionsOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.compute.v1.LogConfigCounterOptions) 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 * repeated .google.cloud.compute.v1.LogConfigCounterOptionsCustomField custom_fields = 249651015; 35 * </code> 36 */ 37 java.util.List<com.google.cloud.compute.v1.LogConfigCounterOptionsCustomField> getCustomFieldsList()38 getCustomFieldsList(); 39 /** 40 * 41 * 42 * <pre> 43 * This is deprecated and has no effect. Do not use. 44 * </pre> 45 * 46 * <code> 47 * repeated .google.cloud.compute.v1.LogConfigCounterOptionsCustomField custom_fields = 249651015; 48 * </code> 49 */ getCustomFields(int index)50 com.google.cloud.compute.v1.LogConfigCounterOptionsCustomField getCustomFields(int index); 51 /** 52 * 53 * 54 * <pre> 55 * This is deprecated and has no effect. Do not use. 56 * </pre> 57 * 58 * <code> 59 * repeated .google.cloud.compute.v1.LogConfigCounterOptionsCustomField custom_fields = 249651015; 60 * </code> 61 */ getCustomFieldsCount()62 int getCustomFieldsCount(); 63 /** 64 * 65 * 66 * <pre> 67 * This is deprecated and has no effect. Do not use. 68 * </pre> 69 * 70 * <code> 71 * repeated .google.cloud.compute.v1.LogConfigCounterOptionsCustomField custom_fields = 249651015; 72 * </code> 73 */ 74 java.util.List<? extends com.google.cloud.compute.v1.LogConfigCounterOptionsCustomFieldOrBuilder> getCustomFieldsOrBuilderList()75 getCustomFieldsOrBuilderList(); 76 /** 77 * 78 * 79 * <pre> 80 * This is deprecated and has no effect. Do not use. 81 * </pre> 82 * 83 * <code> 84 * repeated .google.cloud.compute.v1.LogConfigCounterOptionsCustomField custom_fields = 249651015; 85 * </code> 86 */ getCustomFieldsOrBuilder( int index)87 com.google.cloud.compute.v1.LogConfigCounterOptionsCustomFieldOrBuilder getCustomFieldsOrBuilder( 88 int index); 89 90 /** 91 * 92 * 93 * <pre> 94 * This is deprecated and has no effect. Do not use. 95 * </pre> 96 * 97 * <code>optional string field = 97427706;</code> 98 * 99 * @return Whether the field field is set. 100 */ hasField()101 boolean hasField(); 102 /** 103 * 104 * 105 * <pre> 106 * This is deprecated and has no effect. Do not use. 107 * </pre> 108 * 109 * <code>optional string field = 97427706;</code> 110 * 111 * @return The field. 112 */ getField()113 java.lang.String getField(); 114 /** 115 * 116 * 117 * <pre> 118 * This is deprecated and has no effect. Do not use. 119 * </pre> 120 * 121 * <code>optional string field = 97427706;</code> 122 * 123 * @return The bytes for field. 124 */ getFieldBytes()125 com.google.protobuf.ByteString getFieldBytes(); 126 127 /** 128 * 129 * 130 * <pre> 131 * This is deprecated and has no effect. Do not use. 132 * </pre> 133 * 134 * <code>optional string metric = 533067184;</code> 135 * 136 * @return Whether the metric field is set. 137 */ hasMetric()138 boolean hasMetric(); 139 /** 140 * 141 * 142 * <pre> 143 * This is deprecated and has no effect. Do not use. 144 * </pre> 145 * 146 * <code>optional string metric = 533067184;</code> 147 * 148 * @return The metric. 149 */ getMetric()150 java.lang.String getMetric(); 151 /** 152 * 153 * 154 * <pre> 155 * This is deprecated and has no effect. Do not use. 156 * </pre> 157 * 158 * <code>optional string metric = 533067184;</code> 159 * 160 * @return The bytes for metric. 161 */ getMetricBytes()162 com.google.protobuf.ByteString getMetricBytes(); 163 } 164