google-apis-bigquery_v2 0.63.0 → 0.65.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: e5808ec746ce1c1f64ed885a932501703bc8e0ec49eed5ba1c52cbd25d48ef05
4
- data.tar.gz: b366a6b3324b07f926a554464e15d6bb33713cc7a95b0e0c32effadcf699b538
3
+ metadata.gz: a7e03cc94aa30abfb600d73c24f11b35996a824e27122c1db91f0d7602692518
4
+ data.tar.gz: e2b5995fed0a6850cd5714ae5f68b43f4e729ad145d1284563edbe94f9c688ad
5
5
  SHA512:
6
- metadata.gz: 680dd96160ea8be1a7c127a0df060dffe35f0f7b994b53ee636f5b5b6a7fcf0223a700f912cc1dd8c9562117aa1f07007b0555a71d60be6365f97f77dfe26df9
7
- data.tar.gz: 23b81ed776206bc6ea4fa59f59a3382867948507a759021dbeaa120aeea6be6ca7db140077a8b55ff444e75108f3c0aa3ab033c2a8525fee27df70e578bcec1e
6
+ metadata.gz: 43c9d599f82dad8f40b038a5845552dde604709b9e945c73606848f2462c504bc0a5ffb8ae7c5f204a0b18003d3086ec15b4952321202b79d49e1b7235e93bd6
7
+ data.tar.gz: eabb98731b0b213d45a135c068ae82e33fe7913c24c92b63028df534f5cc2b414f28e8b0038aa1c742c060ec466b1584fd44048c12a7f86c8c716963ffc1e366
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.65.0 (2024-02-24)
4
+
5
+ * Regenerated from discovery document revision 20240211
6
+ * Regenerated using generator version 0.14.0
7
+
8
+ ### v0.64.0 (2024-02-11)
9
+
10
+ * Regenerated from discovery document revision 20240203
11
+
3
12
  ### v0.63.0 (2024-01-28)
4
13
 
5
14
  * Regenerated from discovery document revision 20240124
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/bigquery/) may provide guid
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -1850,6 +1850,12 @@ module Google
1850
1850
  # @return [Fixnum]
1851
1851
  attr_accessor :max_time_travel_hours
1852
1852
 
1853
+ # Output only. Reserved for future use.
1854
+ # Corresponds to the JSON property `satisfiesPzi`
1855
+ # @return [Boolean]
1856
+ attr_accessor :satisfies_pzi
1857
+ alias_method :satisfies_pzi?, :satisfies_pzi
1858
+
1853
1859
  # Output only. Reserved for future use.
1854
1860
  # Corresponds to the JSON property `satisfiesPzs`
1855
1861
  # @return [Boolean]
@@ -1907,6 +1913,7 @@ module Google
1907
1913
  @linked_dataset_source = args[:linked_dataset_source] if args.key?(:linked_dataset_source)
1908
1914
  @location = args[:location] if args.key?(:location)
1909
1915
  @max_time_travel_hours = args[:max_time_travel_hours] if args.key?(:max_time_travel_hours)
1916
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
1910
1917
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1911
1918
  @self_link = args[:self_link] if args.key?(:self_link)
1912
1919
  @storage_billing_model = args[:storage_billing_model] if args.key?(:storage_billing_model)
@@ -4247,6 +4254,20 @@ module Google
4247
4254
  # @return [Array<Google::Apis::BigqueryV2::ConnectionProperty>]
4248
4255
  attr_accessor :connection_properties
4249
4256
 
4257
+ # Optional. [Experimental] Configures the load job to only copy files to the
4258
+ # destination BigLake managed table with an external storage_uri, without
4259
+ # reading file content and writing them to new files. Copying files only is
4260
+ # supported when: * source_uris are in the same external storage system as the
4261
+ # destination table but they do not overlap with storage_uri of the destination
4262
+ # table. * source_format is the same file format as the destination table. *
4263
+ # destination_table is an existing BigLake managed table. Its schema does not
4264
+ # have default value expression. It schema does not have type parameters other
4265
+ # than precision and scale. * No options other than the above are specified.
4266
+ # Corresponds to the JSON property `copyFilesOnly`
4267
+ # @return [Boolean]
4268
+ attr_accessor :copy_files_only
4269
+ alias_method :copy_files_only?, :copy_files_only
4270
+
4250
4271
  # Optional. Specifies whether the job is allowed to create new tables. The
4251
4272
  # following values are supported: * CREATE_IF_NEEDED: If the table does not
4252
4273
  # exist, BigQuery creates the table. * CREATE_NEVER: The table must already
@@ -4535,6 +4556,7 @@ module Google
4535
4556
  @autodetect = args[:autodetect] if args.key?(:autodetect)
4536
4557
  @clustering = args[:clustering] if args.key?(:clustering)
4537
4558
  @connection_properties = args[:connection_properties] if args.key?(:connection_properties)
4559
+ @copy_files_only = args[:copy_files_only] if args.key?(:copy_files_only)
4538
4560
  @create_disposition = args[:create_disposition] if args.key?(:create_disposition)
4539
4561
  @create_session = args[:create_session] if args.key?(:create_session)
4540
4562
  @decimal_target_types = args[:decimal_target_types] if args.key?(:decimal_target_types)
@@ -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.63.0"
19
+ GEM_VERSION = "0.65.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240124"
25
+ REVISION = "20240211"
26
26
  end
27
27
  end
28
28
  end
@@ -1684,6 +1684,7 @@ module Google
1684
1684
 
1685
1685
  property :location, as: 'location'
1686
1686
  property :max_time_travel_hours, :numeric_string => true, as: 'maxTimeTravelHours'
1687
+ property :satisfies_pzi, as: 'satisfiesPzi'
1687
1688
  property :satisfies_pzs, as: 'satisfiesPzs'
1688
1689
  property :self_link, as: 'selfLink'
1689
1690
  property :storage_billing_model, as: 'storageBillingModel'
@@ -2298,6 +2299,7 @@ module Google
2298
2299
 
2299
2300
  collection :connection_properties, as: 'connectionProperties', class: Google::Apis::BigqueryV2::ConnectionProperty, decorator: Google::Apis::BigqueryV2::ConnectionProperty::Representation
2300
2301
 
2302
+ property :copy_files_only, as: 'copyFilesOnly'
2301
2303
  property :create_disposition, as: 'createDisposition'
2302
2304
  property :create_session, as: 'createSession'
2303
2305
  collection :decimal_target_types, as: 'decimalTargetTypes'
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.63.0
4
+ version: 0.65.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-01-28 00:00:00.000000000 Z
11
+ date: 2024-02-25 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.12.0
19
+ version: 0.14.0
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.12.0
29
+ version: 0.14.0
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.63.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.65.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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for BigQuery API V2