Class: Google::Apis::BigqueryV2::TableList::Table
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::TableList::Table
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb
Defined Under Namespace
Classes: View
Instance Attribute Summary collapse
-
#creation_time ⇒ Fixnum
The time when this table was created, in milliseconds since the epoch.
-
#expiration_time ⇒ Fixnum
[Optional] The time when this table expires, in milliseconds since the epoch.
-
#friendly_name ⇒ String
The user-friendly name for this table.
-
#id ⇒ String
An opaque ID of the table Corresponds to the JSON property
id
. -
#kind ⇒ String
The resource type.
-
#labels ⇒ Hash<String,String>
[Experimental] The labels associated with this table.
-
#table_reference ⇒ Google::Apis::BigqueryV2::TableReference
A reference uniquely identifying the table.
-
#time_partitioning ⇒ Google::Apis::BigqueryV2::TimePartitioning
[Experimental] The time-based partitioning for this table.
-
#type ⇒ String
The type of table.
-
#view ⇒ Google::Apis::BigqueryV2::TableList::Table::View
Additional details for a view.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Table
constructor
A new instance of Table.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Table
Returns a new instance of Table
3097 3098 3099 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3097 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creation_time ⇒ Fixnum
The time when this table was created, in milliseconds since the epoch.
Corresponds to the JSON property creationTime
3047 3048 3049 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3047 def creation_time @creation_time end |
#expiration_time ⇒ Fixnum
[Optional] The time when this table expires, in milliseconds since the epoch.
If not present, the table will persist indefinitely. Expired tables will be
deleted and their storage reclaimed.
Corresponds to the JSON property expirationTime
3054 3055 3056 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3054 def expiration_time @expiration_time end |
#friendly_name ⇒ String
The user-friendly name for this table.
Corresponds to the JSON property friendlyName
3059 3060 3061 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3059 def friendly_name @friendly_name end |
#id ⇒ String
An opaque ID of the table
Corresponds to the JSON property id
3064 3065 3066 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3064 def id @id end |
#kind ⇒ String
The resource type.
Corresponds to the JSON property kind
3069 3070 3071 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3069 def kind @kind end |
#labels ⇒ Hash<String,String>
[Experimental] The labels associated with this table. You can use these to
organize and group your tables.
Corresponds to the JSON property labels
3075 3076 3077 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3075 def labels @labels end |
#table_reference ⇒ Google::Apis::BigqueryV2::TableReference
A reference uniquely identifying the table.
Corresponds to the JSON property tableReference
3080 3081 3082 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3080 def table_reference @table_reference end |
#time_partitioning ⇒ Google::Apis::BigqueryV2::TimePartitioning
[Experimental] The time-based partitioning for this table.
Corresponds to the JSON property timePartitioning
3085 3086 3087 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3085 def time_partitioning @time_partitioning end |
#type ⇒ String
The type of table. Possible values are: TABLE, VIEW.
Corresponds to the JSON property type
3090 3091 3092 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3090 def type @type end |
#view ⇒ Google::Apis::BigqueryV2::TableList::Table::View
Additional details for a view.
Corresponds to the JSON property view
3095 3096 3097 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3095 def view @view end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3102 def update!(**args) @creation_time = args[:creation_time] if args.key?(:creation_time) @expiration_time = args[:expiration_time] if args.key?(:expiration_time) @friendly_name = args[:friendly_name] if args.key?(:friendly_name) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @labels = args[:labels] if args.key?(:labels) @table_reference = args[:table_reference] if args.key?(:table_reference) @time_partitioning = args[:time_partitioning] if args.key?(:time_partitioning) @type = args[:type] if args.key?(:type) @view = args[:view] if args.key?(:view) end |