Class: Google::Apis::BigqueryV2::TableConstraints::PrimaryKey

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

Represents the primary key constraint on a table's columns.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PrimaryKey

Returns a new instance of PrimaryKey.



9755
9756
9757
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9755

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

Instance Attribute Details

#columnsArray<String>

Required. The columns that are composed of the primary key constraint. Corresponds to the JSON property columns

Returns:

  • (Array<String>)


9753
9754
9755
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9753

def columns
  @columns
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9760
9761
9762
# File 'lib/google/apis/bigquery_v2/classes.rb', line 9760

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