google-apis-bigquery_v2 0.92.0 → 0.93.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: d842ed8d9b1ec592876711304fae52ccda526bf4e3e9af31e08da64662c9e45f
|
4
|
+
data.tar.gz: 7887dab2ab44e700d8bc3f3e49d04fa2499ef05747807dae89b256a3e24b2ecc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20860e093d69d19f908393ddd0effff45ade8a0337d081077b925ad54734050eb40c30eec7b356bea4145727c799230b8efc1880bd81e704517408ea4af409c1
|
7
|
+
data.tar.gz: c1494ea8caaa41cf11296afa2e39e5c6231a8f6955ee611ba5ac39c4ab281a8d2a74a52b83d7a8eff57c9288b9cd345921947cdafb13463bf1b96ab9090f4ead
|
data/CHANGELOG.md
CHANGED
@@ -1732,8 +1732,9 @@ module Google
|
|
1732
1732
|
end
|
1733
1733
|
end
|
1734
1734
|
|
1735
|
-
# Data policy option
|
1736
|
-
#
|
1735
|
+
# Data policy option. For more information, see [Mask data by applying data
|
1736
|
+
# policies to a column](https://cloud.google.com/bigquery/docs/column-data-
|
1737
|
+
# masking#data-policies-on-column/).
|
1737
1738
|
class DataPolicyOption
|
1738
1739
|
include Google::Apis::Core::Hashable
|
1739
1740
|
|
@@ -4567,6 +4568,13 @@ module Google
|
|
4567
4568
|
# @return [Google::Apis::BigqueryV2::JobConfigurationLoad]
|
4568
4569
|
attr_accessor :load
|
4569
4570
|
|
4571
|
+
# Optional. INTERNAL: DO NOT USE. The maximum rate of slot consumption to allow
|
4572
|
+
# for this job. If set, the number of slots used to execute the job will be
|
4573
|
+
# throttled to try and keep its slot consumption below the requested rate.
|
4574
|
+
# Corresponds to the JSON property `maxSlots`
|
4575
|
+
# @return [Fixnum]
|
4576
|
+
attr_accessor :max_slots
|
4577
|
+
|
4570
4578
|
# JobConfigurationQuery configures a BigQuery query job.
|
4571
4579
|
# Corresponds to the JSON property `query`
|
4572
4580
|
# @return [Google::Apis::BigqueryV2::JobConfigurationQuery]
|
@@ -4593,6 +4601,7 @@ module Google
|
|
4593
4601
|
@job_type = args[:job_type] if args.key?(:job_type)
|
4594
4602
|
@labels = args[:labels] if args.key?(:labels)
|
4595
4603
|
@load = args[:load] if args.key?(:load)
|
4604
|
+
@max_slots = args[:max_slots] if args.key?(:max_slots)
|
4596
4605
|
@query = args[:query] if args.key?(:query)
|
4597
4606
|
@reservation = args[:reservation] if args.key?(:reservation)
|
4598
4607
|
end
|
@@ -7868,6 +7877,14 @@ module Google
|
|
7868
7877
|
# @return [Fixnum]
|
7869
7878
|
attr_accessor :max_results
|
7870
7879
|
|
7880
|
+
# Optional. INTERNAL: DO NOT USE. The maximum rate of slot consumption to allow
|
7881
|
+
# for this job. If set, the number of slots used to execute the job will be
|
7882
|
+
# throttled to try and keep its slot consumption below the requested rate. This
|
7883
|
+
# limit is best effort.
|
7884
|
+
# Corresponds to the JSON property `maxSlots`
|
7885
|
+
# @return [Fixnum]
|
7886
|
+
attr_accessor :max_slots
|
7887
|
+
|
7871
7888
|
# Optional. Limits the bytes billed for this query. Queries with bytes billed
|
7872
7889
|
# above this limit will fail (without incurring a charge). If unspecified, the
|
7873
7890
|
# project default is used.
|
@@ -7988,6 +8005,7 @@ module Google
|
|
7988
8005
|
@labels = args[:labels] if args.key?(:labels)
|
7989
8006
|
@location = args[:location] if args.key?(:location)
|
7990
8007
|
@max_results = args[:max_results] if args.key?(:max_results)
|
8008
|
+
@max_slots = args[:max_slots] if args.key?(:max_slots)
|
7991
8009
|
@maximum_bytes_billed = args[:maximum_bytes_billed] if args.key?(:maximum_bytes_billed)
|
7992
8010
|
@parameter_mode = args[:parameter_mode] if args.key?(:parameter_mode)
|
7993
8011
|
@preserve_nulls = args[:preserve_nulls] if args.key?(:preserve_nulls)
|
@@ -8544,15 +8562,16 @@ module Google
|
|
8544
8562
|
attr_accessor :data_governance_type
|
8545
8563
|
|
8546
8564
|
# Required. The body of the routine. For functions, this is the expression in
|
8547
|
-
# the AS clause. If language=SQL
|
8548
|
-
# parentheses. For example, for the function created with the
|
8549
|
-
# statement: `CREATE FUNCTION JoinLines(x string, y string) as (concat(
|
8550
|
-
# y))` The definition_body is `concat(x, "\n", y)` (\n is not replaced
|
8551
|
-
# linebreak). If language=JAVASCRIPT
|
8552
|
-
# clause. For example, for the function created with the following statement:
|
8553
|
-
# CREATE FUNCTION f() RETURNS STRING LANGUAGE js AS 'return "\n";\n'` The
|
8565
|
+
# the AS clause. If `language = "SQL"`, it is the substring inside (but
|
8566
|
+
# excluding) the parentheses. For example, for the function created with the
|
8567
|
+
# following statement: `CREATE FUNCTION JoinLines(x string, y string) as (concat(
|
8568
|
+
# x, "\n", y))` The definition_body is `concat(x, "\n", y)` (\n is not replaced
|
8569
|
+
# with linebreak). If `language="JAVASCRIPT"`, it is the evaluated string in the
|
8570
|
+
# AS clause. For example, for the function created with the following statement:
|
8571
|
+
# `CREATE FUNCTION f() RETURNS STRING LANGUAGE js AS 'return "\n";\n'` The
|
8554
8572
|
# definition_body is `return "\n";\n` Note that both \n are replaced with
|
8555
|
-
# linebreaks.
|
8573
|
+
# linebreaks. If `definition_body` references another routine, then that routine
|
8574
|
+
# must be fully qualified with its project ID.
|
8556
8575
|
# Corresponds to the JSON property `definitionBody`
|
8557
8576
|
# @return [String]
|
8558
8577
|
attr_accessor :definition_body
|
@@ -10486,7 +10505,8 @@ module Google
|
|
10486
10505
|
# @return [String]
|
10487
10506
|
attr_accessor :collation
|
10488
10507
|
|
10489
|
-
# Optional. Data
|
10508
|
+
# Optional. Data policies attached to this field, used for field-level access
|
10509
|
+
# control.
|
10490
10510
|
# Corresponds to the JSON property `dataPolicies`
|
10491
10511
|
# @return [Array<Google::Apis::BigqueryV2::DataPolicyOption>]
|
10492
10512
|
attr_accessor :data_policies
|
@@ -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.93.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 = "20250816"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2478,6 +2478,7 @@ module Google
|
|
2478
2478
|
hash :labels, as: 'labels'
|
2479
2479
|
property :load, as: 'load', class: Google::Apis::BigqueryV2::JobConfigurationLoad, decorator: Google::Apis::BigqueryV2::JobConfigurationLoad::Representation
|
2480
2480
|
|
2481
|
+
property :max_slots, as: 'maxSlots'
|
2481
2482
|
property :query, as: 'query', class: Google::Apis::BigqueryV2::JobConfigurationQuery, decorator: Google::Apis::BigqueryV2::JobConfigurationQuery::Representation
|
2482
2483
|
|
2483
2484
|
property :reservation, as: 'reservation'
|
@@ -3261,6 +3262,7 @@ module Google
|
|
3261
3262
|
hash :labels, as: 'labels'
|
3262
3263
|
property :location, as: 'location'
|
3263
3264
|
property :max_results, as: 'maxResults'
|
3265
|
+
property :max_slots, as: 'maxSlots'
|
3264
3266
|
property :maximum_bytes_billed, :numeric_string => true, as: 'maximumBytesBilled'
|
3265
3267
|
property :parameter_mode, as: 'parameterMode'
|
3266
3268
|
property :preserve_nulls, as: 'preserveNulls'
|
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.93.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.93.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:
|