google-apis-bigquery_v2 0.42.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: ea4e5c7899229437a43cb7f960ffcd569e01579597a1615369413812a28c3035
4
- data.tar.gz: 2fe091670981e7dc88bc8a44f4442990fcd365732b798fa6ef6b9944c8aaa3c2
3
+ metadata.gz: c0e5351b3734cdc2de97dd63fb89e81e9209e069dd4ea04b5127909a0872a2a5
4
+ data.tar.gz: 7ca4862996d29c733b127dfb3562105097a66fbcdc9a6743c0ddd58acb2f1b86
5
5
  SHA512:
6
- metadata.gz: 7a966c13c3efef972df3b44a0bb650b3a845f84781634266b7f6d786f8064a0625a54c99f4f4806ee9de0f98b77014266bc2e97b55d7a124ddd67137ebf73923
7
- data.tar.gz: 49b89b1d3a1260ab696c19a99ad096a1ca69e2f21e8f19c18c85124101b1015b9afdc2045b7f971720252a825cc4e2a4c54b1daa05d5a2535a1edb8cbd96c1dc
6
+ metadata.gz: f942c1236d4cda5c99c31de92ba7cd7ac1094f72320f4f57b6bf7e23b91058bb6f6fcba7557f0ba12ac9b996183d6597d2fa613ec945763139b2e0e73e147225
7
+ data.tar.gz: 43905c5319a99a7d5b8d1f40ea6c4b8618e03fc8a0cb82b707c1940c0c19f60052d9517b40df16691917132f1ca67672d7f9509545eee9a7b587cd95598ceea0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.42.0 (2022-10-11)
4
9
 
5
10
  * Regenerated from discovery document revision 20220924
@@ -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)
@@ -5108,7 +5131,8 @@ module Google
5108
5131
 
5109
5132
  # Routines in the requested dataset. Unless read_mask is set in the request,
5110
5133
  # only the following fields are populated: etag, project_id, dataset_id,
5111
- # routine_id, routine_type, creation_time, last_modified_time, and language.
5134
+ # routine_id, routine_type, creation_time, last_modified_time, language, and
5135
+ # remote_function_options.
5112
5136
  # Corresponds to the JSON property `routines`
5113
5137
  # @return [Array<Google::Apis::BigqueryV2::Routine>]
5114
5138
  attr_accessor :routines
@@ -5174,6 +5198,13 @@ module Google
5174
5198
  class MaterializedViewDefinition
5175
5199
  include Google::Apis::Core::Hashable
5176
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
+
5177
5208
  # [Optional] [TrustedTester] Enable automatic refresh of the materialized view
5178
5209
  # when the base table is updated. The default value is "true".
5179
5210
  # Corresponds to the JSON property `enableRefresh`
@@ -5211,6 +5242,7 @@ module Google
5211
5242
 
5212
5243
  # Update properties of this object
5213
5244
  def update!(**args)
5245
+ @allow_non_incremental_definition = args[:allow_non_incremental_definition] if args.key?(:allow_non_incremental_definition)
5214
5246
  @enable_refresh = args[:enable_refresh] if args.key?(:enable_refresh)
5215
5247
  @last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
5216
5248
  @max_staleness = args[:max_staleness] if args.key?(:max_staleness)
@@ -6488,7 +6520,8 @@ module Google
6488
6520
  # @return [Array<String>]
6489
6521
  attr_accessor :imported_libraries
6490
6522
 
6491
- # Optional. Defaults to "SQL".
6523
+ # Optional. Defaults to "SQL" if remote_function_options field is absent, not
6524
+ # set otherwise.
6492
6525
  # Corresponds to the JSON property `language`
6493
6526
  # @return [String]
6494
6527
  attr_accessor :language
@@ -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.42.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.10.0"
22
+ GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220924"
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'
@@ -2299,6 +2302,7 @@ module Google
2299
2302
  class MaterializedViewDefinition
2300
2303
  # @private
2301
2304
  class Representation < Google::Apis::Core::JsonRepresentation
2305
+ property :allow_non_incremental_definition, as: 'allow_non_incremental_definition'
2302
2306
  property :enable_refresh, as: 'enableRefresh'
2303
2307
  property :last_refresh_time, :numeric_string => true, as: 'lastRefreshTime'
2304
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.42.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-10-17 00:00:00.000000000 Z
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.0
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.0
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.42.0
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: []