google-apis-bigquery_v2 0.104.0 → 0.106.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3168f3b1f97764083420bccd5a7aa486dbf170603207f74bec6579c6815dd8fa
|
|
4
|
+
data.tar.gz: d975be7fe28d16670a99f1e70d98f6866a9dc85f0d16809504fbd16268b8be91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e21e95e1a8ad9277cfa4e105a69ddbbd03df9fa092348e6296120f3d24fe6815647f5f595edc431dcc4519698a74dc64c55ec195866d007cb1197db15e7a7d2
|
|
7
|
+
data.tar.gz: 617fe507792621f81d41789e6dcb78bb6e8ca78186acac556ba034dcc4ff252b243a958dbefb5cdd1b92e3c4390cb4209ea60a99446d31dea9415426713bde6c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-bigquery_v2
|
|
2
2
|
|
|
3
|
+
### v0.106.0 (2026-07-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260707
|
|
6
|
+
|
|
7
|
+
### v0.105.0 (2026-07-12)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260620
|
|
10
|
+
|
|
3
11
|
### v0.104.0 (2026-06-21)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260605
|
|
@@ -158,6 +158,11 @@ module Google
|
|
|
158
158
|
# @return [String]
|
|
159
159
|
attr_accessor :name
|
|
160
160
|
|
|
161
|
+
# A table type
|
|
162
|
+
# Corresponds to the JSON property `tableType`
|
|
163
|
+
# @return [Google::Apis::BigqueryV2::StandardSqlTableType]
|
|
164
|
+
attr_accessor :table_type
|
|
165
|
+
|
|
161
166
|
def initialize(**args)
|
|
162
167
|
update!(**args)
|
|
163
168
|
end
|
|
@@ -169,6 +174,7 @@ module Google
|
|
|
169
174
|
@is_aggregate = args[:is_aggregate] if args.key?(:is_aggregate)
|
|
170
175
|
@mode = args[:mode] if args.key?(:mode)
|
|
171
176
|
@name = args[:name] if args.key?(:name)
|
|
177
|
+
@table_type = args[:table_type] if args.key?(:table_type)
|
|
172
178
|
end
|
|
173
179
|
end
|
|
174
180
|
|
|
@@ -508,6 +514,77 @@ module Google
|
|
|
508
514
|
end
|
|
509
515
|
end
|
|
510
516
|
|
|
517
|
+
# Arrow RecordBatch. This feature is not yet available.
|
|
518
|
+
class ArrowRecordBatch
|
|
519
|
+
include Google::Apis::Core::Hashable
|
|
520
|
+
|
|
521
|
+
# IPC-serialized Arrow RecordBatch.
|
|
522
|
+
# Corresponds to the JSON property `serializedRecordBatch`
|
|
523
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
524
|
+
# @return [String]
|
|
525
|
+
attr_accessor :serialized_record_batch
|
|
526
|
+
|
|
527
|
+
def initialize(**args)
|
|
528
|
+
update!(**args)
|
|
529
|
+
end
|
|
530
|
+
|
|
531
|
+
# Update properties of this object
|
|
532
|
+
def update!(**args)
|
|
533
|
+
@serialized_record_batch = args[:serialized_record_batch] if args.key?(:serialized_record_batch)
|
|
534
|
+
end
|
|
535
|
+
end
|
|
536
|
+
|
|
537
|
+
# Arrow schema as specified in https://arrow.apache.org/docs/python/api/
|
|
538
|
+
# datatypes.html and serialized to bytes using IPC: https://arrow.apache.org/
|
|
539
|
+
# docs/format/Columnar.html#serialization-and-interprocess-communication-ipc See
|
|
540
|
+
# code samples on how this message can be deserialized. This feature is not yet
|
|
541
|
+
# available.
|
|
542
|
+
class ArrowSchema
|
|
543
|
+
include Google::Apis::Core::Hashable
|
|
544
|
+
|
|
545
|
+
# IPC serialized Arrow schema.
|
|
546
|
+
# Corresponds to the JSON property `serializedSchema`
|
|
547
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
548
|
+
# @return [String]
|
|
549
|
+
attr_accessor :serialized_schema
|
|
550
|
+
|
|
551
|
+
def initialize(**args)
|
|
552
|
+
update!(**args)
|
|
553
|
+
end
|
|
554
|
+
|
|
555
|
+
# Update properties of this object
|
|
556
|
+
def update!(**args)
|
|
557
|
+
@serialized_schema = args[:serialized_schema] if args.key?(:serialized_schema)
|
|
558
|
+
end
|
|
559
|
+
end
|
|
560
|
+
|
|
561
|
+
# Contains options specific to Arrow Serialization. This feature is not yet
|
|
562
|
+
# available.
|
|
563
|
+
class ArrowSerializationOptions
|
|
564
|
+
include Google::Apis::Core::Hashable
|
|
565
|
+
|
|
566
|
+
# The compression codec to use for Arrow buffers in serialized record batches.
|
|
567
|
+
# Corresponds to the JSON property `bufferCompression`
|
|
568
|
+
# @return [String]
|
|
569
|
+
attr_accessor :buffer_compression
|
|
570
|
+
|
|
571
|
+
# Optional. Set timestamp precision option. If not set, the default precision is
|
|
572
|
+
# microseconds.
|
|
573
|
+
# Corresponds to the JSON property `picosTimestampPrecision`
|
|
574
|
+
# @return [String]
|
|
575
|
+
attr_accessor :picos_timestamp_precision
|
|
576
|
+
|
|
577
|
+
def initialize(**args)
|
|
578
|
+
update!(**args)
|
|
579
|
+
end
|
|
580
|
+
|
|
581
|
+
# Update properties of this object
|
|
582
|
+
def update!(**args)
|
|
583
|
+
@buffer_compression = args[:buffer_compression] if args.key?(:buffer_compression)
|
|
584
|
+
@picos_timestamp_precision = args[:picos_timestamp_precision] if args.key?(:picos_timestamp_precision)
|
|
585
|
+
end
|
|
586
|
+
end
|
|
587
|
+
|
|
511
588
|
# Specifies the audit configuration for a service. The configuration determines
|
|
512
589
|
# which permission types are logged, and what identities, if any, are exempted
|
|
513
590
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
|
@@ -3569,8 +3646,11 @@ module Google
|
|
|
3569
3646
|
# @return [String]
|
|
3570
3647
|
attr_accessor :container_memory
|
|
3571
3648
|
|
|
3572
|
-
# Optional. Maximum number of requests that a Python UDF
|
|
3573
|
-
#
|
|
3649
|
+
# Optional. Maximum number of requests that a Python UDF instance can handle
|
|
3650
|
+
# concurrently. If absent or if `0`, the default concurrency value is used. For
|
|
3651
|
+
# more information, see [Configure container limits for Python UDFs](https://
|
|
3652
|
+
# cloud.google.com/bigquery/docs/user-defined-functions-python#configure-
|
|
3653
|
+
# container-limits).
|
|
3574
3654
|
# Corresponds to the JSON property `containerRequestConcurrency`
|
|
3575
3655
|
# @return [Fixnum]
|
|
3576
3656
|
attr_accessor :container_request_concurrency
|
|
@@ -3947,7 +4027,7 @@ module Google
|
|
|
3947
4027
|
attr_accessor :asynchronous
|
|
3948
4028
|
alias_method :asynchronous?, :asynchronous
|
|
3949
4029
|
|
|
3950
|
-
# Optional. The generation expression (e.g. AI.EMBED(...)) used to
|
|
4030
|
+
# Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the
|
|
3951
4031
|
# field.
|
|
3952
4032
|
# Corresponds to the JSON property `generationExpression`
|
|
3953
4033
|
# @return [String]
|
|
@@ -5043,7 +5123,10 @@ module Google
|
|
|
5043
5123
|
# Optional. The reservation that job would use. User can specify a reservation
|
|
5044
5124
|
# to execute the job. If reservation is not set, reservation is determined based
|
|
5045
5125
|
# on the rules defined by the reservation assignments. The expected format is `
|
|
5046
|
-
# projects/`project`/locations/`location`/reservations/`reservation``.
|
|
5126
|
+
# projects/`project`/locations/`location`/reservations/`reservation``. Forces
|
|
5127
|
+
# the query to use on-demand billing when set to `none`, which requires the
|
|
5128
|
+
# project or organization to have `reservation_override_mode` set to `
|
|
5129
|
+
# ALLOW_ANY_OVERRIDE`.
|
|
5047
5130
|
# Corresponds to the JSON property `reservation`
|
|
5048
5131
|
# @return [String]
|
|
5049
5132
|
attr_accessor :reservation
|
|
@@ -6177,6 +6260,11 @@ module Google
|
|
|
6177
6260
|
# @return [Fixnum]
|
|
6178
6261
|
attr_accessor :final_execution_duration_ms
|
|
6179
6262
|
|
|
6263
|
+
# Output only. Regions where the global query accesses data.
|
|
6264
|
+
# Corresponds to the JSON property `globalQueryRemoteRegions`
|
|
6265
|
+
# @return [Array<String>]
|
|
6266
|
+
attr_accessor :global_query_remote_regions
|
|
6267
|
+
|
|
6180
6268
|
# Statistics for a load job.
|
|
6181
6269
|
# Corresponds to the JSON property `load`
|
|
6182
6270
|
# @return [Google::Apis::BigqueryV2::JobStatistics3]
|
|
@@ -6187,6 +6275,11 @@ module Google
|
|
|
6187
6275
|
# @return [Fixnum]
|
|
6188
6276
|
attr_accessor :num_child_jobs
|
|
6189
6277
|
|
|
6278
|
+
# A job reference is a fully qualified identifier for referring to a job.
|
|
6279
|
+
# Corresponds to the JSON property `parentGlobalQueryJob`
|
|
6280
|
+
# @return [Google::Apis::BigqueryV2::JobReference]
|
|
6281
|
+
attr_accessor :parent_global_query_job
|
|
6282
|
+
|
|
6190
6283
|
# Output only. If this is a child job, specifies the job ID of the parent.
|
|
6191
6284
|
# Corresponds to the JSON property `parentJobId`
|
|
6192
6285
|
# @return [String]
|
|
@@ -6275,8 +6368,10 @@ module Google
|
|
|
6275
6368
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
6276
6369
|
@extract = args[:extract] if args.key?(:extract)
|
|
6277
6370
|
@final_execution_duration_ms = args[:final_execution_duration_ms] if args.key?(:final_execution_duration_ms)
|
|
6371
|
+
@global_query_remote_regions = args[:global_query_remote_regions] if args.key?(:global_query_remote_regions)
|
|
6278
6372
|
@load = args[:load] if args.key?(:load)
|
|
6279
6373
|
@num_child_jobs = args[:num_child_jobs] if args.key?(:num_child_jobs)
|
|
6374
|
+
@parent_global_query_job = args[:parent_global_query_job] if args.key?(:parent_global_query_job)
|
|
6280
6375
|
@parent_job_id = args[:parent_job_id] if args.key?(:parent_job_id)
|
|
6281
6376
|
@query = args[:query] if args.key?(:query)
|
|
6282
6377
|
@quota_deferments = args[:quota_deferments] if args.key?(:quota_deferments)
|
|
@@ -6472,6 +6567,12 @@ module Google
|
|
|
6472
6567
|
# @return [Fixnum]
|
|
6473
6568
|
attr_accessor :num_dml_affected_rows
|
|
6474
6569
|
|
|
6570
|
+
# Output only. Storage and caching statistics per cloud provider for queries
|
|
6571
|
+
# over object storage.
|
|
6572
|
+
# Corresponds to the JSON property `objectStorageStats`
|
|
6573
|
+
# @return [Array<Google::Apis::BigqueryV2::ObjectStorageStats>]
|
|
6574
|
+
attr_accessor :object_storage_stats
|
|
6575
|
+
|
|
6475
6576
|
# Performance insights for the job.
|
|
6476
6577
|
# Corresponds to the JSON property `performanceInsights`
|
|
6477
6578
|
# @return [Google::Apis::BigqueryV2::PerformanceInsights]
|
|
@@ -6716,6 +6817,7 @@ module Google
|
|
|
6716
6817
|
@model_training_current_iteration = args[:model_training_current_iteration] if args.key?(:model_training_current_iteration)
|
|
6717
6818
|
@model_training_expected_total_iteration = args[:model_training_expected_total_iteration] if args.key?(:model_training_expected_total_iteration)
|
|
6718
6819
|
@num_dml_affected_rows = args[:num_dml_affected_rows] if args.key?(:num_dml_affected_rows)
|
|
6820
|
+
@object_storage_stats = args[:object_storage_stats] if args.key?(:object_storage_stats)
|
|
6719
6821
|
@performance_insights = args[:performance_insights] if args.key?(:performance_insights)
|
|
6720
6822
|
@query_info = args[:query_info] if args.key?(:query_info)
|
|
6721
6823
|
@query_plan = args[:query_plan] if args.key?(:query_plan)
|
|
@@ -6870,6 +6972,12 @@ module Google
|
|
|
6870
6972
|
# @return [Fixnum]
|
|
6871
6973
|
attr_accessor :copied_rows
|
|
6872
6974
|
|
|
6975
|
+
# Output only. Destination region for a cross-region copy job. Not set for in-
|
|
6976
|
+
# region copy jobs.
|
|
6977
|
+
# Corresponds to the JSON property `remoteDestinationRegion`
|
|
6978
|
+
# @return [String]
|
|
6979
|
+
attr_accessor :remote_destination_region
|
|
6980
|
+
|
|
6873
6981
|
def initialize(**args)
|
|
6874
6982
|
update!(**args)
|
|
6875
6983
|
end
|
|
@@ -6878,6 +6986,7 @@ module Google
|
|
|
6878
6986
|
def update!(**args)
|
|
6879
6987
|
@copied_logical_bytes = args[:copied_logical_bytes] if args.key?(:copied_logical_bytes)
|
|
6880
6988
|
@copied_rows = args[:copied_rows] if args.key?(:copied_rows)
|
|
6989
|
+
@remote_destination_region = args[:remote_destination_region] if args.key?(:remote_destination_region)
|
|
6881
6990
|
end
|
|
6882
6991
|
end
|
|
6883
6992
|
|
|
@@ -7714,6 +7823,38 @@ module Google
|
|
|
7714
7823
|
end
|
|
7715
7824
|
end
|
|
7716
7825
|
|
|
7826
|
+
# Storage and caching statistics for object storage.
|
|
7827
|
+
class ObjectStorageStats
|
|
7828
|
+
include Google::Apis::Core::Hashable
|
|
7829
|
+
|
|
7830
|
+
# Total bytes read from the GCP Lakehouse-internal cache, avoiding an object
|
|
7831
|
+
# storage read.
|
|
7832
|
+
# Corresponds to the JSON property `cacheBytesRead`
|
|
7833
|
+
# @return [Fixnum]
|
|
7834
|
+
attr_accessor :cache_bytes_read
|
|
7835
|
+
|
|
7836
|
+
# The cloud provider for this block of statistics.
|
|
7837
|
+
# Corresponds to the JSON property `cloudProvider`
|
|
7838
|
+
# @return [String]
|
|
7839
|
+
attr_accessor :cloud_provider
|
|
7840
|
+
|
|
7841
|
+
# Total bytes read directly from the cloud provider's storage.
|
|
7842
|
+
# Corresponds to the JSON property `objectStorageBytesRead`
|
|
7843
|
+
# @return [Fixnum]
|
|
7844
|
+
attr_accessor :object_storage_bytes_read
|
|
7845
|
+
|
|
7846
|
+
def initialize(**args)
|
|
7847
|
+
update!(**args)
|
|
7848
|
+
end
|
|
7849
|
+
|
|
7850
|
+
# Update properties of this object
|
|
7851
|
+
def update!(**args)
|
|
7852
|
+
@cache_bytes_read = args[:cache_bytes_read] if args.key?(:cache_bytes_read)
|
|
7853
|
+
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
|
7854
|
+
@object_storage_bytes_read = args[:object_storage_bytes_read] if args.key?(:object_storage_bytes_read)
|
|
7855
|
+
end
|
|
7856
|
+
end
|
|
7857
|
+
|
|
7717
7858
|
# Parquet Options for load and make external tables.
|
|
7718
7859
|
class ParquetOptions
|
|
7719
7860
|
include Google::Apis::Core::Hashable
|
|
@@ -8394,6 +8535,12 @@ module Google
|
|
|
8394
8535
|
class QueryRequest
|
|
8395
8536
|
include Google::Apis::Core::Hashable
|
|
8396
8537
|
|
|
8538
|
+
# Contains options specific to Arrow Serialization. This feature is not yet
|
|
8539
|
+
# available.
|
|
8540
|
+
# Corresponds to the JSON property `arrowSerializationOptions`
|
|
8541
|
+
# @return [Google::Apis::BigqueryV2::ArrowSerializationOptions]
|
|
8542
|
+
attr_accessor :arrow_serialization_options
|
|
8543
|
+
|
|
8397
8544
|
# Optional. Connection properties which can modify the query behavior.
|
|
8398
8545
|
# Corresponds to the JSON property `connectionProperties`
|
|
8399
8546
|
# @return [Array<Google::Apis::BigqueryV2::ConnectionProperty>]
|
|
@@ -8526,6 +8673,17 @@ module Google
|
|
|
8526
8673
|
# @return [Array<Google::Apis::BigqueryV2::QueryParameter>]
|
|
8527
8674
|
attr_accessor :query_parameters
|
|
8528
8675
|
|
|
8676
|
+
# Optional. The query results format. If the value is anything other than `
|
|
8677
|
+
# STRUCT_ENCODING` or unspecified: * The schema of the results will be provided
|
|
8678
|
+
# in `QueryResponse.results_schema` field. * The results of the first page will
|
|
8679
|
+
# be provided in `QueryResponse.results` field. * The `QueryResponse.rows` will
|
|
8680
|
+
# not be populated. * The `QueryResponse.schema` for `QueryResponse.rows` will
|
|
8681
|
+
# also not be populated since it is the schema of the `QueryResponse.rows`. This
|
|
8682
|
+
# feature is not yet available.
|
|
8683
|
+
# Corresponds to the JSON property `queryResultsFormat`
|
|
8684
|
+
# @return [String]
|
|
8685
|
+
attr_accessor :query_results_format
|
|
8686
|
+
|
|
8529
8687
|
# Optional. A unique user provided identifier to ensure idempotent behavior for
|
|
8530
8688
|
# queries. Note that this is different from the job_id. It has the following
|
|
8531
8689
|
# properties: 1. It is case-sensitive, limited to up to 36 ASCII characters. A
|
|
@@ -8551,7 +8709,9 @@ module Google
|
|
|
8551
8709
|
|
|
8552
8710
|
# Optional. The reservation that jobs.query request would use. User can specify
|
|
8553
8711
|
# a reservation to execute the job.query. The expected format is `projects/`
|
|
8554
|
-
# project`/locations/`location`/reservations/`reservation``.
|
|
8712
|
+
# project`/locations/`location`/reservations/`reservation``. Forces the query to
|
|
8713
|
+
# use on-demand billing when set to `none`. This requires the project or
|
|
8714
|
+
# organization to have `reservation_override_mode` set to `ALLOW_ANY_OVERRIDE`.
|
|
8555
8715
|
# Corresponds to the JSON property `reservation`
|
|
8556
8716
|
# @return [String]
|
|
8557
8717
|
attr_accessor :reservation
|
|
@@ -8603,6 +8763,7 @@ module Google
|
|
|
8603
8763
|
|
|
8604
8764
|
# Update properties of this object
|
|
8605
8765
|
def update!(**args)
|
|
8766
|
+
@arrow_serialization_options = args[:arrow_serialization_options] if args.key?(:arrow_serialization_options)
|
|
8606
8767
|
@connection_properties = args[:connection_properties] if args.key?(:connection_properties)
|
|
8607
8768
|
@continuous = args[:continuous] if args.key?(:continuous)
|
|
8608
8769
|
@create_session = args[:create_session] if args.key?(:create_session)
|
|
@@ -8622,6 +8783,7 @@ module Google
|
|
|
8622
8783
|
@preserve_nulls = args[:preserve_nulls] if args.key?(:preserve_nulls)
|
|
8623
8784
|
@query = args[:query] if args.key?(:query)
|
|
8624
8785
|
@query_parameters = args[:query_parameters] if args.key?(:query_parameters)
|
|
8786
|
+
@query_results_format = args[:query_results_format] if args.key?(:query_results_format)
|
|
8625
8787
|
@request_id = args[:request_id] if args.key?(:request_id)
|
|
8626
8788
|
@reservation = args[:reservation] if args.key?(:reservation)
|
|
8627
8789
|
@timeout_ms = args[:timeout_ms] if args.key?(:timeout_ms)
|
|
@@ -8635,6 +8797,20 @@ module Google
|
|
|
8635
8797
|
class QueryResponse
|
|
8636
8798
|
include Google::Apis::Core::Hashable
|
|
8637
8799
|
|
|
8800
|
+
# Arrow RecordBatch. This feature is not yet available.
|
|
8801
|
+
# Corresponds to the JSON property `arrowRecordBatch`
|
|
8802
|
+
# @return [Google::Apis::BigqueryV2::ArrowRecordBatch]
|
|
8803
|
+
attr_accessor :arrow_record_batch
|
|
8804
|
+
|
|
8805
|
+
# Arrow schema as specified in https://arrow.apache.org/docs/python/api/
|
|
8806
|
+
# datatypes.html and serialized to bytes using IPC: https://arrow.apache.org/
|
|
8807
|
+
# docs/format/Columnar.html#serialization-and-interprocess-communication-ipc See
|
|
8808
|
+
# code samples on how this message can be deserialized. This feature is not yet
|
|
8809
|
+
# available.
|
|
8810
|
+
# Corresponds to the JSON property `arrowSchema`
|
|
8811
|
+
# @return [Google::Apis::BigqueryV2::ArrowSchema]
|
|
8812
|
+
attr_accessor :arrow_schema
|
|
8813
|
+
|
|
8638
8814
|
# Whether the query result was fetched from the query cache.
|
|
8639
8815
|
# Corresponds to the JSON property `cacheHit`
|
|
8640
8816
|
# @return [Boolean]
|
|
@@ -8705,6 +8881,12 @@ module Google
|
|
|
8705
8881
|
# @return [Fixnum]
|
|
8706
8882
|
attr_accessor :num_dml_affected_rows
|
|
8707
8883
|
|
|
8884
|
+
# Output only. The number of rows out of `total_rows` returned in this response.
|
|
8885
|
+
# This feature is not yet available.
|
|
8886
|
+
# Corresponds to the JSON property `pageRowCount`
|
|
8887
|
+
# @return [Fixnum]
|
|
8888
|
+
attr_accessor :page_row_count
|
|
8889
|
+
|
|
8708
8890
|
# A token used for paging results. A non-empty token indicates that additional
|
|
8709
8891
|
# results are available. To see additional results, query the [`jobs.
|
|
8710
8892
|
# getQueryResults`](https://cloud.google.com/bigquery/docs/reference/rest/v2/
|
|
@@ -8774,6 +8956,8 @@ module Google
|
|
|
8774
8956
|
|
|
8775
8957
|
# Update properties of this object
|
|
8776
8958
|
def update!(**args)
|
|
8959
|
+
@arrow_record_batch = args[:arrow_record_batch] if args.key?(:arrow_record_batch)
|
|
8960
|
+
@arrow_schema = args[:arrow_schema] if args.key?(:arrow_schema)
|
|
8777
8961
|
@cache_hit = args[:cache_hit] if args.key?(:cache_hit)
|
|
8778
8962
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
|
8779
8963
|
@dml_stats = args[:dml_stats] if args.key?(:dml_stats)
|
|
@@ -8785,6 +8969,7 @@ module Google
|
|
|
8785
8969
|
@kind = args[:kind] if args.key?(:kind)
|
|
8786
8970
|
@location = args[:location] if args.key?(:location)
|
|
8787
8971
|
@num_dml_affected_rows = args[:num_dml_affected_rows] if args.key?(:num_dml_affected_rows)
|
|
8972
|
+
@page_row_count = args[:page_row_count] if args.key?(:page_row_count)
|
|
8788
8973
|
@page_token = args[:page_token] if args.key?(:page_token)
|
|
8789
8974
|
@query_id = args[:query_id] if args.key?(:query_id)
|
|
8790
8975
|
@rows = args[:rows] if args.key?(:rows)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module BigqueryV2
|
|
18
18
|
# Version of the google-apis-bigquery_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.106.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260707"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -82,6 +82,24 @@ module Google
|
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
+
class ArrowRecordBatch
|
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
|
+
|
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
class ArrowSchema
|
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
93
|
+
|
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
class ArrowSerializationOptions
|
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
99
|
+
|
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
101
|
+
end
|
|
102
|
+
|
|
85
103
|
class AuditConfig
|
|
86
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
105
|
|
|
@@ -886,6 +904,12 @@ module Google
|
|
|
886
904
|
include Google::Apis::Core::JsonObjectSupport
|
|
887
905
|
end
|
|
888
906
|
|
|
907
|
+
class ObjectStorageStats
|
|
908
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
909
|
+
|
|
910
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
911
|
+
end
|
|
912
|
+
|
|
889
913
|
class ParquetOptions
|
|
890
914
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
891
915
|
|
|
@@ -1504,6 +1528,8 @@ module Google
|
|
|
1504
1528
|
property :is_aggregate, as: 'isAggregate'
|
|
1505
1529
|
property :mode, as: 'mode'
|
|
1506
1530
|
property :name, as: 'name'
|
|
1531
|
+
property :table_type, as: 'tableType', class: Google::Apis::BigqueryV2::StandardSqlTableType, decorator: Google::Apis::BigqueryV2::StandardSqlTableType::Representation
|
|
1532
|
+
|
|
1507
1533
|
end
|
|
1508
1534
|
end
|
|
1509
1535
|
|
|
@@ -1594,6 +1620,28 @@ module Google
|
|
|
1594
1620
|
end
|
|
1595
1621
|
end
|
|
1596
1622
|
|
|
1623
|
+
class ArrowRecordBatch
|
|
1624
|
+
# @private
|
|
1625
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1626
|
+
property :serialized_record_batch, :base64 => true, as: 'serializedRecordBatch'
|
|
1627
|
+
end
|
|
1628
|
+
end
|
|
1629
|
+
|
|
1630
|
+
class ArrowSchema
|
|
1631
|
+
# @private
|
|
1632
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1633
|
+
property :serialized_schema, :base64 => true, as: 'serializedSchema'
|
|
1634
|
+
end
|
|
1635
|
+
end
|
|
1636
|
+
|
|
1637
|
+
class ArrowSerializationOptions
|
|
1638
|
+
# @private
|
|
1639
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1640
|
+
property :buffer_compression, as: 'bufferCompression'
|
|
1641
|
+
property :picos_timestamp_precision, as: 'picosTimestampPrecision'
|
|
1642
|
+
end
|
|
1643
|
+
end
|
|
1644
|
+
|
|
1597
1645
|
class AuditConfig
|
|
1598
1646
|
# @private
|
|
1599
1647
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2924,9 +2972,12 @@ module Google
|
|
|
2924
2972
|
property :extract, as: 'extract', class: Google::Apis::BigqueryV2::JobStatistics4, decorator: Google::Apis::BigqueryV2::JobStatistics4::Representation
|
|
2925
2973
|
|
|
2926
2974
|
property :final_execution_duration_ms, :numeric_string => true, as: 'finalExecutionDurationMs'
|
|
2975
|
+
collection :global_query_remote_regions, as: 'globalQueryRemoteRegions'
|
|
2927
2976
|
property :load, as: 'load', class: Google::Apis::BigqueryV2::JobStatistics3, decorator: Google::Apis::BigqueryV2::JobStatistics3::Representation
|
|
2928
2977
|
|
|
2929
2978
|
property :num_child_jobs, :numeric_string => true, as: 'numChildJobs'
|
|
2979
|
+
property :parent_global_query_job, as: 'parentGlobalQueryJob', class: Google::Apis::BigqueryV2::JobReference, decorator: Google::Apis::BigqueryV2::JobReference::Representation
|
|
2980
|
+
|
|
2930
2981
|
property :parent_job_id, as: 'parentJobId'
|
|
2931
2982
|
property :query, as: 'query', class: Google::Apis::BigqueryV2::JobStatistics2, decorator: Google::Apis::BigqueryV2::JobStatistics2::Representation
|
|
2932
2983
|
|
|
@@ -3006,6 +3057,8 @@ module Google
|
|
|
3006
3057
|
property :model_training_current_iteration, as: 'modelTrainingCurrentIteration'
|
|
3007
3058
|
property :model_training_expected_total_iteration, :numeric_string => true, as: 'modelTrainingExpectedTotalIteration'
|
|
3008
3059
|
property :num_dml_affected_rows, :numeric_string => true, as: 'numDmlAffectedRows'
|
|
3060
|
+
collection :object_storage_stats, as: 'objectStorageStats', class: Google::Apis::BigqueryV2::ObjectStorageStats, decorator: Google::Apis::BigqueryV2::ObjectStorageStats::Representation
|
|
3061
|
+
|
|
3009
3062
|
property :performance_insights, as: 'performanceInsights', class: Google::Apis::BigqueryV2::PerformanceInsights, decorator: Google::Apis::BigqueryV2::PerformanceInsights::Representation
|
|
3010
3063
|
|
|
3011
3064
|
property :query_info, as: 'queryInfo', class: Google::Apis::BigqueryV2::QueryInfo, decorator: Google::Apis::BigqueryV2::QueryInfo::Representation
|
|
@@ -3079,6 +3132,7 @@ module Google
|
|
|
3079
3132
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3080
3133
|
property :copied_logical_bytes, :numeric_string => true, as: 'copiedLogicalBytes'
|
|
3081
3134
|
property :copied_rows, :numeric_string => true, as: 'copiedRows'
|
|
3135
|
+
property :remote_destination_region, as: 'remoteDestinationRegion'
|
|
3082
3136
|
end
|
|
3083
3137
|
end
|
|
3084
3138
|
|
|
@@ -3319,6 +3373,15 @@ module Google
|
|
|
3319
3373
|
end
|
|
3320
3374
|
end
|
|
3321
3375
|
|
|
3376
|
+
class ObjectStorageStats
|
|
3377
|
+
# @private
|
|
3378
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3379
|
+
property :cache_bytes_read, :numeric_string => true, as: 'cacheBytesRead'
|
|
3380
|
+
property :cloud_provider, as: 'cloudProvider'
|
|
3381
|
+
property :object_storage_bytes_read, :numeric_string => true, as: 'objectStorageBytesRead'
|
|
3382
|
+
end
|
|
3383
|
+
end
|
|
3384
|
+
|
|
3322
3385
|
class ParquetOptions
|
|
3323
3386
|
# @private
|
|
3324
3387
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3513,6 +3576,8 @@ module Google
|
|
|
3513
3576
|
class QueryRequest
|
|
3514
3577
|
# @private
|
|
3515
3578
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3579
|
+
property :arrow_serialization_options, as: 'arrowSerializationOptions', class: Google::Apis::BigqueryV2::ArrowSerializationOptions, decorator: Google::Apis::BigqueryV2::ArrowSerializationOptions::Representation
|
|
3580
|
+
|
|
3516
3581
|
collection :connection_properties, as: 'connectionProperties', class: Google::Apis::BigqueryV2::ConnectionProperty, decorator: Google::Apis::BigqueryV2::ConnectionProperty::Representation
|
|
3517
3582
|
|
|
3518
3583
|
property :continuous, as: 'continuous'
|
|
@@ -3537,6 +3602,7 @@ module Google
|
|
|
3537
3602
|
property :query, as: 'query'
|
|
3538
3603
|
collection :query_parameters, as: 'queryParameters', class: Google::Apis::BigqueryV2::QueryParameter, decorator: Google::Apis::BigqueryV2::QueryParameter::Representation
|
|
3539
3604
|
|
|
3605
|
+
property :query_results_format, as: 'queryResultsFormat'
|
|
3540
3606
|
property :request_id, as: 'requestId'
|
|
3541
3607
|
property :reservation, as: 'reservation'
|
|
3542
3608
|
property :timeout_ms, as: 'timeoutMs'
|
|
@@ -3549,6 +3615,10 @@ module Google
|
|
|
3549
3615
|
class QueryResponse
|
|
3550
3616
|
# @private
|
|
3551
3617
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3618
|
+
property :arrow_record_batch, as: 'arrowRecordBatch', class: Google::Apis::BigqueryV2::ArrowRecordBatch, decorator: Google::Apis::BigqueryV2::ArrowRecordBatch::Representation
|
|
3619
|
+
|
|
3620
|
+
property :arrow_schema, as: 'arrowSchema', class: Google::Apis::BigqueryV2::ArrowSchema, decorator: Google::Apis::BigqueryV2::ArrowSchema::Representation
|
|
3621
|
+
|
|
3552
3622
|
property :cache_hit, as: 'cacheHit'
|
|
3553
3623
|
property :creation_time, :numeric_string => true, as: 'creationTime'
|
|
3554
3624
|
property :dml_stats, as: 'dmlStats', class: Google::Apis::BigqueryV2::DmlStatistics, decorator: Google::Apis::BigqueryV2::DmlStatistics::Representation
|
|
@@ -3564,6 +3634,7 @@ module Google
|
|
|
3564
3634
|
property :kind, as: 'kind'
|
|
3565
3635
|
property :location, as: 'location'
|
|
3566
3636
|
property :num_dml_affected_rows, :numeric_string => true, as: 'numDmlAffectedRows'
|
|
3637
|
+
property :page_row_count, :numeric_string => true, as: 'pageRowCount'
|
|
3567
3638
|
property :page_token, as: 'pageToken'
|
|
3568
3639
|
property :query_id, as: 'queryId'
|
|
3569
3640
|
collection :rows, as: 'rows', class: Google::Apis::BigqueryV2::TableRow, decorator: Google::Apis::BigqueryV2::TableRow::Representation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-bigquery_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.106.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.106.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|