WorkflowTemplate(mapping=None, *, ignore_unknown_fields=False, **kwargs)
A Dataproc workflow template resource. .. attribute:: id
Required. The template id.
The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of between 3 and 50 characters.
.
:type: str
Attributes | |
---|---|
Name | Description |
name |
str
Output only. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. - For projects.regions.workflowTemplates , the resource
name of the template has the following format:
projects/{project_id}/regions/{region}/workflowTemplates/{template_id}
- For projects.locations.workflowTemplates , the
resource name of the template has the following format:
projects/{project_id}/locations/{location}/workflowTemplates/{template_id}
|
version |
int
Optional. Used to perform a consistent read-modify-write. This field should be left blank for a CreateWorkflowTemplate request. It is required for an
UpdateWorkflowTemplate request, and must match the
current server version. A typical update template flow would
fetch the current template with a GetWorkflowTemplate
request, which will return the current template with the
version field filled in with the current server version.
The user updates other fields in the template, then returns
it as part of the UpdateWorkflowTemplate request.
|
create_time |
google.protobuf.timestamp_pb2.Timestamp
Output only. The time template was created. |
update_time |
google.protobuf.timestamp_pb2.Timestamp
Output only. The time template was last updated. |
labels |
Sequence[google.cloud.dataproc_v1beta2.types.WorkflowTemplate.LabelsEntry]
Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created by the workflow instance. Label **keys** must contain 1 to 63 characters, and must conform to `RFC 1035 |
placement |
google.cloud.dataproc_v1beta2.types.WorkflowTemplatePlacement
Required. WorkflowTemplate scheduling information. |
jobs |
Sequence[google.cloud.dataproc_v1beta2.types.OrderedJob]
Required. The Directed Acyclic Graph of Jobs to submit. |
parameters |
Sequence[google.cloud.dataproc_v1beta2.types.TemplateParameter]
Optional. Template parameters whose values are substituted into the template. Values for parameters must be provided when the template is instantiated. |
dag_timeout |
google.protobuf.duration_pb2.Duration
Optional. Timeout duration for the DAG of jobs. You can use "s", "m", "h", and "d" suffixes for second, minute, hour, and day duration values, respectively. The timeout duration must be from 10 minutes ("10m") to 24 hours ("24h" or "1d"). The timer begins when the first job is submitted. If the workflow is running at the end of the timeout period, any remaining jobs are cancelled, the workflow is terminated, and if the workflow was running on a `managed cluster |
Classes
LabelsEntry
LabelsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)
The abstract base class for a message.
Parameters | |
---|---|
Name | Description |
kwargs |
dict
Keys and values corresponding to the fields of the message. |
mapping |
Union[dict,
A dictionary or message to be used to determine the values for this message. |
ignore_unknown_fields |
Optional(bool)
If True, do not raise errors for unknown fields. Only applied if |