Class: Google::Apis::DatamigrationV1::ConstraintEntity
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DatamigrationV1::ConstraintEntity
 
- 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
Constraint is not used as an independent entity, it is retrieved as part of another entity such as Table or View.
Instance Attribute Summary collapse
- 
  
    
      #custom_features  ⇒ Hash<String,Object> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Custom engine specific features. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the table constraint. 
- 
  
    
      #reference_columns  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Reference columns which may be associated with the constraint. 
- 
  
    
      #reference_table  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Reference table which may be associated with the constraint. 
- 
  
    
      #table_columns  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Table columns used as part of the Constraint, for example primary key constraint should list the columns which constitutes the key. 
- 
  
    
      #table_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Table which is associated with the constraint. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Type of constraint, for example unique, primary key, foreign key (currently only primary key is supported). 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ConstraintEntity 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ConstraintEntity. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ ConstraintEntity
Returns a new instance of ConstraintEntity.
| 1005 1006 1007 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1005 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#custom_features ⇒ Hash<String,Object>
Custom engine specific features.
Corresponds to the JSON property customFeatures
| 964 965 966 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 964 def custom_features @custom_features end | 
#name ⇒ String
The name of the table constraint.
Corresponds to the JSON property name
| 969 970 971 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 969 def name @name end | 
#reference_columns ⇒ Array<String>
Reference columns which may be associated with the constraint. For example, if
the constraint is a FOREIGN_KEY, this represents the list of full names of
referenced columns by the foreign key.
Corresponds to the JSON property referenceColumns
| 976 977 978 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 976 def reference_columns @reference_columns end | 
#reference_table ⇒ String
Reference table which may be associated with the constraint. For example, if
the constraint is a FOREIGN_KEY, this represents the list of full name of the
referenced table by the foreign key.
Corresponds to the JSON property referenceTable
| 983 984 985 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 983 def reference_table @reference_table end | 
#table_columns ⇒ Array<String>
Table columns used as part of the Constraint, for example primary key
constraint should list the columns which constitutes the key.
Corresponds to the JSON property tableColumns
| 989 990 991 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 989 def table_columns @table_columns end | 
#table_name ⇒ String
Table which is associated with the constraint. In case the constraint is
defined on a table, this field is left empty as this information is stored in
parent_name. However, if constraint is defined on a view, this field stores
the table name on which the view is defined.
Corresponds to the JSON property tableName
| 997 998 999 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 997 def table_name @table_name end | 
#type ⇒ String
Type of constraint, for example unique, primary key, foreign key (currently
only primary key is supported).
Corresponds to the JSON property type
| 1003 1004 1005 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1003 def type @type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1010 1011 1012 1013 1014 1015 1016 1017 1018 | # File 'lib/google/apis/datamigration_v1/classes.rb', line 1010 def update!(**args) @custom_features = args[:custom_features] if args.key?(:custom_features) @name = args[:name] if args.key?(:name) @reference_columns = args[:reference_columns] if args.key?(:reference_columns) @reference_table = args[:reference_table] if args.key?(:reference_table) @table_columns = args[:table_columns] if args.key?(:table_columns) @table_name = args[:table_name] if args.key?(:table_name) @type = args[:type] if args.key?(:type) end |