Class: Google::Apis::BigqueryV2::JobStatistics2
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::JobStatistics2
- 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
-
#billing_tier ⇒ Fixnum
[Output-only] Billing tier for the job.
-
#cache_hit ⇒ Boolean
(also: #cache_hit?)
[Output-only] Whether the query result was fetched from the query cache.
-
#ddl_operation_performed ⇒ String
[Output-only, Experimental] The DDL operation performed, possibly dependent on the pre-existence of the DDL target.
-
#ddl_target_table ⇒ Google::Apis::BigqueryV2::TableReference
[Output-only, Experimental] The DDL target table.
-
#estimated_bytes_processed ⇒ Fixnum
[Output-only] The original estimate of bytes processed for the job.
-
#num_dml_affected_rows ⇒ Fixnum
[Output-only] The number of rows affected by a DML statement.
-
#query_plan ⇒ Array<Google::Apis::BigqueryV2::ExplainQueryStage>
[Output-only] Describes execution plan for the query.
-
#referenced_tables ⇒ Array<Google::Apis::BigqueryV2::TableReference>
[Output-only] Referenced tables for the job.
-
#schema ⇒ Google::Apis::BigqueryV2::TableSchema
[Output-only] The schema of the results.
-
#statement_type ⇒ String
[Output-only, Experimental] The type of query statement, if valid.
-
#timeline ⇒ Array<Google::Apis::BigqueryV2::QueryTimelineSample>
[Output-only] [Experimental] Describes a timeline of job execution.
-
#total_bytes_billed ⇒ Fixnum
[Output-only] Total bytes billed for the job.
-
#total_bytes_processed ⇒ Fixnum
[Output-only] Total bytes processed for the job.
-
#total_slot_ms ⇒ Fixnum
[Output-only] Slot-milliseconds for the job.
-
#undeclared_query_parameters ⇒ Array<Google::Apis::BigqueryV2::QueryParameter>
[Output-only, Experimental] Standard SQL only: list of undeclared query parameters detected during a dry run validation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ JobStatistics2
constructor
A new instance of JobStatistics2.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ JobStatistics2
Returns a new instance of JobStatistics2
2089 2090 2091 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2089 def initialize(**args) update!(**args) end |
Instance Attribute Details
#billing_tier ⇒ Fixnum
[Output-only] Billing tier for the job.
Corresponds to the JSON property billingTier
1995 1996 1997 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1995 def billing_tier @billing_tier end |
#cache_hit ⇒ Boolean Also known as: cache_hit?
[Output-only] Whether the query result was fetched from the query cache.
Corresponds to the JSON property cacheHit
2000 2001 2002 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2000 def cache_hit @cache_hit end |
#ddl_operation_performed ⇒ String
[Output-only, Experimental] The DDL operation performed, possibly dependent on
the pre-existence of the DDL target. Possible values (new values might be
added in the future): "CREATE": The query created the DDL target. "SKIP": No-
op. Example cases: the query is CREATE TABLE IF NOT EXISTS while the table
already exists, or the query is DROP TABLE IF EXISTS while the table does not
exist. "REPLACE": The query replaced the DDL target. Example case: the query
is CREATE OR REPLACE TABLE, and the table already exists. "DROP": The query
deleted the DDL target.
Corresponds to the JSON property ddlOperationPerformed
2013 2014 2015 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2013 def ddl_operation_performed @ddl_operation_performed end |
#ddl_target_table ⇒ Google::Apis::BigqueryV2::TableReference
[Output-only, Experimental] The DDL target table. Present only for CREATE/DROP
TABLE/VIEW queries.
Corresponds to the JSON property ddlTargetTable
2019 2020 2021 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2019 def ddl_target_table @ddl_target_table end |
#estimated_bytes_processed ⇒ Fixnum
[Output-only] The original estimate of bytes processed for the job.
Corresponds to the JSON property estimatedBytesProcessed
2024 2025 2026 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2024 def estimated_bytes_processed @estimated_bytes_processed end |
#num_dml_affected_rows ⇒ Fixnum
[Output-only] The number of rows affected by a DML statement. Present only for
DML statements INSERT, UPDATE or DELETE.
Corresponds to the JSON property numDmlAffectedRows
2030 2031 2032 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2030 def num_dml_affected_rows @num_dml_affected_rows end |
#query_plan ⇒ Array<Google::Apis::BigqueryV2::ExplainQueryStage>
[Output-only] Describes execution plan for the query.
Corresponds to the JSON property queryPlan
2035 2036 2037 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2035 def query_plan @query_plan end |
#referenced_tables ⇒ Array<Google::Apis::BigqueryV2::TableReference>
[Output-only] Referenced tables for the job. Queries that reference more than
50 tables will not have a complete list.
Corresponds to the JSON property referencedTables
2041 2042 2043 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2041 def referenced_tables @referenced_tables end |
#schema ⇒ Google::Apis::BigqueryV2::TableSchema
[Output-only] The schema of the results. Present only for successful dry run
of non-legacy SQL queries.
Corresponds to the JSON property schema
2047 2048 2049 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2047 def schema @schema end |
#statement_type ⇒ String
[Output-only, Experimental] The type of query statement, if valid. Possible
values (new values might be added in the future): "SELECT": SELECT query. "
INSERT": INSERT query; see https://cloud.google.com/bigquery/docs/reference/
standard-sql/data-manipulation-language "UPDATE": UPDATE query; see https://
cloud.google.com/bigquery/docs/reference/standard-sql/data-manipulation-
language "DELETE": DELETE query; see https://cloud.google.com/bigquery/docs/
reference/standard-sql/data-manipulation-language "CREATE_TABLE": CREATE [OR
REPLACE] TABLE without AS SELECT. "CREATE_TABLE_AS_SELECT": CREATE [OR REPLACE]
TABLE ... AS SELECT ... "DROP_TABLE": DROP TABLE query. "CREATE_VIEW": CREATE
[OR REPLACE] VIEW ... AS SELECT ... "DROP_VIEW": DROP VIEW query.
Corresponds to the JSON property statementType
2061 2062 2063 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2061 def statement_type @statement_type end |
#timeline ⇒ Array<Google::Apis::BigqueryV2::QueryTimelineSample>
[Output-only] [Experimental] Describes a timeline of job execution.
Corresponds to the JSON property timeline
2066 2067 2068 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2066 def timeline @timeline end |
#total_bytes_billed ⇒ Fixnum
[Output-only] Total bytes billed for the job.
Corresponds to the JSON property totalBytesBilled
2071 2072 2073 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2071 def total_bytes_billed @total_bytes_billed end |
#total_bytes_processed ⇒ Fixnum
[Output-only] Total bytes processed for the job.
Corresponds to the JSON property totalBytesProcessed
2076 2077 2078 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2076 def total_bytes_processed @total_bytes_processed end |
#total_slot_ms ⇒ Fixnum
[Output-only] Slot-milliseconds for the job.
Corresponds to the JSON property totalSlotMs
2081 2082 2083 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2081 def total_slot_ms @total_slot_ms end |
#undeclared_query_parameters ⇒ Array<Google::Apis::BigqueryV2::QueryParameter>
[Output-only, Experimental] Standard SQL only: list of undeclared query
parameters detected during a dry run validation.
Corresponds to the JSON property undeclaredQueryParameters
2087 2088 2089 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2087 def undeclared_query_parameters @undeclared_query_parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2094 def update!(**args) @billing_tier = args[:billing_tier] if args.key?(:billing_tier) @cache_hit = args[:cache_hit] if args.key?(:cache_hit) @ddl_operation_performed = args[:ddl_operation_performed] if args.key?(:ddl_operation_performed) @ddl_target_table = args[:ddl_target_table] if args.key?(:ddl_target_table) @estimated_bytes_processed = args[:estimated_bytes_processed] if args.key?(:estimated_bytes_processed) @num_dml_affected_rows = args[:num_dml_affected_rows] if args.key?(:num_dml_affected_rows) @query_plan = args[:query_plan] if args.key?(:query_plan) @referenced_tables = args[:referenced_tables] if args.key?(:referenced_tables) @schema = args[:schema] if args.key?(:schema) @statement_type = args[:statement_type] if args.key?(:statement_type) @timeline = args[:timeline] if args.key?(:timeline) @total_bytes_billed = args[:total_bytes_billed] if args.key?(:total_bytes_billed) @total_bytes_processed = args[:total_bytes_processed] if args.key?(:total_bytes_processed) @total_slot_ms = args[:total_slot_ms] if args.key?(:total_slot_ms) @undeclared_query_parameters = args[:undeclared_query_parameters] if args.key?(:undeclared_query_parameters) end |