Interface LogDescriptorOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
LogDescriptor, LogDescriptor.Builder

public interface LogDescriptorOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    A human-readable description of this log.
    com.google.protobuf.ByteString
    A human-readable description of this log.
    The human-readable name for this log.
    com.google.protobuf.ByteString
    The human-readable name for this log.
    getLabels(int index)
    The set of labels that are available to describe a specific log entry.
    int
    The set of labels that are available to describe a specific log entry.
    The set of labels that are available to describe a specific log entry.
    getLabelsOrBuilder(int index)
    The set of labels that are available to describe a specific log entry.
    The set of labels that are available to describe a specific log entry.
    The name of the log.
    com.google.protobuf.ByteString
    The name of the log.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getName

      String getName()
       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 [/_-.].
       
      string name = 1;
      Returns:
      The name.
    • getNameBytes

      com.google.protobuf.ByteString getNameBytes()
       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 [/_-.].
       
      string name = 1;
      Returns:
      The bytes for name.
    • getLabelsList

      List<LabelDescriptor> getLabelsList()
       The set of labels that are available to describe a specific log entry.
       Runtime requests that contain labels not specified here are
       considered invalid.
       
      repeated .google.api.LabelDescriptor labels = 2;
    • getLabels

      LabelDescriptor getLabels(int index)
       The set of labels that are available to describe a specific log entry.
       Runtime requests that contain labels not specified here are
       considered invalid.
       
      repeated .google.api.LabelDescriptor labels = 2;
    • getLabelsCount

      int getLabelsCount()
       The set of labels that are available to describe a specific log entry.
       Runtime requests that contain labels not specified here are
       considered invalid.
       
      repeated .google.api.LabelDescriptor labels = 2;
    • getLabelsOrBuilderList

      List<? extends LabelDescriptorOrBuilder> getLabelsOrBuilderList()
       The set of labels that are available to describe a specific log entry.
       Runtime requests that contain labels not specified here are
       considered invalid.
       
      repeated .google.api.LabelDescriptor labels = 2;
    • getLabelsOrBuilder

      LabelDescriptorOrBuilder getLabelsOrBuilder(int index)
       The set of labels that are available to describe a specific log entry.
       Runtime requests that contain labels not specified here are
       considered invalid.
       
      repeated .google.api.LabelDescriptor labels = 2;
    • getDescription

      String getDescription()
       A human-readable description of this log. This information appears in
       the documentation and can contain details.
       
      string description = 3;
      Returns:
      The description.
    • getDescriptionBytes

      com.google.protobuf.ByteString getDescriptionBytes()
       A human-readable description of this log. This information appears in
       the documentation and can contain details.
       
      string description = 3;
      Returns:
      The bytes for description.
    • getDisplayName

      String getDisplayName()
       The human-readable name for this log. This information appears on
       the user interface and should be concise.
       
      string display_name = 4;
      Returns:
      The displayName.
    • getDisplayNameBytes

      com.google.protobuf.ByteString getDisplayNameBytes()
       The human-readable name for this log. This information appears on
       the user interface and should be concise.
       
      string display_name = 4;
      Returns:
      The bytes for displayName.