class Google::Apis::BigqueryV2::TableList::Table

Attributes

friendly_name[RW]

The user-friendly name for this table. Corresponds to the JSON property `friendlyName` @return [String]

id[RW]

An opaque ID of the table Corresponds to the JSON property `id` @return [String]

kind[RW]

The resource type. Corresponds to the JSON property `kind` @return [String]

table_reference[RW]

A reference uniquely identifying the table. Corresponds to the JSON property `tableReference` @return [Google::Apis::BigqueryV2::TableReference]

type[RW]

The type of table. Possible values are: TABLE, VIEW. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/bigquery_v2/classes.rb, line 2585
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/bigquery_v2/classes.rb, line 2590
def update!(**args)
  @friendly_name = args[:friendly_name] if args.key?(:friendly_name)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @table_reference = args[:table_reference] if args.key?(:table_reference)
  @type = args[:type] if args.key?(:type)
end