google-apis-bigquery_v2 0.41.0 → 0.43.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: c0e5351b3734cdc2de97dd63fb89e81e9209e069dd4ea04b5127909a0872a2a5
|
|
4
|
+
data.tar.gz: 7ca4862996d29c733b127dfb3562105097a66fbcdc9a6743c0ddd58acb2f1b86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f942c1236d4cda5c99c31de92ba7cd7ac1094f72320f4f57b6bf7e23b91058bb6f6fcba7557f0ba12ac9b996183d6597d2fa613ec945763139b2e0e73e147225
|
|
7
|
+
data.tar.gz: 43905c5319a99a7d5b8d1f40ea6c4b8618e03fc8a0cb82b707c1940c0c19f60052d9517b40df16691917132f1ca67672d7f9509545eee9a7b587cd95598ceea0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-bigquery_v2
|
|
2
2
|
|
|
3
|
+
### v0.43.0 (2022-12-11)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20221127
|
|
6
|
+
* Regenerated using generator version 0.11.0
|
|
7
|
+
|
|
8
|
+
### v0.42.0 (2022-10-11)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20220924
|
|
11
|
+
|
|
3
12
|
### v0.41.0 (2022-09-22)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20220913
|
|
@@ -1693,6 +1693,12 @@ module Google
|
|
|
1693
1693
|
# @return [String]
|
|
1694
1694
|
attr_accessor :self_link
|
|
1695
1695
|
|
|
1696
|
+
# [Optional] Storage billing model to be used for all tables in the dataset. Can
|
|
1697
|
+
# be set to PHYSICAL. Default is LOGICAL.
|
|
1698
|
+
# Corresponds to the JSON property `storageBillingModel`
|
|
1699
|
+
# @return [String]
|
|
1700
|
+
attr_accessor :storage_billing_model
|
|
1701
|
+
|
|
1696
1702
|
# [Optional]The tags associated with this dataset. Tag keys are globally unique.
|
|
1697
1703
|
# Corresponds to the JSON property `tags`
|
|
1698
1704
|
# @return [Array<Google::Apis::BigqueryV2::Dataset::Tag>]
|
|
@@ -1723,6 +1729,7 @@ module Google
|
|
|
1723
1729
|
@max_time_travel_hours = args[:max_time_travel_hours] if args.key?(:max_time_travel_hours)
|
|
1724
1730
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
1725
1731
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
1732
|
+
@storage_billing_model = args[:storage_billing_model] if args.key?(:storage_billing_model)
|
|
1726
1733
|
@tags = args[:tags] if args.key?(:tags)
|
|
1727
1734
|
end
|
|
1728
1735
|
|
|
@@ -2690,6 +2697,20 @@ module Google
|
|
|
2690
2697
|
# @return [Fixnum]
|
|
2691
2698
|
attr_accessor :max_bad_records
|
|
2692
2699
|
|
|
2700
|
+
# [Optional] Metadata Cache Mode for the table. Set this to enable caching of
|
|
2701
|
+
# metadata from external data source.
|
|
2702
|
+
# Corresponds to the JSON property `metadataCacheMode`
|
|
2703
|
+
# @return [String]
|
|
2704
|
+
attr_accessor :metadata_cache_mode
|
|
2705
|
+
|
|
2706
|
+
# ObjectMetadata is used to create Object Tables. Object Tables contain a
|
|
2707
|
+
# listing of objects (with their metadata) found at the source_uris. If
|
|
2708
|
+
# ObjectMetadata is set, source_format should be omitted. Currently SIMPLE is
|
|
2709
|
+
# the only supported Object Metadata type.
|
|
2710
|
+
# Corresponds to the JSON property `objectMetadata`
|
|
2711
|
+
# @return [String]
|
|
2712
|
+
attr_accessor :object_metadata
|
|
2713
|
+
|
|
2693
2714
|
# Additional properties to set if sourceFormat is set to Parquet.
|
|
2694
2715
|
# Corresponds to the JSON property `parquetOptions`
|
|
2695
2716
|
# @return [Google::Apis::BigqueryV2::ParquetOptions]
|
|
@@ -2745,6 +2766,8 @@ module Google
|
|
|
2745
2766
|
@hive_partitioning_options = args[:hive_partitioning_options] if args.key?(:hive_partitioning_options)
|
|
2746
2767
|
@ignore_unknown_values = args[:ignore_unknown_values] if args.key?(:ignore_unknown_values)
|
|
2747
2768
|
@max_bad_records = args[:max_bad_records] if args.key?(:max_bad_records)
|
|
2769
|
+
@metadata_cache_mode = args[:metadata_cache_mode] if args.key?(:metadata_cache_mode)
|
|
2770
|
+
@object_metadata = args[:object_metadata] if args.key?(:object_metadata)
|
|
2748
2771
|
@parquet_options = args[:parquet_options] if args.key?(:parquet_options)
|
|
2749
2772
|
@reference_file_schema_uri = args[:reference_file_schema_uri] if args.key?(:reference_file_schema_uri)
|
|
2750
2773
|
@schema = args[:schema] if args.key?(:schema)
|
|
@@ -4856,6 +4879,12 @@ module Google
|
|
|
4856
4879
|
# @return [Fixnum]
|
|
4857
4880
|
attr_accessor :total_slot_ms
|
|
4858
4881
|
|
|
4882
|
+
# [Output-only] Total bytes transferred for cross-cloud queries such as Cross
|
|
4883
|
+
# Cloud Transfer and CREATE TABLE AS SELECT (CTAS).
|
|
4884
|
+
# Corresponds to the JSON property `transferredBytes`
|
|
4885
|
+
# @return [Fixnum]
|
|
4886
|
+
attr_accessor :transferred_bytes
|
|
4887
|
+
|
|
4859
4888
|
# Standard SQL only: list of undeclared query parameters detected during a dry
|
|
4860
4889
|
# run validation.
|
|
4861
4890
|
# Corresponds to the JSON property `undeclaredQueryParameters`
|
|
@@ -4899,6 +4928,7 @@ module Google
|
|
|
4899
4928
|
@total_bytes_processed_accuracy = args[:total_bytes_processed_accuracy] if args.key?(:total_bytes_processed_accuracy)
|
|
4900
4929
|
@total_partitions_processed = args[:total_partitions_processed] if args.key?(:total_partitions_processed)
|
|
4901
4930
|
@total_slot_ms = args[:total_slot_ms] if args.key?(:total_slot_ms)
|
|
4931
|
+
@transferred_bytes = args[:transferred_bytes] if args.key?(:transferred_bytes)
|
|
4902
4932
|
@undeclared_query_parameters = args[:undeclared_query_parameters] if args.key?(:undeclared_query_parameters)
|
|
4903
4933
|
end
|
|
4904
4934
|
|
|
@@ -5101,7 +5131,8 @@ module Google
|
|
|
5101
5131
|
|
|
5102
5132
|
# Routines in the requested dataset. Unless read_mask is set in the request,
|
|
5103
5133
|
# only the following fields are populated: etag, project_id, dataset_id,
|
|
5104
|
-
# routine_id, routine_type, creation_time, last_modified_time, and
|
|
5134
|
+
# routine_id, routine_type, creation_time, last_modified_time, language, and
|
|
5135
|
+
# remote_function_options.
|
|
5105
5136
|
# Corresponds to the JSON property `routines`
|
|
5106
5137
|
# @return [Array<Google::Apis::BigqueryV2::Routine>]
|
|
5107
5138
|
attr_accessor :routines
|
|
@@ -5167,6 +5198,13 @@ module Google
|
|
|
5167
5198
|
class MaterializedViewDefinition
|
|
5168
5199
|
include Google::Apis::Core::Hashable
|
|
5169
5200
|
|
|
5201
|
+
# [Optional] Allow non incremental materialized view definition. The default
|
|
5202
|
+
# value is "false".
|
|
5203
|
+
# Corresponds to the JSON property `allow_non_incremental_definition`
|
|
5204
|
+
# @return [Boolean]
|
|
5205
|
+
attr_accessor :allow_non_incremental_definition
|
|
5206
|
+
alias_method :allow_non_incremental_definition?, :allow_non_incremental_definition
|
|
5207
|
+
|
|
5170
5208
|
# [Optional] [TrustedTester] Enable automatic refresh of the materialized view
|
|
5171
5209
|
# when the base table is updated. The default value is "true".
|
|
5172
5210
|
# Corresponds to the JSON property `enableRefresh`
|
|
@@ -5204,6 +5242,7 @@ module Google
|
|
|
5204
5242
|
|
|
5205
5243
|
# Update properties of this object
|
|
5206
5244
|
def update!(**args)
|
|
5245
|
+
@allow_non_incremental_definition = args[:allow_non_incremental_definition] if args.key?(:allow_non_incremental_definition)
|
|
5207
5246
|
@enable_refresh = args[:enable_refresh] if args.key?(:enable_refresh)
|
|
5208
5247
|
@last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
|
|
5209
5248
|
@max_staleness = args[:max_staleness] if args.key?(:max_staleness)
|
|
@@ -6481,7 +6520,8 @@ module Google
|
|
|
6481
6520
|
# @return [Array<String>]
|
|
6482
6521
|
attr_accessor :imported_libraries
|
|
6483
6522
|
|
|
6484
|
-
# Optional. Defaults to "SQL"
|
|
6523
|
+
# Optional. Defaults to "SQL" if remote_function_options field is absent, not
|
|
6524
|
+
# set otherwise.
|
|
6485
6525
|
# Corresponds to the JSON property `language`
|
|
6486
6526
|
# @return [String]
|
|
6487
6527
|
attr_accessor :language
|
|
@@ -8695,13 +8735,14 @@ module Google
|
|
|
8695
8735
|
# @return [Fixnum]
|
|
8696
8736
|
attr_accessor :training_start_time
|
|
8697
8737
|
|
|
8698
|
-
# The model id in Vertex AI Model Registry
|
|
8738
|
+
# The model id in the [Vertex AI Model Registry](https://cloud.google.com/vertex-
|
|
8739
|
+
# ai/docs/model-registry/introduction) for this training run.
|
|
8699
8740
|
# Corresponds to the JSON property `vertexAiModelId`
|
|
8700
8741
|
# @return [String]
|
|
8701
8742
|
attr_accessor :vertex_ai_model_id
|
|
8702
8743
|
|
|
8703
|
-
# Output only. The model version in Vertex AI Model Registry
|
|
8704
|
-
# run
|
|
8744
|
+
# Output only. The model version in the [Vertex AI Model Registry](https://cloud.
|
|
8745
|
+
# google.com/vertex-ai/docs/model-registry/introduction) for this training run.
|
|
8705
8746
|
# Corresponds to the JSON property `vertexAiModelVersion`
|
|
8706
8747
|
# @return [String]
|
|
8707
8748
|
attr_accessor :vertex_ai_model_version
|
|
@@ -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.43.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20221127"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1431,6 +1431,7 @@ module Google
|
|
|
1431
1431
|
property :max_time_travel_hours, :numeric_string => true, as: 'maxTimeTravelHours'
|
|
1432
1432
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
1433
1433
|
property :self_link, as: 'selfLink'
|
|
1434
|
+
property :storage_billing_model, as: 'storageBillingModel'
|
|
1434
1435
|
collection :tags, as: 'tags', class: Google::Apis::BigqueryV2::Dataset::Tag, decorator: Google::Apis::BigqueryV2::Dataset::Tag::Representation
|
|
1435
1436
|
|
|
1436
1437
|
end
|
|
@@ -1682,6 +1683,8 @@ module Google
|
|
|
1682
1683
|
|
|
1683
1684
|
property :ignore_unknown_values, as: 'ignoreUnknownValues'
|
|
1684
1685
|
property :max_bad_records, as: 'maxBadRecords'
|
|
1686
|
+
property :metadata_cache_mode, as: 'metadataCacheMode'
|
|
1687
|
+
property :object_metadata, as: 'objectMetadata'
|
|
1685
1688
|
property :parquet_options, as: 'parquetOptions', class: Google::Apis::BigqueryV2::ParquetOptions, decorator: Google::Apis::BigqueryV2::ParquetOptions::Representation
|
|
1686
1689
|
|
|
1687
1690
|
property :reference_file_schema_uri, as: 'referenceFileSchemaUri'
|
|
@@ -2210,6 +2213,7 @@ module Google
|
|
|
2210
2213
|
property :total_bytes_processed_accuracy, as: 'totalBytesProcessedAccuracy'
|
|
2211
2214
|
property :total_partitions_processed, :numeric_string => true, as: 'totalPartitionsProcessed'
|
|
2212
2215
|
property :total_slot_ms, :numeric_string => true, as: 'totalSlotMs'
|
|
2216
|
+
property :transferred_bytes, :numeric_string => true, as: 'transferredBytes'
|
|
2213
2217
|
collection :undeclared_query_parameters, as: 'undeclaredQueryParameters', class: Google::Apis::BigqueryV2::QueryParameter, decorator: Google::Apis::BigqueryV2::QueryParameter::Representation
|
|
2214
2218
|
|
|
2215
2219
|
end
|
|
@@ -2298,6 +2302,7 @@ module Google
|
|
|
2298
2302
|
class MaterializedViewDefinition
|
|
2299
2303
|
# @private
|
|
2300
2304
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2305
|
+
property :allow_non_incremental_definition, as: 'allow_non_incremental_definition'
|
|
2301
2306
|
property :enable_refresh, as: 'enableRefresh'
|
|
2302
2307
|
property :last_refresh_time, :numeric_string => true, as: 'lastRefreshTime'
|
|
2303
2308
|
property :max_staleness, :base64 => true, as: 'maxStaleness'
|
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.43.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: 2022-
|
|
11
|
+
date: 2022-12-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.9.
|
|
19
|
+
version: 0.9.1
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 2.a
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.9.
|
|
29
|
+
version: 0.9.1
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 2.a
|
|
@@ -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.43.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: []
|