Class: Google::Apis::BigqueryV2::ProjectList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BigqueryV2::ProjectList
 
- 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: Project
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A hash of the page of results Corresponds to the JSON property etag.
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of list. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A token to request the next page of results. 
- 
  
    
      #projects  ⇒ Array<Google::Apis::BigqueryV2::ProjectList::Project> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Projects to which you have at least READ access. 
- 
  
    
      #total_items  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The total number of projects in the list. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ProjectList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ProjectList. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProjectList
Returns a new instance of ProjectList
| 2334 2335 2336 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2334 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
A hash of the page of results
Corresponds to the JSON property etag
| 2312 2313 2314 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2312 def etag @etag end | 
#kind ⇒ String
The type of list.
Corresponds to the JSON property kind
| 2317 2318 2319 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2317 def kind @kind end | 
#next_page_token ⇒ String
A token to request the next page of results.
Corresponds to the JSON property nextPageToken
| 2322 2323 2324 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2322 def next_page_token @next_page_token end | 
#projects ⇒ Array<Google::Apis::BigqueryV2::ProjectList::Project>
Projects to which you have at least READ access.
Corresponds to the JSON property projects
| 2327 2328 2329 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2327 def projects @projects end | 
#total_items ⇒ Fixnum
The total number of projects in the list.
Corresponds to the JSON property totalItems
| 2332 2333 2334 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2332 def total_items @total_items end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2339 2340 2341 2342 2343 2344 2345 | # File 'generated/google/apis/bigquery_v2/classes.rb', line 2339 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 |