google-apis-bigquery_v2 0.94.0 → 0.95.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: da2b4cbfa703cd9462b98f3777d301c1e9397898b324580039f70124884ba406
|
4
|
+
data.tar.gz: 10887f476da721fb7a1ece6ae30ca964c82c433b775e2d73c0effd1576ca702c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ba15af3e9760dc4c4a6ecc0a0783a5ee5e2fc12f5a72b09b7aa4d7dfd1e6359250ad8c01ec0b8c7d166bad643ac53c51d2bfd54ca8afcc13425a3d5ec383dd8
|
7
|
+
data.tar.gz: 33eb8917565b5599626ee9dea7148c1560c2c62187f32efe82064a755d7128461c64deeea1ed9b275d26fdf52f26143bbbeac6616705f5c323cf8c2ce1cec118
|
data/CHANGELOG.md
CHANGED
@@ -3362,6 +3362,20 @@ module Google
|
|
3362
3362
|
# @return [String]
|
3363
3363
|
attr_accessor :timestamp_format
|
3364
3364
|
|
3365
|
+
# Precisions (maximum number of total digits in base 10) for seconds of
|
3366
|
+
# TIMESTAMP types that are allowed to the destination table for autodetection
|
3367
|
+
# mode. Available for the formats: CSV. For the CSV Format, Possible values
|
3368
|
+
# include: Not Specified, [], or [6]: timestamp(6) for all auto detected
|
3369
|
+
# TIMESTAMP columns [6, 12]: timestamp(6) for all auto detected TIMESTAMP
|
3370
|
+
# columns that have less than 6 digits of subseconds. timestamp(12) for all auto
|
3371
|
+
# detected TIMESTAMP columns that have more than 6 digits of subseconds. [12]:
|
3372
|
+
# timestamp(12) for all auto detected TIMESTAMP columns. The order of the
|
3373
|
+
# elements in this array is ignored. Inputs that have higher precision than the
|
3374
|
+
# highest target precision in this array will be truncated.
|
3375
|
+
# Corresponds to the JSON property `timestampTargetPrecision`
|
3376
|
+
# @return [Array<Fixnum>]
|
3377
|
+
attr_accessor :timestamp_target_precision
|
3378
|
+
|
3365
3379
|
def initialize(**args)
|
3366
3380
|
update!(**args)
|
3367
3381
|
end
|
@@ -3394,6 +3408,7 @@ module Google
|
|
3394
3408
|
@time_format = args[:time_format] if args.key?(:time_format)
|
3395
3409
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
3396
3410
|
@timestamp_format = args[:timestamp_format] if args.key?(:timestamp_format)
|
3411
|
+
@timestamp_target_precision = args[:timestamp_target_precision] if args.key?(:timestamp_target_precision)
|
3397
3412
|
end
|
3398
3413
|
end
|
3399
3414
|
|
@@ -4633,9 +4648,12 @@ module Google
|
|
4633
4648
|
# @return [Google::Apis::BigqueryV2::JobConfigurationLoad]
|
4634
4649
|
attr_accessor :load
|
4635
4650
|
|
4636
|
-
# Optional.
|
4637
|
-
#
|
4638
|
-
#
|
4651
|
+
# Optional. A target limit on the rate of slot consumption by this job. If set
|
4652
|
+
# to a value > 0, BigQuery will attempt to limit the rate of slot consumption by
|
4653
|
+
# this job to keep it below the configured limit, even if the job is eligible
|
4654
|
+
# for more slots based on fair scheduling. The unused slots will be available
|
4655
|
+
# for other jobs and queries to use. Note: This feature is not yet generally
|
4656
|
+
# available.
|
4639
4657
|
# Corresponds to the JSON property `maxSlots`
|
4640
4658
|
# @return [Fixnum]
|
4641
4659
|
attr_accessor :max_slots
|
@@ -5127,6 +5145,20 @@ module Google
|
|
5127
5145
|
# @return [String]
|
5128
5146
|
attr_accessor :timestamp_format
|
5129
5147
|
|
5148
|
+
# Precisions (maximum number of total digits in base 10) for seconds of
|
5149
|
+
# TIMESTAMP types that are allowed to the destination table for autodetection
|
5150
|
+
# mode. Available for the formats: CSV. For the CSV Format, Possible values
|
5151
|
+
# include: Not Specified, [], or [6]: timestamp(6) for all auto detected
|
5152
|
+
# TIMESTAMP columns [6, 12]: timestamp(6) for all auto detected TIMESTAMP
|
5153
|
+
# columns that have less than 6 digits of subseconds. timestamp(12) for all auto
|
5154
|
+
# detected TIMESTAMP columns that have more than 6 digits of subseconds. [12]:
|
5155
|
+
# timestamp(12) for all auto detected TIMESTAMP columns. The order of the
|
5156
|
+
# elements in this array is ignored. Inputs that have higher precision than the
|
5157
|
+
# highest target precision in this array will be truncated.
|
5158
|
+
# Corresponds to the JSON property `timestampTargetPrecision`
|
5159
|
+
# @return [Array<Fixnum>]
|
5160
|
+
attr_accessor :timestamp_target_precision
|
5161
|
+
|
5130
5162
|
# Optional. If sourceFormat is set to "AVRO", indicates whether to interpret
|
5131
5163
|
# logical types as the corresponding BigQuery data type (for example, TIMESTAMP),
|
5132
5164
|
# instead of using the raw type (for example, INTEGER).
|
@@ -5198,6 +5230,7 @@ module Google
|
|
5198
5230
|
@time_partitioning = args[:time_partitioning] if args.key?(:time_partitioning)
|
5199
5231
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
5200
5232
|
@timestamp_format = args[:timestamp_format] if args.key?(:timestamp_format)
|
5233
|
+
@timestamp_target_precision = args[:timestamp_target_precision] if args.key?(:timestamp_target_precision)
|
5201
5234
|
@use_avro_logical_types = args[:use_avro_logical_types] if args.key?(:use_avro_logical_types)
|
5202
5235
|
@write_disposition = args[:write_disposition] if args.key?(:write_disposition)
|
5203
5236
|
end
|
@@ -5791,6 +5824,15 @@ module Google
|
|
5791
5824
|
# @return [Array<String>]
|
5792
5825
|
attr_accessor :quota_deferments
|
5793
5826
|
|
5827
|
+
# Output only. The reservation group path of the reservation assigned to this
|
5828
|
+
# job. This field has a limit of 10 nested reservation groups. This is to
|
5829
|
+
# maintain consistency between reservatins info schema and jobs info schema. The
|
5830
|
+
# first reservation group is the root reservation group and the last is the leaf
|
5831
|
+
# or lowest level reservation group.
|
5832
|
+
# Corresponds to the JSON property `reservationGroupPath`
|
5833
|
+
# @return [Array<String>]
|
5834
|
+
attr_accessor :reservation_group_path
|
5835
|
+
|
5794
5836
|
# Output only. Job resource usage breakdown by reservation. This field reported
|
5795
5837
|
# misleading information and will no longer be populated.
|
5796
5838
|
# Corresponds to the JSON property `reservationUsage`
|
@@ -5860,6 +5902,7 @@ module Google
|
|
5860
5902
|
@parent_job_id = args[:parent_job_id] if args.key?(:parent_job_id)
|
5861
5903
|
@query = args[:query] if args.key?(:query)
|
5862
5904
|
@quota_deferments = args[:quota_deferments] if args.key?(:quota_deferments)
|
5905
|
+
@reservation_group_path = args[:reservation_group_path] if args.key?(:reservation_group_path)
|
5863
5906
|
@reservation_usage = args[:reservation_usage] if args.key?(:reservation_usage)
|
5864
5907
|
@reservation_id = args[:reservation_id] if args.key?(:reservation_id)
|
5865
5908
|
@row_level_security_statistics = args[:row_level_security_statistics] if args.key?(:row_level_security_statistics)
|
@@ -7982,10 +8025,12 @@ module Google
|
|
7982
8025
|
# @return [Fixnum]
|
7983
8026
|
attr_accessor :max_results
|
7984
8027
|
|
7985
|
-
# Optional.
|
7986
|
-
#
|
7987
|
-
#
|
7988
|
-
#
|
8028
|
+
# Optional. A target limit on the rate of slot consumption by this query. If set
|
8029
|
+
# to a value > 0, BigQuery will attempt to limit the rate of slot consumption by
|
8030
|
+
# this query to keep it below the configured limit, even if the query is
|
8031
|
+
# eligible for more slots based on fair scheduling. The unused slots will be
|
8032
|
+
# available for other jobs and queries to use. Note: This feature is not yet
|
8033
|
+
# generally available.
|
7989
8034
|
# Corresponds to the JSON property `maxSlots`
|
7990
8035
|
# @return [Fixnum]
|
7991
8036
|
attr_accessor :max_slots
|
@@ -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.95.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250928"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2167,6 +2167,7 @@ module Google
|
|
2167
2167
|
property :time_format, as: 'timeFormat'
|
2168
2168
|
property :time_zone, as: 'timeZone'
|
2169
2169
|
property :timestamp_format, as: 'timestampFormat'
|
2170
|
+
collection :timestamp_target_precision, as: 'timestampTargetPrecision'
|
2170
2171
|
end
|
2171
2172
|
end
|
2172
2173
|
|
@@ -2596,6 +2597,7 @@ module Google
|
|
2596
2597
|
|
2597
2598
|
property :time_zone, as: 'timeZone'
|
2598
2599
|
property :timestamp_format, as: 'timestampFormat'
|
2600
|
+
collection :timestamp_target_precision, as: 'timestampTargetPrecision'
|
2599
2601
|
property :use_avro_logical_types, as: 'useAvroLogicalTypes'
|
2600
2602
|
property :write_disposition, as: 'writeDisposition'
|
2601
2603
|
end
|
@@ -2735,6 +2737,7 @@ module Google
|
|
2735
2737
|
property :query, as: 'query', class: Google::Apis::BigqueryV2::JobStatistics2, decorator: Google::Apis::BigqueryV2::JobStatistics2::Representation
|
2736
2738
|
|
2737
2739
|
collection :quota_deferments, as: 'quotaDeferments'
|
2740
|
+
collection :reservation_group_path, as: 'reservationGroupPath'
|
2738
2741
|
collection :reservation_usage, as: 'reservationUsage', class: Google::Apis::BigqueryV2::JobStatistics::ReservationUsage, decorator: Google::Apis::BigqueryV2::JobStatistics::ReservationUsage::Representation
|
2739
2742
|
|
2740
2743
|
property :reservation_id, as: 'reservation_id'
|
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.95.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.95.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:
|