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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()
      A human-readable description of this log.
      com.google.protobuf.ByteString getDescriptionBytes()
      A human-readable description of this log.
      java.lang.String getDisplayName()
      The human-readable name for this log.
      com.google.protobuf.ByteString getDisplayNameBytes()
      The human-readable name for this log.
      LabelDescriptor getLabels​(int index)
      The set of labels that are available to describe a specific log entry.
      int getLabelsCount()
      The set of labels that are available to describe a specific log entry.
      java.util.List<LabelDescriptor> getLabelsList()
      The set of labels that are available to describe a specific log entry.
      LabelDescriptorOrBuilder getLabelsOrBuilder​(int index)
      The set of labels that are available to describe a specific log entry.
      java.util.List<? extends LabelDescriptorOrBuilder> getLabelsOrBuilderList()
      The set of labels that are available to describe a specific log entry.
      java.lang.String getName()
      The name of the log.
      com.google.protobuf.ByteString getNameBytes()
      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 Detail

      • getName

        java.lang.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

        java.util.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

        java.util.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

        java.lang.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

        java.lang.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.