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.
-
#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, Experimental] Referenced tables for the job.
-
#schema ⇒ Google::Apis::BigqueryV2::TableSchema
[Output-only, Experimental] The schema of the results.
-
#statement_type ⇒ String
[Output-only, Experimental] The type of query statement, if valid.
-
#total_bytes_billed ⇒ Fixnum
[Output-only] Total bytes billed for the job.
-
#total_bytes_processed ⇒ Fixnum
[Output-only] Total bytes processed 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
1849 1850 1851 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1849 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
1797 1798 1799 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1797 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
1802 1803 1804 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1802 def cache_hit @cache_hit 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
1809 1810 1811 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1809 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
1814 1815 1816 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1814 def query_plan @query_plan end |
#referenced_tables ⇒ Array<Google::Apis::BigqueryV2::TableReference>
[Output-only, Experimental] Referenced tables for the job. Queries that
reference more than 50 tables will not have a complete list.
Corresponds to the JSON property referencedTables
1820 1821 1822 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1820 def referenced_tables @referenced_tables end |
#schema ⇒ Google::Apis::BigqueryV2::TableSchema
[Output-only, Experimental] The schema of the results. Present only for
successful dry run of non-legacy SQL queries.
Corresponds to the JSON property schema
1826 1827 1828 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1826 def schema @schema end |
#statement_type ⇒ String
[Output-only, Experimental] The type of query statement, if valid.
Corresponds to the JSON property statementType
1831 1832 1833 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1831 def statement_type @statement_type end |
#total_bytes_billed ⇒ Fixnum
[Output-only] Total bytes billed for the job.
Corresponds to the JSON property totalBytesBilled
1836 1837 1838 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1836 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
1841 1842 1843 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1841 def total_bytes_processed @total_bytes_processed 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
1847 1848 1849 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1847 def undeclared_query_parameters @undeclared_query_parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 |
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1854 def update!(**args) @billing_tier = args[:billing_tier] if args.key?(:billing_tier) @cache_hit = args[:cache_hit] if args.key?(:cache_hit) @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) @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) @undeclared_query_parameters = args[:undeclared_query_parameters] if args.key?(:undeclared_query_parameters) end |