Class: Google::Apis::NotebooksV1::DataprocParameters

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

Overview

Parameters used in Dataproc JobType executions.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DataprocParameters

Returns a new instance of DataprocParameters.

[View source]

219
220
221
# File 'lib/google/apis/notebooks_v1/classes.rb', line 219

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

Instance Attribute Details

#clusterString

URI for cluster used to run Dataproc execution. Format: projects/PROJECT_ID/ regions/REGION/clusters/CLUSTER_NAME` Corresponds to the JSON propertycluster`

Returns:

  • (String)

217
218
219
# File 'lib/google/apis/notebooks_v1/classes.rb', line 217

def cluster
  @cluster
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

224
225
226
# File 'lib/google/apis/notebooks_v1/classes.rb', line 224

def update!(**args)
  @cluster = args[:cluster] if args.key?(:cluster)
end