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
| 2348 2349 2350 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2348 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
| 2346 2347 2348 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2346 def data_disk @data_disk end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2353 2354 2355 | # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2353 def update!(**args) @data_disk = args[:data_disk] if args.key?(:data_disk) end |