• 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/api/log.proto
18 
19 package com.google.api;
20 
21 public interface LogDescriptorOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.api.LogDescriptor)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * The name of the log. It must be less than 512 characters long and can
31    * include the following characters: upper- and lower-case alphanumeric
32    * characters [A-Za-z0-9], and punctuation characters including
33    * slash, underscore, hyphen, period [/_-.].
34    * </pre>
35    *
36    * <code>string name = 1;</code>
37    *
38    * @return The name.
39    */
getName()40   java.lang.String getName();
41   /**
42    *
43    *
44    * <pre>
45    * The name of the log. It must be less than 512 characters long and can
46    * include the following characters: upper- and lower-case alphanumeric
47    * characters [A-Za-z0-9], and punctuation characters including
48    * slash, underscore, hyphen, period [/_-.].
49    * </pre>
50    *
51    * <code>string name = 1;</code>
52    *
53    * @return The bytes for name.
54    */
getNameBytes()55   com.google.protobuf.ByteString getNameBytes();
56 
57   /**
58    *
59    *
60    * <pre>
61    * The set of labels that are available to describe a specific log entry.
62    * Runtime requests that contain labels not specified here are
63    * considered invalid.
64    * </pre>
65    *
66    * <code>repeated .google.api.LabelDescriptor labels = 2;</code>
67    */
getLabelsList()68   java.util.List<com.google.api.LabelDescriptor> getLabelsList();
69   /**
70    *
71    *
72    * <pre>
73    * The set of labels that are available to describe a specific log entry.
74    * Runtime requests that contain labels not specified here are
75    * considered invalid.
76    * </pre>
77    *
78    * <code>repeated .google.api.LabelDescriptor labels = 2;</code>
79    */
getLabels(int index)80   com.google.api.LabelDescriptor getLabels(int index);
81   /**
82    *
83    *
84    * <pre>
85    * The set of labels that are available to describe a specific log entry.
86    * Runtime requests that contain labels not specified here are
87    * considered invalid.
88    * </pre>
89    *
90    * <code>repeated .google.api.LabelDescriptor labels = 2;</code>
91    */
getLabelsCount()92   int getLabelsCount();
93   /**
94    *
95    *
96    * <pre>
97    * The set of labels that are available to describe a specific log entry.
98    * Runtime requests that contain labels not specified here are
99    * considered invalid.
100    * </pre>
101    *
102    * <code>repeated .google.api.LabelDescriptor labels = 2;</code>
103    */
getLabelsOrBuilderList()104   java.util.List<? extends com.google.api.LabelDescriptorOrBuilder> getLabelsOrBuilderList();
105   /**
106    *
107    *
108    * <pre>
109    * The set of labels that are available to describe a specific log entry.
110    * Runtime requests that contain labels not specified here are
111    * considered invalid.
112    * </pre>
113    *
114    * <code>repeated .google.api.LabelDescriptor labels = 2;</code>
115    */
getLabelsOrBuilder(int index)116   com.google.api.LabelDescriptorOrBuilder getLabelsOrBuilder(int index);
117 
118   /**
119    *
120    *
121    * <pre>
122    * A human-readable description of this log. This information appears in
123    * the documentation and can contain details.
124    * </pre>
125    *
126    * <code>string description = 3;</code>
127    *
128    * @return The description.
129    */
getDescription()130   java.lang.String getDescription();
131   /**
132    *
133    *
134    * <pre>
135    * A human-readable description of this log. This information appears in
136    * the documentation and can contain details.
137    * </pre>
138    *
139    * <code>string description = 3;</code>
140    *
141    * @return The bytes for description.
142    */
getDescriptionBytes()143   com.google.protobuf.ByteString getDescriptionBytes();
144 
145   /**
146    *
147    *
148    * <pre>
149    * The human-readable name for this log. This information appears on
150    * the user interface and should be concise.
151    * </pre>
152    *
153    * <code>string display_name = 4;</code>
154    *
155    * @return The displayName.
156    */
getDisplayName()157   java.lang.String getDisplayName();
158   /**
159    *
160    *
161    * <pre>
162    * The human-readable name for this log. This information appears on
163    * the user interface and should be concise.
164    * </pre>
165    *
166    * <code>string display_name = 4;</code>
167    *
168    * @return The bytes for displayName.
169    */
getDisplayNameBytes()170   com.google.protobuf.ByteString getDisplayNameBytes();
171 }
172