blob: 4ac448eb8c41ad488d2ccfd04e4be3f2f0ff97d8 [file]
<html><body>
<style>
body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
font-size: 13px;
padding: 1em;
}
h1 {
font-size: 26px;
margin-bottom: 1em;
}
h2 {
font-size: 24px;
margin-bottom: 1em;
}
h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}
pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}
pre {
margin-top: 0.5em;
}
h1, h2, h3, p {
font-family: Arial, sans serif;
}
h1, h2, h3 {
border-bottom: solid #CCC 1px;
}
.toc_element {
margin-top: 0.5em;
}
.firstline {
margin-left: 2 em;
}
.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}
.details {
font-weight: bold;
font-size: 14px;
}
</style>
<h1><a href="dataform_v1beta1.html">Dataform API</a> . <a href="dataform_v1beta1.projects.html">projects</a> . <a href="dataform_v1beta1.projects.locations.html">locations</a> . <a href="dataform_v1beta1.projects.locations.repositories.html">repositories</a> . <a href="dataform_v1beta1.projects.locations.repositories.workflowConfigs.html">workflowConfigs</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#create">create(parent, body=None, workflowConfigId=None, x__xgafv=None)</a></code></p>
<p class="firstline">Creates a new WorkflowConfig in a given Repository.</p>
<p class="toc_element">
<code><a href="#delete">delete(name, x__xgafv=None)</a></code></p>
<p class="firstline">Deletes a single WorkflowConfig.</p>
<p class="toc_element">
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
<p class="firstline">Fetches a single WorkflowConfig.</p>
<p class="toc_element">
<code><a href="#list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Lists WorkflowConfigs in a given Repository.</p>
<p class="toc_element">
<code><a href="#list_next">list_next()</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<p class="toc_element">
<code><a href="#patch">patch(name, body=None, updateMask=None, x__xgafv=None)</a></code></p>
<p class="firstline">Updates a single WorkflowConfig.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>
<div class="method">
<code class="details" id="create">create(parent, body=None, workflowConfigId=None, x__xgafv=None)</code>
<pre>Creates a new WorkflowConfig in a given Repository.
Args:
parent: string, Required. The repository in which to create the workflow config. Must be in the format `projects/*/locations/*/repositories/*`. (required)
body: object, The request body.
The object takes the form of:
{ # Represents a Dataform workflow configuration.
&quot;cronSchedule&quot;: &quot;A String&quot;, # Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
&quot;invocationConfig&quot;: { # Includes various configuration options for a workflow invocation. If both `included_targets` and `included_tags` are unset, all actions will be included. # Optional. If left unset, a default InvocationConfig will be used.
&quot;fullyRefreshIncrementalTablesEnabled&quot;: True or False, # Optional. When set to true, any incremental tables will be fully refreshed.
&quot;includedTags&quot;: [ # Optional. The set of tags to include.
&quot;A String&quot;,
],
&quot;includedTargets&quot;: [ # Optional. The set of action identifiers to include.
{ # Represents an action identifier. If the action writes output, the output will be written to the referenced database object.
&quot;database&quot;: &quot;A String&quot;, # The action&#x27;s database (Google Cloud project ID) .
&quot;name&quot;: &quot;A String&quot;, # The action&#x27;s name, within `database` and `schema`.
&quot;schema&quot;: &quot;A String&quot;, # The action&#x27;s schema (BigQuery dataset ID), within `database`.
},
],
&quot;serviceAccount&quot;: &quot;A String&quot;, # Optional. The service account to run workflow invocations under.
&quot;transitiveDependenciesIncluded&quot;: True or False, # Optional. When set to true, transitive dependencies of included actions will be executed.
&quot;transitiveDependentsIncluded&quot;: True or False, # Optional. When set to true, transitive dependents of included actions will be executed.
},
&quot;name&quot;: &quot;A String&quot;, # Output only. The workflow config&#x27;s name.
&quot;recentScheduledExecutionRecords&quot;: [ # Output only. Records of the 10 most recent scheduled execution attempts, ordered in in descending order of `execution_time`. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.
{ # A record of an attempt to create a workflow invocation for this workflow config.
&quot;errorStatus&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
&quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
&quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
},
],
&quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
&quot;executionTime&quot;: &quot;A String&quot;, # The timestamp of this execution attempt.
&quot;workflowInvocation&quot;: &quot;A String&quot;, # The name of the created workflow invocation, if one was successfully created. Must be in the format `projects/*/locations/*/repositories/*/workflowInvocations/*`.
},
],
&quot;releaseConfig&quot;: &quot;A String&quot;, # Required. The name of the release config whose release_compilation_result should be executed. Must be in the format `projects/*/locations/*/repositories/*/releaseConfigs/*`.
&quot;timeZone&quot;: &quot;A String&quot;, # 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.
}
workflowConfigId: string, Required. The ID to use for the workflow config, which will become the final component of the workflow config&#x27;s resource name.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Represents a Dataform workflow configuration.
&quot;cronSchedule&quot;: &quot;A String&quot;, # Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
&quot;invocationConfig&quot;: { # Includes various configuration options for a workflow invocation. If both `included_targets` and `included_tags` are unset, all actions will be included. # Optional. If left unset, a default InvocationConfig will be used.
&quot;fullyRefreshIncrementalTablesEnabled&quot;: True or False, # Optional. When set to true, any incremental tables will be fully refreshed.
&quot;includedTags&quot;: [ # Optional. The set of tags to include.
&quot;A String&quot;,
],
&quot;includedTargets&quot;: [ # Optional. The set of action identifiers to include.
{ # Represents an action identifier. If the action writes output, the output will be written to the referenced database object.
&quot;database&quot;: &quot;A String&quot;, # The action&#x27;s database (Google Cloud project ID) .
&quot;name&quot;: &quot;A String&quot;, # The action&#x27;s name, within `database` and `schema`.
&quot;schema&quot;: &quot;A String&quot;, # The action&#x27;s schema (BigQuery dataset ID), within `database`.
},
],
&quot;serviceAccount&quot;: &quot;A String&quot;, # Optional. The service account to run workflow invocations under.
&quot;transitiveDependenciesIncluded&quot;: True or False, # Optional. When set to true, transitive dependencies of included actions will be executed.
&quot;transitiveDependentsIncluded&quot;: True or False, # Optional. When set to true, transitive dependents of included actions will be executed.
},
&quot;name&quot;: &quot;A String&quot;, # Output only. The workflow config&#x27;s name.
&quot;recentScheduledExecutionRecords&quot;: [ # Output only. Records of the 10 most recent scheduled execution attempts, ordered in in descending order of `execution_time`. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.
{ # A record of an attempt to create a workflow invocation for this workflow config.
&quot;errorStatus&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
&quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
&quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
},
],
&quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
&quot;executionTime&quot;: &quot;A String&quot;, # The timestamp of this execution attempt.
&quot;workflowInvocation&quot;: &quot;A String&quot;, # The name of the created workflow invocation, if one was successfully created. Must be in the format `projects/*/locations/*/repositories/*/workflowInvocations/*`.
},
],
&quot;releaseConfig&quot;: &quot;A String&quot;, # Required. The name of the release config whose release_compilation_result should be executed. Must be in the format `projects/*/locations/*/repositories/*/releaseConfigs/*`.
&quot;timeZone&quot;: &quot;A String&quot;, # 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.
}</pre>
</div>
<div class="method">
<code class="details" id="delete">delete(name, x__xgafv=None)</code>
<pre>Deletes a single WorkflowConfig.
Args:
name: string, Required. The workflow config&#x27;s name. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
}</pre>
</div>
<div class="method">
<code class="details" id="get">get(name, x__xgafv=None)</code>
<pre>Fetches a single WorkflowConfig.
Args:
name: string, Required. The workflow config&#x27;s name. (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Represents a Dataform workflow configuration.
&quot;cronSchedule&quot;: &quot;A String&quot;, # Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
&quot;invocationConfig&quot;: { # Includes various configuration options for a workflow invocation. If both `included_targets` and `included_tags` are unset, all actions will be included. # Optional. If left unset, a default InvocationConfig will be used.
&quot;fullyRefreshIncrementalTablesEnabled&quot;: True or False, # Optional. When set to true, any incremental tables will be fully refreshed.
&quot;includedTags&quot;: [ # Optional. The set of tags to include.
&quot;A String&quot;,
],
&quot;includedTargets&quot;: [ # Optional. The set of action identifiers to include.
{ # Represents an action identifier. If the action writes output, the output will be written to the referenced database object.
&quot;database&quot;: &quot;A String&quot;, # The action&#x27;s database (Google Cloud project ID) .
&quot;name&quot;: &quot;A String&quot;, # The action&#x27;s name, within `database` and `schema`.
&quot;schema&quot;: &quot;A String&quot;, # The action&#x27;s schema (BigQuery dataset ID), within `database`.
},
],
&quot;serviceAccount&quot;: &quot;A String&quot;, # Optional. The service account to run workflow invocations under.
&quot;transitiveDependenciesIncluded&quot;: True or False, # Optional. When set to true, transitive dependencies of included actions will be executed.
&quot;transitiveDependentsIncluded&quot;: True or False, # Optional. When set to true, transitive dependents of included actions will be executed.
},
&quot;name&quot;: &quot;A String&quot;, # Output only. The workflow config&#x27;s name.
&quot;recentScheduledExecutionRecords&quot;: [ # Output only. Records of the 10 most recent scheduled execution attempts, ordered in in descending order of `execution_time`. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.
{ # A record of an attempt to create a workflow invocation for this workflow config.
&quot;errorStatus&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
&quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
&quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
},
],
&quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
&quot;executionTime&quot;: &quot;A String&quot;, # The timestamp of this execution attempt.
&quot;workflowInvocation&quot;: &quot;A String&quot;, # The name of the created workflow invocation, if one was successfully created. Must be in the format `projects/*/locations/*/repositories/*/workflowInvocations/*`.
},
],
&quot;releaseConfig&quot;: &quot;A String&quot;, # Required. The name of the release config whose release_compilation_result should be executed. Must be in the format `projects/*/locations/*/repositories/*/releaseConfigs/*`.
&quot;timeZone&quot;: &quot;A String&quot;, # 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.
}</pre>
</div>
<div class="method">
<code class="details" id="list">list(parent, pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>Lists WorkflowConfigs in a given Repository.
Args:
parent: string, Required. The repository in which to list workflow configs. Must be in the format `projects/*/locations/*/repositories/*`. (required)
pageSize: integer, Optional. Maximum number of workflow configs to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default.
pageToken: string, Optional. Page token received from a previous `ListWorkflowConfigs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListWorkflowConfigs` must match the call that provided the page token.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # `ListWorkflowConfigs` response message.
&quot;nextPageToken&quot;: &quot;A String&quot;, # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
&quot;unreachable&quot;: [ # Locations which could not be reached.
&quot;A String&quot;,
],
&quot;workflowConfigs&quot;: [ # List of workflow configs.
{ # Represents a Dataform workflow configuration.
&quot;cronSchedule&quot;: &quot;A String&quot;, # Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
&quot;invocationConfig&quot;: { # Includes various configuration options for a workflow invocation. If both `included_targets` and `included_tags` are unset, all actions will be included. # Optional. If left unset, a default InvocationConfig will be used.
&quot;fullyRefreshIncrementalTablesEnabled&quot;: True or False, # Optional. When set to true, any incremental tables will be fully refreshed.
&quot;includedTags&quot;: [ # Optional. The set of tags to include.
&quot;A String&quot;,
],
&quot;includedTargets&quot;: [ # Optional. The set of action identifiers to include.
{ # Represents an action identifier. If the action writes output, the output will be written to the referenced database object.
&quot;database&quot;: &quot;A String&quot;, # The action&#x27;s database (Google Cloud project ID) .
&quot;name&quot;: &quot;A String&quot;, # The action&#x27;s name, within `database` and `schema`.
&quot;schema&quot;: &quot;A String&quot;, # The action&#x27;s schema (BigQuery dataset ID), within `database`.
},
],
&quot;serviceAccount&quot;: &quot;A String&quot;, # Optional. The service account to run workflow invocations under.
&quot;transitiveDependenciesIncluded&quot;: True or False, # Optional. When set to true, transitive dependencies of included actions will be executed.
&quot;transitiveDependentsIncluded&quot;: True or False, # Optional. When set to true, transitive dependents of included actions will be executed.
},
&quot;name&quot;: &quot;A String&quot;, # Output only. The workflow config&#x27;s name.
&quot;recentScheduledExecutionRecords&quot;: [ # Output only. Records of the 10 most recent scheduled execution attempts, ordered in in descending order of `execution_time`. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.
{ # A record of an attempt to create a workflow invocation for this workflow config.
&quot;errorStatus&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
&quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
&quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
},
],
&quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
&quot;executionTime&quot;: &quot;A String&quot;, # The timestamp of this execution attempt.
&quot;workflowInvocation&quot;: &quot;A String&quot;, # The name of the created workflow invocation, if one was successfully created. Must be in the format `projects/*/locations/*/repositories/*/workflowInvocations/*`.
},
],
&quot;releaseConfig&quot;: &quot;A String&quot;, # Required. The name of the release config whose release_compilation_result should be executed. Must be in the format `projects/*/locations/*/repositories/*/releaseConfigs/*`.
&quot;timeZone&quot;: &quot;A String&quot;, # 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.
},
],
}</pre>
</div>
<div class="method">
<code class="details" id="list_next">list_next()</code>
<pre>Retrieves the next page of results.
Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)
Returns:
A request object that you can call &#x27;execute()&#x27; on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>
<div class="method">
<code class="details" id="patch">patch(name, body=None, updateMask=None, x__xgafv=None)</code>
<pre>Updates a single WorkflowConfig.
Args:
name: string, Output only. The workflow config&#x27;s name. (required)
body: object, The request body.
The object takes the form of:
{ # Represents a Dataform workflow configuration.
&quot;cronSchedule&quot;: &quot;A String&quot;, # Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
&quot;invocationConfig&quot;: { # Includes various configuration options for a workflow invocation. If both `included_targets` and `included_tags` are unset, all actions will be included. # Optional. If left unset, a default InvocationConfig will be used.
&quot;fullyRefreshIncrementalTablesEnabled&quot;: True or False, # Optional. When set to true, any incremental tables will be fully refreshed.
&quot;includedTags&quot;: [ # Optional. The set of tags to include.
&quot;A String&quot;,
],
&quot;includedTargets&quot;: [ # Optional. The set of action identifiers to include.
{ # Represents an action identifier. If the action writes output, the output will be written to the referenced database object.
&quot;database&quot;: &quot;A String&quot;, # The action&#x27;s database (Google Cloud project ID) .
&quot;name&quot;: &quot;A String&quot;, # The action&#x27;s name, within `database` and `schema`.
&quot;schema&quot;: &quot;A String&quot;, # The action&#x27;s schema (BigQuery dataset ID), within `database`.
},
],
&quot;serviceAccount&quot;: &quot;A String&quot;, # Optional. The service account to run workflow invocations under.
&quot;transitiveDependenciesIncluded&quot;: True or False, # Optional. When set to true, transitive dependencies of included actions will be executed.
&quot;transitiveDependentsIncluded&quot;: True or False, # Optional. When set to true, transitive dependents of included actions will be executed.
},
&quot;name&quot;: &quot;A String&quot;, # Output only. The workflow config&#x27;s name.
&quot;recentScheduledExecutionRecords&quot;: [ # Output only. Records of the 10 most recent scheduled execution attempts, ordered in in descending order of `execution_time`. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.
{ # A record of an attempt to create a workflow invocation for this workflow config.
&quot;errorStatus&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
&quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
&quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
},
],
&quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
&quot;executionTime&quot;: &quot;A String&quot;, # The timestamp of this execution attempt.
&quot;workflowInvocation&quot;: &quot;A String&quot;, # The name of the created workflow invocation, if one was successfully created. Must be in the format `projects/*/locations/*/repositories/*/workflowInvocations/*`.
},
],
&quot;releaseConfig&quot;: &quot;A String&quot;, # Required. The name of the release config whose release_compilation_result should be executed. Must be in the format `projects/*/locations/*/repositories/*/releaseConfigs/*`.
&quot;timeZone&quot;: &quot;A String&quot;, # 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.
}
updateMask: string, Optional. Specifies the fields to be updated in the workflow config. If left unset, all fields will be updated.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format
Returns:
An object of the form:
{ # Represents a Dataform workflow configuration.
&quot;cronSchedule&quot;: &quot;A String&quot;, # Optional. Optional schedule (in cron format) for automatic execution of this workflow config.
&quot;invocationConfig&quot;: { # Includes various configuration options for a workflow invocation. If both `included_targets` and `included_tags` are unset, all actions will be included. # Optional. If left unset, a default InvocationConfig will be used.
&quot;fullyRefreshIncrementalTablesEnabled&quot;: True or False, # Optional. When set to true, any incremental tables will be fully refreshed.
&quot;includedTags&quot;: [ # Optional. The set of tags to include.
&quot;A String&quot;,
],
&quot;includedTargets&quot;: [ # Optional. The set of action identifiers to include.
{ # Represents an action identifier. If the action writes output, the output will be written to the referenced database object.
&quot;database&quot;: &quot;A String&quot;, # The action&#x27;s database (Google Cloud project ID) .
&quot;name&quot;: &quot;A String&quot;, # The action&#x27;s name, within `database` and `schema`.
&quot;schema&quot;: &quot;A String&quot;, # The action&#x27;s schema (BigQuery dataset ID), within `database`.
},
],
&quot;serviceAccount&quot;: &quot;A String&quot;, # Optional. The service account to run workflow invocations under.
&quot;transitiveDependenciesIncluded&quot;: True or False, # Optional. When set to true, transitive dependencies of included actions will be executed.
&quot;transitiveDependentsIncluded&quot;: True or False, # Optional. When set to true, transitive dependents of included actions will be executed.
},
&quot;name&quot;: &quot;A String&quot;, # Output only. The workflow config&#x27;s name.
&quot;recentScheduledExecutionRecords&quot;: [ # Output only. Records of the 10 most recent scheduled execution attempts, ordered in in descending order of `execution_time`. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule.
{ # A record of an attempt to create a workflow invocation for this workflow config.
&quot;errorStatus&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error status encountered upon this attempt to create the workflow invocation, if the attempt was unsuccessful.
&quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
&quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
{
&quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
},
],
&quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
},
&quot;executionTime&quot;: &quot;A String&quot;, # The timestamp of this execution attempt.
&quot;workflowInvocation&quot;: &quot;A String&quot;, # The name of the created workflow invocation, if one was successfully created. Must be in the format `projects/*/locations/*/repositories/*/workflowInvocations/*`.
},
],
&quot;releaseConfig&quot;: &quot;A String&quot;, # Required. The name of the release config whose release_compilation_result should be executed. Must be in the format `projects/*/locations/*/repositories/*/releaseConfigs/*`.
&quot;timeZone&quot;: &quot;A String&quot;, # 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.
}</pre>
</div>
</body></html>