google-apis-bigquery_v2 0.71.0 → 0.72.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/bigquery_v2/classes.rb +19 -11
- data/lib/google/apis/bigquery_v2/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d7038ac09945fd805691e3fe0865f4535c9cc55c756ce26ecd17fcd697029abc
|
|
4
|
+
data.tar.gz: 76af76a2e31e2eb3c2d1c0bb83e21c50e768ea276bfe24d006698a7520ec2bf5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3535ab6c7a52ccbc0bfb64f8b98f7c123ce4feeb4c28dfb28b681ff203a763c8c9d36c4c1aaadd47f46c890580e2ce53051a8e726f190a8274840afa58d9152
|
|
7
|
+
data.tar.gz: 1782977ddeafd3ce28154d8b5c070cfa33309977bb6ece07992189a724c7d2508ec2ed36e8a8b30fc5aa1e7dfd84b8039afa514fd0cdb534b7c285b3e5be8ac3
|
data/CHANGELOG.md
CHANGED
|
@@ -1495,9 +1495,12 @@ module Google
|
|
|
1495
1495
|
# If set, all subsequent queries in a script or session will have this label.
|
|
1496
1496
|
# For the format in which a you can specify a query label, see labels in the
|
|
1497
1497
|
# JobConfiguration resource type: https://cloud.google.com/bigquery/docs/
|
|
1498
|
-
# reference/rest/v2/Job#jobconfiguration
|
|
1499
|
-
#
|
|
1500
|
-
#
|
|
1498
|
+
# reference/rest/v2/Job#jobconfiguration * **service_account**: indicates the
|
|
1499
|
+
# service account to use to run a continuous query. If set, the query job uses
|
|
1500
|
+
# the service account to access Google Cloud resources. Service account access
|
|
1501
|
+
# is bounded by the IAM permissions that you have granted to the service account.
|
|
1502
|
+
# Additional properties are allowed, but ignored. Specifying multiple
|
|
1503
|
+
# connection properties with the same key returns an error.
|
|
1501
1504
|
class ConnectionProperty
|
|
1502
1505
|
include Google::Apis::Core::Hashable
|
|
1503
1506
|
|
|
@@ -6912,7 +6915,7 @@ module Google
|
|
|
6912
6915
|
class PartitionedColumn
|
|
6913
6916
|
include Google::Apis::Core::Hashable
|
|
6914
6917
|
|
|
6915
|
-
#
|
|
6918
|
+
# Required. The name of the partition column.
|
|
6916
6919
|
# Corresponds to the JSON property `field`
|
|
6917
6920
|
# @return [String]
|
|
6918
6921
|
attr_accessor :field
|
|
@@ -6927,14 +6930,19 @@ module Google
|
|
|
6927
6930
|
end
|
|
6928
6931
|
end
|
|
6929
6932
|
|
|
6930
|
-
# The partitioning information, which includes managed table
|
|
6931
|
-
# partition information.
|
|
6933
|
+
# The partitioning information, which includes managed table, external table and
|
|
6934
|
+
# metastore partitioned table partition information.
|
|
6932
6935
|
class PartitioningDefinition
|
|
6933
6936
|
include Google::Apis::Core::Hashable
|
|
6934
6937
|
|
|
6935
|
-
#
|
|
6936
|
-
#
|
|
6937
|
-
# partitioning
|
|
6938
|
+
# Optional. Details about each partitioning column. This field is output only
|
|
6939
|
+
# for all partitioning types other than metastore partitioned tables. BigQuery
|
|
6940
|
+
# native tables only support 1 partitioning column. Other table types may
|
|
6941
|
+
# support 0, 1 or more partitioning columns. For metastore partitioned tables,
|
|
6942
|
+
# the order must match the definition order in the Hive Metastore, where it must
|
|
6943
|
+
# match the physical layout of the table. For example, CREATE TABLE a_table(id
|
|
6944
|
+
# BIGINT, name STRING) PARTITIONED BY (city STRING, state STRING). In this case
|
|
6945
|
+
# the values must be ['city', 'state'] in that order.
|
|
6938
6946
|
# Corresponds to the JSON property `partitionedColumn`
|
|
6939
6947
|
# @return [Array<Google::Apis::BigqueryV2::PartitionedColumn>]
|
|
6940
6948
|
attr_accessor :partitioned_column
|
|
@@ -9421,8 +9429,8 @@ module Google
|
|
|
9421
9429
|
# @return [Fixnum]
|
|
9422
9430
|
attr_accessor :num_total_physical_bytes
|
|
9423
9431
|
|
|
9424
|
-
# The partitioning information, which includes managed table
|
|
9425
|
-
# partition information.
|
|
9432
|
+
# The partitioning information, which includes managed table, external table and
|
|
9433
|
+
# metastore partitioned table partition information.
|
|
9426
9434
|
# Corresponds to the JSON property `partitionDefinition`
|
|
9427
9435
|
# @return [Google::Apis::BigqueryV2::PartitioningDefinition]
|
|
9428
9436
|
attr_accessor :partition_definition
|
|
@@ -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.72.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240616"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.72.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-06-
|
|
11
|
+
date: 2024-06-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.72.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|