Class: Google::Apis::BigqueryV2::TableDataList
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::TableDataList
- 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
Instance Attribute Summary collapse
-
#etag ⇒ String
A hash of this page of results.
-
#kind ⇒ String
The resource type of the response.
-
#page_token ⇒ String
A token used for paging results.
-
#rows ⇒ Array<Google::Apis::BigqueryV2::TableRow>
Rows of results.
-
#total_rows ⇒ Fixnum
The total number of rows in the complete table.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TableDataList
constructor
A new instance of TableDataList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TableDataList
Returns a new instance of TableDataList
3559 3560 3561 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3559 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
A hash of this page of results.
Corresponds to the JSON property etag
3535 3536 3537 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3535 def etag @etag end |
#kind ⇒ String
The resource type of the response.
Corresponds to the JSON property kind
3540 3541 3542 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3540 def kind @kind end |
#page_token ⇒ String
A token used for paging results. Providing this token instead of the
startIndex parameter can help you retrieve stable results when an underlying
table is changing.
Corresponds to the JSON property pageToken
3547 3548 3549 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3547 def page_token @page_token end |
#rows ⇒ Array<Google::Apis::BigqueryV2::TableRow>
Rows of results.
Corresponds to the JSON property rows
3552 3553 3554 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3552 def rows @rows end |
#total_rows ⇒ Fixnum
The total number of rows in the complete table.
Corresponds to the JSON property totalRows
3557 3558 3559 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3557 def total_rows @total_rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3564 3565 3566 3567 3568 3569 3570 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 3564 def update!(**args) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @page_token = args[:page_token] if args.key?(:page_token) @rows = args[:rows] if args.key?(:rows) @total_rows = args[:total_rows] if args.key?(:total_rows) end |