Class WorkflowConfig
Represents a Dataform workflow configuration.
Implements
Inherited Members
Namespace: Google.Apis.Dataform.v1beta1.Data
Assembly: Google.Apis.Dataform.v1beta1.dll
Syntax
public class WorkflowConfig : IDirectResponseSchema
Properties
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
Output only. The timestamp of when the WorkflowConfig was created.
Declaration
[JsonProperty("createTime")]
public virtual string CreateTimeRaw { get; set; }
Property Value
Type | Description |
---|---|
string |
CronSchedule
Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
Declaration
[JsonProperty("cronSchedule")]
public virtual string CronSchedule { 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 |
InvocationConfig
Optional. If left unset, a default InvocationConfig will be used.
Declaration
[JsonProperty("invocationConfig")]
public virtual InvocationConfig InvocationConfig { get; set; }
Property Value
Type | Description |
---|---|
InvocationConfig |
Name
Identifier. The workflow config's name.
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
RecentScheduledExecutionRecords
Output only. Records of the 10 most recent scheduled execution attempts, ordered in descending order of
execution_time
. Updated whenever automatic creation of a workflow invocation is triggered by
cron_schedule.
Declaration
[JsonProperty("recentScheduledExecutionRecords")]
public virtual IList<ScheduledExecutionRecord> RecentScheduledExecutionRecords { get; set; }
Property Value
Type | Description |
---|---|
IList<ScheduledExecutionRecord> |
ReleaseConfig
Required. The name of the release config whose release_compilation_result should be executed. Must be in the
format projects/*/locations/*/repositories/*/releaseConfigs/*
.
Declaration
[JsonProperty("releaseConfig")]
public virtual string ReleaseConfig { get; set; }
Property Value
Type | Description |
---|---|
string |
TimeZone
Optional. Specifies the time zone to be used when interpreting cron_schedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is UTC.
Declaration
[JsonProperty("timeZone")]
public virtual string TimeZone { get; set; }
Property Value
Type | Description |
---|---|
string |
UpdateTime
object representation of UpdateTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use UpdateTimeDateTimeOffset instead.")]
public virtual object UpdateTime { get; set; }
Property Value
Type | Description |
---|---|
object |
UpdateTimeDateTimeOffset
DateTimeOffset representation of UpdateTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? UpdateTimeDateTimeOffset { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
UpdateTimeRaw
Output only. The timestamp of when the WorkflowConfig was last updated.
Declaration
[JsonProperty("updateTime")]
public virtual string UpdateTimeRaw { get; set; }
Property Value
Type | Description |
---|---|
string |