Class: Google::Apis::DataflowV1b3::MountedDataDisk
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::MountedDataDisk
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb
Overview
Describes mounted data disk.
Instance Attribute Summary collapse
-
#data_disk ⇒ String
The name of the data disk.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MountedDataDisk
constructor
A new instance of MountedDataDisk.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MountedDataDisk
Returns a new instance of MountedDataDisk
2333 2334 2335 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2333 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_disk ⇒ String
The name of the data disk.
This name is local to the Google Cloud Platform project and uniquely
identifies the disk within that project, for example
"myproject-1014-104817-4c2-harness-0-disk-1".
Corresponds to the JSON property dataDisk
2331 2332 2333 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2331 def data_disk @data_disk end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2338 2339 2340 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2338 def update!(**args) @data_disk = args[:data_disk] if args.key?(:data_disk) end |