Class: Google::Apis::DatamigrationV1::SshScript
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatamigrationV1::SshScript
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datamigration_v1/classes.rb,
 lib/google/apis/datamigration_v1/representations.rb,
 lib/google/apis/datamigration_v1/representations.rb
Overview
Response message for 'GenerateSshScript' request.
Instance Attribute Summary collapse
- 
  
    
      #script  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ssh configuration script. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SshScript 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SshScript. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ SshScript
Returns a new instance of SshScript.
| 1538 1539 1540 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1538 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#script ⇒ String
The ssh configuration script.
Corresponds to the JSON property script
| 1536 1537 1538 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1536 def script @script end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1543 1544 1545 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1543 def update!(**args) @script = args[:script] if args.key?(:script) end |