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
      2523 2524 2525  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2523 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
      2521 2522 2523  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2521 def data_disk @data_disk end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2528 2529 2530  | 
    
      # File 'generated/google/apis/dataflow_v1b3/classes.rb', line 2528 def update!(**args) @data_disk = args[:data_disk] if args.key?(:data_disk) end  |