google-apis-bigquery_v2 0.80.0 → 0.81.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: 79f797aca4481ce0a3e593c30ff965d0ff4d7aa1629ca15681215adc0a881927
|
|
4
|
+
data.tar.gz: 24bfd38515ad70498b60d19a49b16a846b777953f819b128562de8c3bd8d79b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1405e137e8bb16bb5d537addcf773baddfa2ffffad1a17720baea4599ff2f80b54c1a2d26a73c27282d4d5d241b18e960ec6fdb4caf52f5e3694a65c2049dae7
|
|
7
|
+
data.tar.gz: e3910d4acee81538f893601532618983c74962411ac10efb4ad1e075ebb7f71c798fba8eb72d5c104fb50fc796a7472cd2ad0842faa92b3ade686e88357c31d6
|
data/CHANGELOG.md
CHANGED
|
@@ -666,7 +666,7 @@ module Google
|
|
|
666
666
|
class BigLakeConfiguration
|
|
667
667
|
include Google::Apis::Core::Hashable
|
|
668
668
|
|
|
669
|
-
#
|
|
669
|
+
# Optional. The connection specifying the credentials to be used to read and
|
|
670
670
|
# write to external storage, such as Cloud Storage. The connection_id can have
|
|
671
671
|
# the form ``project`.`location`.`connection_id`` or `projects/`project`/
|
|
672
672
|
# locations/`location`/connections/`connection_id`".
|
|
@@ -674,19 +674,19 @@ module Google
|
|
|
674
674
|
# @return [String]
|
|
675
675
|
attr_accessor :connection_id
|
|
676
676
|
|
|
677
|
-
#
|
|
677
|
+
# Optional. The file format the table data is stored in.
|
|
678
678
|
# Corresponds to the JSON property `fileFormat`
|
|
679
679
|
# @return [String]
|
|
680
680
|
attr_accessor :file_format
|
|
681
681
|
|
|
682
|
-
#
|
|
682
|
+
# Optional. The fully qualified location prefix of the external folder where
|
|
683
683
|
# table data is stored. The '*' wildcard character is not allowed. The URI
|
|
684
684
|
# should be in the format `gs://bucket/path_to_table/`
|
|
685
685
|
# Corresponds to the JSON property `storageUri`
|
|
686
686
|
# @return [String]
|
|
687
687
|
attr_accessor :storage_uri
|
|
688
688
|
|
|
689
|
-
#
|
|
689
|
+
# Optional. The table format the metadata only snapshots are stored in.
|
|
690
690
|
# Corresponds to the JSON property `tableFormat`
|
|
691
691
|
# @return [String]
|
|
692
692
|
attr_accessor :table_format
|
|
@@ -9391,6 +9391,12 @@ module Google
|
|
|
9391
9391
|
# @return [String]
|
|
9392
9392
|
attr_accessor :location
|
|
9393
9393
|
|
|
9394
|
+
# Optional. If set, overrides the default managed table type configured in the
|
|
9395
|
+
# dataset.
|
|
9396
|
+
# Corresponds to the JSON property `managedTableType`
|
|
9397
|
+
# @return [String]
|
|
9398
|
+
attr_accessor :managed_table_type
|
|
9399
|
+
|
|
9394
9400
|
# Definition and configuration of a materialized view.
|
|
9395
9401
|
# Corresponds to the JSON property `materializedView`
|
|
9396
9402
|
# @return [Google::Apis::BigqueryV2::MaterializedViewDefinition]
|
|
@@ -9619,6 +9625,7 @@ module Google
|
|
|
9619
9625
|
@labels = args[:labels] if args.key?(:labels)
|
|
9620
9626
|
@last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
|
|
9621
9627
|
@location = args[:location] if args.key?(:location)
|
|
9628
|
+
@managed_table_type = args[:managed_table_type] if args.key?(:managed_table_type)
|
|
9622
9629
|
@materialized_view = args[:materialized_view] if args.key?(:materialized_view)
|
|
9623
9630
|
@materialized_view_status = args[:materialized_view_status] if args.key?(:materialized_view_status)
|
|
9624
9631
|
@max_staleness = args[:max_staleness] if args.key?(:max_staleness)
|
|
@@ -10724,7 +10731,7 @@ module Google
|
|
|
10724
10731
|
|
|
10725
10732
|
# The contribution metric. Applies to contribution analysis models. Allowed
|
|
10726
10733
|
# formats supported are for summable and summable ratio contribution metrics.
|
|
10727
|
-
# These include expressions such as
|
|
10734
|
+
# These include expressions such as `SUM(x)` or `SUM(x)/SUM(y)`, where x and y
|
|
10728
10735
|
# are column names from the base table.
|
|
10729
10736
|
# Corresponds to the JSON property `contributionMetric`
|
|
10730
10737
|
# @return [String]
|
|
@@ -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.81.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20241111"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3630,6 +3630,7 @@ module Google
|
|
|
3630
3630
|
hash :labels, as: 'labels'
|
|
3631
3631
|
property :last_modified_time, :numeric_string => true, as: 'lastModifiedTime'
|
|
3632
3632
|
property :location, as: 'location'
|
|
3633
|
+
property :managed_table_type, as: 'managedTableType'
|
|
3633
3634
|
property :materialized_view, as: 'materializedView', class: Google::Apis::BigqueryV2::MaterializedViewDefinition, decorator: Google::Apis::BigqueryV2::MaterializedViewDefinition::Representation
|
|
3634
3635
|
|
|
3635
3636
|
property :materialized_view_status, as: 'materializedViewStatus', class: Google::Apis::BigqueryV2::MaterializedViewStatus, decorator: Google::Apis::BigqueryV2::MaterializedViewStatus::Representation
|
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.81.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-
|
|
11
|
+
date: 2024-12-04 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.81.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: []
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.5.
|
|
78
|
+
rubygems_version: 3.5.22
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for BigQuery API V2
|