com.google.api.LogDescriptorOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grpc-core-proto Show documentation
Show all versions of grpc-core-proto Show documentation
GoogleAPI classes generated from core protos
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/api/log.proto
package com.google.api;
public interface LogDescriptorOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.api.LogDescriptor)
com.google.protobuf.MessageOrBuilder {
/**
* optional string name = 1;
*
*
* The name of the log. It must be less than 512 characters long and can
* include the following characters: upper- and lower-case alphanumeric
* characters [A-Za-z0-9], and punctuation characters including
* slash, underscore, hyphen, period [/_-.].
*
*/
java.lang.String getName();
/**
* optional string name = 1;
*
*
* The name of the log. It must be less than 512 characters long and can
* include the following characters: upper- and lower-case alphanumeric
* characters [A-Za-z0-9], and punctuation characters including
* slash, underscore, hyphen, period [/_-.].
*
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* repeated .google.api.LabelDescriptor labels = 2;
*
*
* The set of labels that are available to describe a specific log entry.
* Runtime requests that contain labels not specified here are
* considered invalid.
*
*/
java.util.List
getLabelsList();
/**
* repeated .google.api.LabelDescriptor labels = 2;
*
*
* The set of labels that are available to describe a specific log entry.
* Runtime requests that contain labels not specified here are
* considered invalid.
*
*/
com.google.api.LabelDescriptor getLabels(int index);
/**
* repeated .google.api.LabelDescriptor labels = 2;
*
*
* The set of labels that are available to describe a specific log entry.
* Runtime requests that contain labels not specified here are
* considered invalid.
*
*/
int getLabelsCount();
/**
* repeated .google.api.LabelDescriptor labels = 2;
*
*
* The set of labels that are available to describe a specific log entry.
* Runtime requests that contain labels not specified here are
* considered invalid.
*
*/
java.util.List extends com.google.api.LabelDescriptorOrBuilder>
getLabelsOrBuilderList();
/**
* repeated .google.api.LabelDescriptor labels = 2;
*
*
* The set of labels that are available to describe a specific log entry.
* Runtime requests that contain labels not specified here are
* considered invalid.
*
*/
com.google.api.LabelDescriptorOrBuilder getLabelsOrBuilder(
int index);
/**
* optional string description = 3;
*
*
* A human-readable description of this log. This information appears in
* the documentation and can contain details.
*
*/
java.lang.String getDescription();
/**
* optional string description = 3;
*
*
* A human-readable description of this log. This information appears in
* the documentation and can contain details.
*
*/
com.google.protobuf.ByteString
getDescriptionBytes();
/**
* optional string display_name = 4;
*
*
* The human-readable name for this log. This information appears on
* the user interface and should be concise.
*
*/
java.lang.String getDisplayName();
/**
* optional string display_name = 4;
*
*
* The human-readable name for this log. This information appears on
* the user interface and should be concise.
*
*/
com.google.protobuf.ByteString
getDisplayNameBytes();
}