class Google::Apis::BigqueryV2::QueryResponse

Attributes

cache_hit[RW]

Whether the query result was fetched from the query cache. Corresponds to the JSON property `cacheHit` @return [Boolean]

cache_hit?[RW]

Whether the query result was fetched from the query cache. Corresponds to the JSON property `cacheHit` @return [Boolean]

errors[RW]
Output-only

All errors and warnings encountered during the running of the

job. Errors here do not necessarily mean that the job has completed or was unsuccessful. Corresponds to the JSON property `errors` @return [Array<Google::Apis::BigqueryV2::ErrorProto>]

job_complete[RW]

Whether the query has completed or not. If rows or totalRows are present, this will always be true. If this is false, totalRows will not be available. Corresponds to the JSON property `jobComplete` @return [Boolean]

job_complete?[RW]

Whether the query has completed or not. If rows or totalRows are present, this will always be true. If this is false, totalRows will not be available. Corresponds to the JSON property `jobComplete` @return [Boolean]

job_reference[RW]

Reference to the Job that was created to run the query. This field will be present even if the original request timed out, in which case GetQueryResults can be used to read the results once the query has completed. Since this API only returns the first page of results, subsequent pages can be fetched via the same mechanism (GetQueryResults). Corresponds to the JSON property `jobReference` @return [Google::Apis::BigqueryV2::JobReference]

kind[RW]

The resource type. Corresponds to the JSON property `kind` @return [String]

page_token[RW]

A token used for paging results. Corresponds to the JSON property `pageToken` @return [String]

rows[RW]

An object with as many results as can be contained within the maximum permitted reply size. To get any additional rows, you can call GetQueryResults and specify the jobReference returned above. Corresponds to the JSON property `rows` @return [Array<Google::Apis::BigqueryV2::TableRow>]

schema[RW]

The schema of the results. Present only when the query completes successfully. Corresponds to the JSON property `schema` @return [Google::Apis::BigqueryV2::TableSchema]

total_bytes_processed[RW]

The total number of bytes processed for this query. If this query was a dry run, this is the number of bytes that would be processed if the query were run. Corresponds to the JSON property `totalBytesProcessed` @return [String]

total_rows[RW]

The total number of rows in the complete query result set, which can be more than the number of rows in this single page of results. Corresponds to the JSON property `totalRows` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/bigquery_v2/classes.rb, line 2075
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/bigquery_v2/classes.rb, line 2080
def update!(**args)
  @cache_hit = args[:cache_hit] if args.key?(:cache_hit)
  @errors = args[:errors] if args.key?(:errors)
  @job_complete = args[:job_complete] if args.key?(:job_complete)
  @job_reference = args[:job_reference] if args.key?(:job_reference)
  @kind = args[:kind] if args.key?(:kind)
  @page_token = args[:page_token] if args.key?(:page_token)
  @rows = args[:rows] if args.key?(:rows)
  @schema = args[:schema] if args.key?(:schema)
  @total_bytes_processed = args[:total_bytes_processed] if args.key?(:total_bytes_processed)
  @total_rows = args[:total_rows] if args.key?(:total_rows)
end