Class: Google::Apis::BigqueryV2::ProjectList
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ProjectList
- 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
Response object of ListProjects
Defined Under Namespace
Classes: Project
Instance Attribute Summary collapse
-
#etag ⇒ String
A hash of the page of results.
-
#kind ⇒ String
The resource type of the response.
-
#next_page_token ⇒ String
Use this token to request the next page of results.
-
#projects ⇒ Array<Google::Apis::BigqueryV2::ProjectList::Project>
Projects to which the user has at least READ access.
-
#total_items ⇒ Fixnum
The total number of projects in the page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProjectList
constructor
A new instance of ProjectList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProjectList
Returns a new instance of ProjectList.
7185 7186 7187 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7185 def initialize(**args) update!(**args) end |
Instance Attribute Details
#etag ⇒ String
A hash of the page of results.
Corresponds to the JSON property etag
7162 7163 7164 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7162 def etag @etag end |
#kind ⇒ String
The resource type of the response.
Corresponds to the JSON property kind
7167 7168 7169 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7167 def kind @kind end |
#next_page_token ⇒ String
Use this token to request the next page of results.
Corresponds to the JSON property nextPageToken
7172 7173 7174 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7172 def next_page_token @next_page_token end |
#projects ⇒ Array<Google::Apis::BigqueryV2::ProjectList::Project>
Projects to which the user has at least READ access.
Corresponds to the JSON property projects
7177 7178 7179 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7177 def projects @projects end |
#total_items ⇒ Fixnum
The total number of projects in the page. A wrapper is used here because the
field should still be in the response when the value is 0.
Corresponds to the JSON property totalItems
7183 7184 7185 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7183 def total_items @total_items end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7190 7191 7192 7193 7194 7195 7196 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 7190 def update!(**args) @etag = args[:etag] if args.key?(:etag) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @projects = args[:projects] if args.key?(:projects) @total_items = args[:total_items] if args.key?(:total_items) end |