Class: Google::Apis::BigqueryV2::JobList
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::BigqueryV2::JobList
 
 
- 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: Job
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A hash of this page of results.
 - 
  
    
      #jobs  ⇒ Array<Google::Apis::BigqueryV2::JobList::Job> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of jobs that were requested.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The resource type of the response.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A token to request the next page of results.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ JobList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of JobList.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ JobList
Returns a new instance of JobList
      1989 1990 1991  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 1989 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#etag ⇒ String
A hash of this page of results.
Corresponds to the JSON property etag
      1972 1973 1974  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 1972 def etag @etag end  | 
  
#jobs ⇒ Array<Google::Apis::BigqueryV2::JobList::Job>
List of jobs that were requested.
Corresponds to the JSON property jobs
      1977 1978 1979  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 1977 def jobs @jobs end  | 
  
#kind ⇒ String
The resource type of the response.
Corresponds to the JSON property kind
      1982 1983 1984  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 1982 def kind @kind end  | 
  
#next_page_token ⇒ String
A token to request the next page of results.
Corresponds to the JSON property nextPageToken
      1987 1988 1989  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 1987 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1994 1995 1996 1997 1998 1999  | 
    
      # File 'generated/google/apis/bigquery_v2/classes.rb', line 1994 def update!(**args) @etag = args[:etag] if args.key?(:etag) @jobs = args[:jobs] if args.key?(:jobs) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |