Class JobSpec
JobSpec describes how the job will look.
Implements
Inherited Members
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class JobSpec : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
RunExecutionToken
A unique string used as a suffix for creating a new execution. The Job will become ready when the execution is successfully completed. The sum of job name and token length must be fewer than 63 characters.
Declaration
[JsonProperty("runExecutionToken")]
public virtual string RunExecutionToken { get; set; }
Property Value
Type | Description |
---|---|
string |
StartExecutionToken
A unique string used as a suffix for creating a new execution. The Job will become ready when the execution is successfully started. The sum of job name and token length must be fewer than 63 characters.
Declaration
[JsonProperty("startExecutionToken")]
public virtual string StartExecutionToken { get; set; }
Property Value
Type | Description |
---|---|
string |
Template
Optional. Describes the execution that will be created when running a job.
Declaration
[JsonProperty("template")]
public virtual ExecutionTemplateSpec Template { get; set; }
Property Value
Type | Description |
---|---|
ExecutionTemplateSpec |