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.
Implements
IMessageListJobMessagesRequest, IEquatableListJobMessagesRequest, IDeepCloneableListJobMessagesRequest, IBufferMessage, IMessage, IPageRequestNamespace
Google.Cloud.Dataflow.V1Beta3Assembly
Google.Cloud.Dataflow.V1Beta3.dll
Constructors
ListJobMessagesRequest()
public ListJobMessagesRequest()
ListJobMessagesRequest(ListJobMessagesRequest)
public ListJobMessagesRequest(ListJobMessagesRequest other)
Parameter | |
---|---|
Name | Description |
other |
ListJobMessagesRequest |
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 | |
---|---|
Type | Description |
Timestamp |
JobId
public string JobId { get; set; }
The job to get messages about.
Property Value | |
---|---|
Type | Description |
string |
Location
public string Location { get; set; }
The regional endpoint that contains the job specified by job_id.
Property Value | |
---|---|
Type | Description |
string |
MinimumImportance
public JobMessageImportance MinimumImportance { get; set; }
Filter to only get messages with importance >= level
Property Value | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
string |
ProjectId
public string ProjectId { get; set; }
A project id.
Property Value | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
Timestamp |