Class: Google::Apis::DatamigrationV1::SeedConversionWorkspaceRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatamigrationV1::SeedConversionWorkspaceRequest
 
- 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
Request message for 'SeedConversionWorkspace' request.
Instance Attribute Summary collapse
- 
  
    
      #auto_commit  ⇒ Boolean 
    
    
      (also: #auto_commit?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Should the conversion workspace be committed automatically after the seed operation. 
- 
  
    
      #destination_connection_profile  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
- 
  
    
      #source_connection_profile  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Optional. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SeedConversionWorkspaceRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SeedConversionWorkspaceRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ SeedConversionWorkspaceRequest
Returns a new instance of SeedConversionWorkspaceRequest.
| 3942 3943 3944 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 3942 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#auto_commit ⇒ Boolean Also known as: auto_commit?
Should the conversion workspace be committed automatically after the seed
operation.
Corresponds to the JSON property autoCommit
| 3929 3930 3931 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 3929 def auto_commit @auto_commit end | 
#destination_connection_profile ⇒ String
Optional. Fully qualified (Uri) name of the destination connection profile.
Corresponds to the JSON property destinationConnectionProfile
| 3935 3936 3937 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 3935 def destination_connection_profile @destination_connection_profile end | 
#source_connection_profile ⇒ String
Optional. Fully qualified (Uri) name of the source connection profile.
Corresponds to the JSON property sourceConnectionProfile
| 3940 3941 3942 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 3940 def source_connection_profile @source_connection_profile end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3947 3948 3949 3950 3951 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 3947 def update!(**args) @auto_commit = args[:auto_commit] if args.key?(:auto_commit) @destination_connection_profile = args[:destination_connection_profile] if args.key?(:destination_connection_profile) @source_connection_profile = args[:source_connection_profile] if args.key?(:source_connection_profile) end |