Class: Google::Apis::DataprocV1::WorkflowMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dataproc_v1/classes.rb,
generated/google/apis/dataproc_v1/representations.rb,
generated/google/apis/dataproc_v1/representations.rb

Overview

A Cloud Dataproc workflow template resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ WorkflowMetadata

Returns a new instance of WorkflowMetadata



2452
2453
2454
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2452

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cluster_nameString

Output only. The name of the managed cluster. Corresponds to the JSON property clusterName

Returns:

  • (String)


2415
2416
2417
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2415

def cluster_name
  @cluster_name
end

#create_clusterGoogle::Apis::DataprocV1::ClusterOperation

The cluster operation triggered by a workflow. Corresponds to the JSON property createCluster



2420
2421
2422
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2420

def create_cluster
  @create_cluster
end

#delete_clusterGoogle::Apis::DataprocV1::ClusterOperation

The cluster operation triggered by a workflow. Corresponds to the JSON property deleteCluster



2425
2426
2427
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2425

def delete_cluster
  @delete_cluster
end

#graphGoogle::Apis::DataprocV1::WorkflowGraph

The workflow graph. Corresponds to the JSON property graph



2430
2431
2432
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2430

def graph
  @graph
end

#parametersHash<String,String>

Map from parameter names to values that were used for those parameters. Corresponds to the JSON property parameters

Returns:

  • (Hash<String,String>)


2435
2436
2437
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2435

def parameters
  @parameters
end

#stateString

Output only. The workflow state. Corresponds to the JSON property state

Returns:

  • (String)


2440
2441
2442
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2440

def state
  @state
end

#templateString

Output only. The "resource name" of the template. Corresponds to the JSON property template

Returns:

  • (String)


2445
2446
2447
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2445

def template
  @template
end

#versionFixnum

Output only. The version of template at the time of workflow instantiation. Corresponds to the JSON property version

Returns:

  • (Fixnum)


2450
2451
2452
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2450

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2457

def update!(**args)
  @cluster_name = args[:cluster_name] if args.key?(:cluster_name)
  @create_cluster = args[:create_cluster] if args.key?(:create_cluster)
  @delete_cluster = args[:delete_cluster] if args.key?(:delete_cluster)
  @graph = args[:graph] if args.key?(:graph)
  @parameters = args[:parameters] if args.key?(:parameters)
  @state = args[:state] if args.key?(:state)
  @template = args[:template] if args.key?(:template)
  @version = args[:version] if args.key?(:version)
end