Interface LogViewOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.google.protobuf.Timestamp getCreateTime()
      Output only.
      com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
      Output only.
      String getDescription()
      Describes this view.
      com.google.protobuf.ByteString getDescriptionBytes()
      Describes this view.
      String getFilter()
      Filter that restricts which log entries in a bucket are visible in this view.
      com.google.protobuf.ByteString getFilterBytes()
      Filter that restricts which log entries in a bucket are visible in this view.
      String getName()
      The resource name of the view.
      com.google.protobuf.ByteString getNameBytes()
      The resource name of the view.
      com.google.protobuf.Timestamp getUpdateTime()
      Output only.
      com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
      Output only.
      boolean hasCreateTime()
      Output only.
      boolean hasUpdateTime()
      Output only.
      • 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

        String getName()
         The resource name of the view.
        
         For example:
        
           `projects/my-project/locations/global/buckets/my-bucket/views/my-view`
         
        string name = 1;
        Returns:
        The name.
      • getNameBytes

        com.google.protobuf.ByteString getNameBytes()
         The resource name of the view.
        
         For example:
        
           `projects/my-project/locations/global/buckets/my-bucket/views/my-view`
         
        string name = 1;
        Returns:
        The bytes for name.
      • getDescription

        String getDescription()
         Describes this view.
         
        string description = 3;
        Returns:
        The description.
      • getDescriptionBytes

        com.google.protobuf.ByteString getDescriptionBytes()
         Describes this view.
         
        string description = 3;
        Returns:
        The bytes for description.
      • hasCreateTime

        boolean hasCreateTime()
         Output only. The creation timestamp of the view.
         
        .google.protobuf.Timestamp create_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        Whether the createTime field is set.
      • getCreateTime

        com.google.protobuf.Timestamp getCreateTime()
         Output only. The creation timestamp of the view.
         
        .google.protobuf.Timestamp create_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        The createTime.
      • getCreateTimeOrBuilder

        com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
         Output only. The creation timestamp of the view.
         
        .google.protobuf.Timestamp create_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
      • hasUpdateTime

        boolean hasUpdateTime()
         Output only. The last update timestamp of the view.
         
        .google.protobuf.Timestamp update_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        Whether the updateTime field is set.
      • getUpdateTime

        com.google.protobuf.Timestamp getUpdateTime()
         Output only. The last update timestamp of the view.
         
        .google.protobuf.Timestamp update_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
        Returns:
        The updateTime.
      • getUpdateTimeOrBuilder

        com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder()
         Output only. The last update timestamp of the view.
         
        .google.protobuf.Timestamp update_time = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
      • getFilter

        String getFilter()
         Filter that restricts which log entries in a bucket are visible in this
         view.
        
         Filters are restricted to be a logical AND of ==/!= of any of the
         following:
        
           - originating project/folder/organization/billing account.
           - resource type
           - log id
        
         For example:
        
           SOURCE("projects/myproject") AND resource.type = "gce_instance"
                                        AND LOG_ID("stdout")
         
        string filter = 7;
        Returns:
        The filter.
      • getFilterBytes

        com.google.protobuf.ByteString getFilterBytes()
         Filter that restricts which log entries in a bucket are visible in this
         view.
        
         Filters are restricted to be a logical AND of ==/!= of any of the
         following:
        
           - originating project/folder/organization/billing account.
           - resource type
           - log id
        
         For example:
        
           SOURCE("projects/myproject") AND resource.type = "gce_instance"
                                        AND LOG_ID("stdout")
         
        string filter = 7;
        Returns:
        The bytes for filter.