Class: Google::Apis::NotebooksV1::DataprocParameters
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::DataprocParameters
- 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
-
#cluster ⇒ String
URI for cluster used to run Dataproc execution.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DataprocParameters
constructor
A new instance of DataprocParameters.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DataprocParameters
Returns a new instance of DataprocParameters.
219 220 221 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 219 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cluster ⇒ String
URI for cluster used to run Dataproc execution. Format: projects/
PROJECT_ID/
regions/
REGION/clusters/
CLUSTER_NAME`
Corresponds to the JSON property
cluster`
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
224 225 226 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 224 def update!(**args) @cluster = args[:cluster] if args.key?(:cluster) end |