Class: Google::Apis::BigqueryV2::TableConstraints::ForeignKey::ColumnReference

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb

Overview

The pair of the foreign key column and primary key column.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ColumnReference

Returns a new instance of ColumnReference.



9701
9702
9703
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9701

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#referenced_columnString

Required. The column in the primary key that are referenced by the referencing_column. Corresponds to the JSON property referencedColumn

Returns:

  • (String)


9694
9695
9696
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9694

def referenced_column
  @referenced_column
end

#referencing_columnString

Required. The column that composes the foreign key. Corresponds to the JSON property referencingColumn

Returns:

  • (String)


9699
9700
9701
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9699

def referencing_column
  @referencing_column
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9706
9707
9708
9709
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9706

def update!(**args)
  @referenced_column = args[:referenced_column] if args.key?(:referenced_column)
  @referencing_column = args[:referencing_column] if args.key?(:referencing_column)
end