Interface ListJobMessagesRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.google.protobuf.Timestamp getEndTime()
      Return only messages with timestamps < end_time.
      com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
      Return only messages with timestamps < end_time.
      String getJobId()
      The job to get messages about.
      com.google.protobuf.ByteString getJobIdBytes()
      The job to get messages about.
      String getLocation()
      The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that contains the job specified by job_id.
      com.google.protobuf.ByteString getLocationBytes()
      The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that contains the job specified by job_id.
      JobMessageImportance getMinimumImportance()
      Filter to only get messages with importance >= level
      int getMinimumImportanceValue()
      Filter to only get messages with importance >= level
      int getPageSize()
      If specified, determines the maximum number of messages to return.
      String getPageToken()
      If supplied, this should be the value of next_page_token returned by an earlier call.
      com.google.protobuf.ByteString getPageTokenBytes()
      If supplied, this should be the value of next_page_token returned by an earlier call.
      String getProjectId()
      A project id.
      com.google.protobuf.ByteString getProjectIdBytes()
      A project id.
      com.google.protobuf.Timestamp getStartTime()
      If specified, return only messages with timestamps >= start_time.
      com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
      If specified, return only messages with timestamps >= start_time.
      boolean hasEndTime()
      Return only messages with timestamps < end_time.
      boolean hasStartTime()
      If specified, return only messages with timestamps >= start_time.
      • 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

      • getProjectId

        String getProjectId()
         A project id.
         
        string project_id = 1;
        Returns:
        The projectId.
      • getProjectIdBytes

        com.google.protobuf.ByteString getProjectIdBytes()
         A project id.
         
        string project_id = 1;
        Returns:
        The bytes for projectId.
      • getJobId

        String getJobId()
         The job to get messages about.
         
        string job_id = 2;
        Returns:
        The jobId.
      • getJobIdBytes

        com.google.protobuf.ByteString getJobIdBytes()
         The job to get messages about.
         
        string job_id = 2;
        Returns:
        The bytes for jobId.
      • getMinimumImportanceValue

        int getMinimumImportanceValue()
         Filter to only get messages with importance >= level
         
        .google.dataflow.v1beta3.JobMessageImportance minimum_importance = 3;
        Returns:
        The enum numeric value on the wire for minimumImportance.
      • getMinimumImportance

        JobMessageImportance getMinimumImportance()
         Filter to only get messages with importance >= level
         
        .google.dataflow.v1beta3.JobMessageImportance minimum_importance = 3;
        Returns:
        The minimumImportance.
      • getPageSize

        int getPageSize()
         If specified, determines the maximum number of messages to
         return.  If unspecified, the service may choose an appropriate
         default, or may return an arbitrarily large number of results.
         
        int32 page_size = 4;
        Returns:
        The pageSize.
      • getPageToken

        String getPageToken()
         If supplied, this should be the value of next_page_token returned
         by an earlier call. This will cause the next page of results to
         be returned.
         
        string page_token = 5;
        Returns:
        The pageToken.
      • getPageTokenBytes

        com.google.protobuf.ByteString getPageTokenBytes()
         If supplied, this should be the value of next_page_token returned
         by an earlier call. This will cause the next page of results to
         be returned.
         
        string page_token = 5;
        Returns:
        The bytes for pageToken.
      • hasStartTime

        boolean hasStartTime()
         If specified, return only messages with timestamps >= start_time.
         The default is the job creation time (i.e. beginning of messages).
         
        .google.protobuf.Timestamp start_time = 6;
        Returns:
        Whether the startTime field is set.
      • getStartTime

        com.google.protobuf.Timestamp getStartTime()
         If specified, return only messages with timestamps >= start_time.
         The default is the job creation time (i.e. beginning of messages).
         
        .google.protobuf.Timestamp start_time = 6;
        Returns:
        The startTime.
      • getStartTimeOrBuilder

        com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
         If specified, return only messages with timestamps >= start_time.
         The default is the job creation time (i.e. beginning of messages).
         
        .google.protobuf.Timestamp start_time = 6;
      • hasEndTime

        boolean hasEndTime()
         Return only messages with timestamps < end_time. The default is now
         (i.e. return up to the latest messages available).
         
        .google.protobuf.Timestamp end_time = 7;
        Returns:
        Whether the endTime field is set.
      • getEndTime

        com.google.protobuf.Timestamp getEndTime()
         Return only messages with timestamps < end_time. The default is now
         (i.e. return up to the latest messages available).
         
        .google.protobuf.Timestamp end_time = 7;
        Returns:
        The endTime.
      • getEndTimeOrBuilder

        com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
         Return only messages with timestamps < end_time. The default is now
         (i.e. return up to the latest messages available).
         
        .google.protobuf.Timestamp end_time = 7;
      • getLocation

        String getLocation()
         The [regional endpoint]
         (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that
         contains the job specified by job_id.
         
        string location = 8;
        Returns:
        The location.
      • getLocationBytes

        com.google.protobuf.ByteString getLocationBytes()
         The [regional endpoint]
         (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that
         contains the job specified by job_id.
         
        string location = 8;
        Returns:
        The bytes for location.