Class: Google::Apis::DataprocV1beta2::WorkflowTemplate
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1beta2::WorkflowTemplate
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataproc_v1beta2/classes.rb,
generated/google/apis/dataproc_v1beta2/representations.rb,
generated/google/apis/dataproc_v1beta2/representations.rb
Overview
A Cloud Dataproc workflow template resource.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#id ⇒ String
Required.
-
#jobs ⇒ Array<Google::Apis::DataprocV1beta2::OrderedJob>
Required.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Output only.
-
#parameters ⇒ Array<Google::Apis::DataprocV1beta2::TemplateParameter>
Optional.
-
#placement ⇒ Google::Apis::DataprocV1beta2::WorkflowTemplatePlacement
Specifies workflow execution target.Either managed_cluster or cluster_selector is required.
-
#update_time ⇒ String
Output only.
-
#version ⇒ Fixnum
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WorkflowTemplate
constructor
A new instance of WorkflowTemplate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ WorkflowTemplate
Returns a new instance of WorkflowTemplate
2562 2563 2564 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2562 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time template was created.
Corresponds to the JSON property createTime
2502 2503 2504 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2502 def create_time @create_time end |
#id ⇒ String
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.
Corresponds to the JSON property id
2509 2510 2511 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2509 def id @id end |
#jobs ⇒ Array<Google::Apis::DataprocV1beta2::OrderedJob>
Required. The Directed Acyclic Graph of Jobs to submit.
Corresponds to the JSON property jobs
2514 2515 2516 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2514 def jobs @jobs end |
#labels ⇒ Hash<String,String>
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 (https://
www.ietf.org/rfc/rfc1035.txt).Label values may be empty, but, if present, must
contain 1 to 63 characters, and must conform to RFC 1035 (https://www.ietf.org/
rfc/rfc1035.txt).No more than 32 labels can be associated with a template.
Corresponds to the JSON property labels
2524 2525 2526 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2524 def labels @labels end |
#name ⇒ String
Output only. The "resource name" of the template, as described in https://
cloud.google.com/apis/design/resource_names of the form projects/project_id
/
regions/region
/workflowTemplates/template_id
Corresponds to the JSON property name
2531 2532 2533 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2531 def name @name end |
#parameters ⇒ Array<Google::Apis::DataprocV1beta2::TemplateParameter>
Optional. Template parameters whose values are substituted into the template.
Values for these parameters must be provided when the template is instantiated.
Corresponds to the JSON property parameters
2537 2538 2539 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2537 def parameters @parameters end |
#placement ⇒ Google::Apis::DataprocV1beta2::WorkflowTemplatePlacement
Specifies workflow execution target.Either managed_cluster or cluster_selector
is required.
Corresponds to the JSON property placement
2543 2544 2545 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2543 def placement @placement end |
#update_time ⇒ String
Output only. The time template was last updated.
Corresponds to the JSON property updateTime
2548 2549 2550 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2548 def update_time @update_time end |
#version ⇒ Fixnum
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.
Corresponds to the JSON property version
2560 2561 2562 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2560 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 |
# File 'generated/google/apis/dataproc_v1beta2/classes.rb', line 2567 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @id = args[:id] if args.key?(:id) @jobs = args[:jobs] if args.key?(:jobs) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @parameters = args[:parameters] if args.key?(:parameters) @placement = args[:placement] if args.key?(:placement) @update_time = args[:update_time] if args.key?(:update_time) @version = args[:version] if args.key?(:version) end |