Class: Google::Apis::DatamigrationV1::EntityMove
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatamigrationV1::EntityMove
 
- 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
Options to configure rule type EntityMove. The rule is used to move an entity to a new schema. The rule filter field can refer to one or more entities. The rule scope can be one of: Table, Column, Constraint, Index, View, Function, Stored Procedure, Materialized View, Sequence, UDT
Instance Attribute Summary collapse
- 
  
    
      #new_schema  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Required. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ EntityMove 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of EntityMove. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ EntityMove
Returns a new instance of EntityMove.
| 1780 1781 1782 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1780 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#new_schema ⇒ String
Required. The new schema
Corresponds to the JSON property newSchema
| 1778 1779 1780 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1778 def new_schema @new_schema end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1785 1786 1787 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1785 def update!(**args) @new_schema = args[:new_schema] if args.key?(:new_schema) end |