Dataflow v1beta3 API - Class ListJobMessagesRequest (2.0.0-beta06)

public sealed class ListJobMessagesRequest : IMessage<ListJobMessagesRequest>, IEquatable<ListJobMessagesRequest>, IDeepCloneable<ListJobMessagesRequest>, IBufferMessage, IMessage, IPageRequest

Reference documentation and code samples for the Dataflow v1beta3 API class ListJobMessagesRequest.

Request to list job messages. Up to max_results messages will be returned in the time range specified starting with the oldest messages first. If no time range is specified the results with start with the oldest message.

Inheritance

object > ListJobMessagesRequest

Namespace

Google.Cloud.Dataflow.V1Beta3

Assembly

Google.Cloud.Dataflow.V1Beta3.dll

Constructors

ListJobMessagesRequest()

public ListJobMessagesRequest()

ListJobMessagesRequest(ListJobMessagesRequest)

public ListJobMessagesRequest(ListJobMessagesRequest other)
Parameter
NameDescription
otherListJobMessagesRequest

Properties

EndTime

public Timestamp EndTime { get; set; }

Return only messages with timestamps < end_time. The default is now (i.e. return up to the latest messages available).

Property Value
TypeDescription
Timestamp

JobId

public string JobId { get; set; }

The job to get messages about.

Property Value
TypeDescription
string

Location

public string Location { get; set; }

The regional endpoint that contains the job specified by job_id.

Property Value
TypeDescription
string

MinimumImportance

public JobMessageImportance MinimumImportance { get; set; }

Filter to only get messages with importance >= level

Property Value
TypeDescription
JobMessageImportance

PageSize

public int PageSize { get; set; }

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.

Property Value
TypeDescription
int

PageToken

public string PageToken { get; set; }

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.

Property Value
TypeDescription
string

ProjectId

public string ProjectId { get; set; }

A project id.

Property Value
TypeDescription
string

StartTime

public Timestamp StartTime { get; set; }

If specified, return only messages with timestamps >= start_time. The default is the job creation time (i.e. beginning of messages).

Property Value
TypeDescription
Timestamp