Class Job
Defines a job to be run by the Cloud Dataflow service. Do not enter confidential information when you supply string values using the API.
Implements
Inherited Members
Namespace: Google.Apis.Dataflow.v1b3.Data
Assembly: Google.Apis.Dataflow.v1b3.dll
Syntax
public class Job : IDirectResponseSchema
Properties
ClientRequestId
The client's unique identifier of the job, re-used across retried attempts. If this field is set, the service will ensure its uniqueness. The request to create a job will fail if the service has knowledge of a previously submitted job with the same client's ID and job name. The caller may use this field to ensure idempotence of job creation across retried attempts to create a job. By default, the field is empty and, in that case, the service ignores it.
Declaration
[JsonProperty("clientRequestId")]
public virtual string ClientRequestId { get; set; }
Property Value
Type | Description |
---|---|
string |
CreateTime
object representation of CreateTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use CreateTimeDateTimeOffset instead.")]
public virtual object CreateTime { get; set; }
Property Value
Type | Description |
---|---|
object |
CreateTimeDateTimeOffset
DateTimeOffset representation of CreateTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? CreateTimeDateTimeOffset { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
CreateTimeRaw
The timestamp when the job was initially created. Immutable and set by the Cloud Dataflow service.
Declaration
[JsonProperty("createTime")]
public virtual string CreateTimeRaw { get; set; }
Property Value
Type | Description |
---|---|
string |
CreatedFromSnapshotId
If this is specified, the job's initial state is populated from the given snapshot.
Declaration
[JsonProperty("createdFromSnapshotId")]
public virtual string CreatedFromSnapshotId { get; set; }
Property Value
Type | Description |
---|---|
string |
CurrentState
The current state of the job. Jobs are created in the JOB_STATE_STOPPED
state unless otherwise specified.
A job in the JOB_STATE_RUNNING
state may asynchronously enter a terminal state. After a job has reached a
terminal state, no further state updates may be made. This field might be mutated by the Dataflow service;
callers cannot mutate it.
Declaration
[JsonProperty("currentState")]
public virtual string CurrentState { get; set; }
Property Value
Type | Description |
---|---|
string |
CurrentStateTime
object representation of CurrentStateTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use CurrentStateTimeDateTimeOffset instead.")]
public virtual object CurrentStateTime { get; set; }
Property Value
Type | Description |
---|---|
object |
CurrentStateTimeDateTimeOffset
DateTimeOffset representation of CurrentStateTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? CurrentStateTimeDateTimeOffset { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
CurrentStateTimeRaw
The timestamp associated with the current state.
Declaration
[JsonProperty("currentStateTime")]
public virtual string CurrentStateTimeRaw { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Environment
Optional. The environment for the job.
Declaration
[JsonProperty("environment")]
public virtual Environment Environment { get; set; }
Property Value
Type | Description |
---|---|
Environment |
ExecutionInfo
Deprecated.
Declaration
[JsonProperty("executionInfo")]
public virtual JobExecutionInfo ExecutionInfo { get; set; }
Property Value
Type | Description |
---|---|
JobExecutionInfo |
Id
The unique ID of this job. This field is set by the Dataflow service when the job is created, and is immutable for the life of the job.
Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
JobMetadata
This field is populated by the Dataflow service to support filtering jobs by the metadata values provided here. Populated for ListJobs and all GetJob views SUMMARY and higher.
Declaration
[JsonProperty("jobMetadata")]
public virtual JobMetadata JobMetadata { get; set; }
Property Value
Type | Description |
---|---|
JobMetadata |
Labels
User-defined labels for this job. The labels map can contain no more than 64 entries. Entries of the labels map are UTF8 strings that comply with the following restrictions: * Keys must conform to regexp: \p{Ll}\p{Lo}{0,62} * Values must conform to regexp: [\p{Ll}\p{Lo}\p{N}_-]{0,63} * Both keys and values are additionally constrained to be <= 128 bytes in size.
Declaration
[JsonProperty("labels")]
public virtual IDictionary<string, string> Labels { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |
Location
Optional. The [regional endpoint] (https://cloud.google.com/dataflow/docs/concepts/regional-endpoints) that contains this job.
Declaration
[JsonProperty("location")]
public virtual string Location { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
Optional. The user-specified Dataflow job name. Only one active job with a given name can exist in a project
within one region at any given time. Jobs in different regions can have the same name. If a caller attempts
to create a job with the same name as an active job that already exists, the attempt returns the existing
job. The name must match the regular expression [a-z]([-a-z0-9]{0,1022}[a-z0-9])?
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
PipelineDescription
Preliminary field: The format of this data may change at any time. A description of the user pipeline and stages through which it is executed. Created by Cloud Dataflow service. Only retrieved with JOB_VIEW_DESCRIPTION or JOB_VIEW_ALL.
Declaration
[JsonProperty("pipelineDescription")]
public virtual PipelineDescription PipelineDescription { get; set; }
Property Value
Type | Description |
---|---|
PipelineDescription |
ProjectId
The ID of the Google Cloud project that the job belongs to.
Declaration
[JsonProperty("projectId")]
public virtual string ProjectId { get; set; }
Property Value
Type | Description |
---|---|
string |
ReplaceJobId
If this job is an update of an existing job, this field is the job ID of the job it replaced. When sending a
CreateJobRequest
, you can update a job by specifying it here. The job named here is stopped, and its
intermediate state is transferred to this job.
Declaration
[JsonProperty("replaceJobId")]
public virtual string ReplaceJobId { get; set; }
Property Value
Type | Description |
---|---|
string |
ReplacedByJobId
If another job is an update of this job (and thus, this job is in JOB_STATE_UPDATED
), this field contains
the ID of that job.
Declaration
[JsonProperty("replacedByJobId")]
public virtual string ReplacedByJobId { get; set; }
Property Value
Type | Description |
---|---|
string |
RequestedState
The job's requested state. Applies to UpdateJob
requests. Set requested_state
with UpdateJob
requests
to switch between the states JOB_STATE_STOPPED
and JOB_STATE_RUNNING
. You can also use UpdateJob
requests to change a job's state from JOB_STATE_RUNNING
to JOB_STATE_CANCELLED
, JOB_STATE_DONE
, or
JOB_STATE_DRAINED
. These states irrevocably terminate the job if it hasn't already reached a terminal
state. This field has no effect on CreateJob
requests.
Declaration
[JsonProperty("requestedState")]
public virtual string RequestedState { get; set; }
Property Value
Type | Description |
---|---|
string |
RuntimeUpdatableParams
This field may ONLY be modified at runtime using the projects.jobs.update method to adjust job behavior. This field has no effect when specified at job creation.
Declaration
[JsonProperty("runtimeUpdatableParams")]
public virtual RuntimeUpdatableParams RuntimeUpdatableParams { get; set; }
Property Value
Type | Description |
---|---|
RuntimeUpdatableParams |
SatisfiesPzi
Output only. Reserved for future use. This field is set only in responses from the server; it is ignored if it is set in any requests.
Declaration
[JsonProperty("satisfiesPzi")]
public virtual bool? SatisfiesPzi { get; set; }
Property Value
Type | Description |
---|---|
bool? |
SatisfiesPzs
Reserved for future use. This field is set only in responses from the server; it is ignored if it is set in any requests.
Declaration
[JsonProperty("satisfiesPzs")]
public virtual bool? SatisfiesPzs { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ServiceResources
Output only. Resources used by the Dataflow Service to run the job.
Declaration
[JsonProperty("serviceResources")]
public virtual ServiceResources ServiceResources { get; set; }
Property Value
Type | Description |
---|---|
ServiceResources |
StageStates
This field may be mutated by the Cloud Dataflow service; callers cannot mutate it.
Declaration
[JsonProperty("stageStates")]
public virtual IList<ExecutionStageState> StageStates { get; set; }
Property Value
Type | Description |
---|---|
IList<ExecutionStageState> |
StartTime
object representation of StartTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use StartTimeDateTimeOffset instead.")]
public virtual object StartTime { get; set; }
Property Value
Type | Description |
---|---|
object |
StartTimeDateTimeOffset
DateTimeOffset representation of StartTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? StartTimeDateTimeOffset { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
StartTimeRaw
The timestamp when the job was started (transitioned to JOB_STATE_PENDING). Flexible resource scheduling jobs are started with some delay after job creation, so start_time is unset before start and is updated when the job is started by the Cloud Dataflow service. For other jobs, start_time always equals to create_time and is immutable and set by the Cloud Dataflow service.
Declaration
[JsonProperty("startTime")]
public virtual string StartTimeRaw { get; set; }
Property Value
Type | Description |
---|---|
string |
Steps
Exactly one of step or steps_location should be specified. The top-level steps that constitute the entire job. Only retrieved with JOB_VIEW_ALL.
Declaration
[JsonProperty("steps")]
public virtual IList<Step> Steps { get; set; }
Property Value
Type | Description |
---|---|
IList<Step> |
StepsLocation
The Cloud Storage location where the steps are stored.
Declaration
[JsonProperty("stepsLocation")]
public virtual string StepsLocation { get; set; }
Property Value
Type | Description |
---|---|
string |
TempFiles
A set of files the system should be aware of that are used for temporary storage. These temporary files will be removed on job completion. No duplicates are allowed. No file patterns are supported. The supported files are: Google Cloud Storage: storage.googleapis.com/{bucket}/{object} bucket.storage.googleapis.com/{object}
Declaration
[JsonProperty("tempFiles")]
public virtual IList<string> TempFiles { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
TransformNameMapping
Optional. The map of transform name prefixes of the job to be replaced to the corresponding name prefixes of the new job.
Declaration
[JsonProperty("transformNameMapping")]
public virtual IDictionary<string, string> TransformNameMapping { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |
Type
Optional. The type of Dataflow job.
Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type | Description |
---|---|
string |