google-apis-bigquery_v2 0.74.0 → 0.75.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: c2beb1870e551305a3d3fb9dbcd459f4704fce55f0e589a58ada043923db01c7
4
- data.tar.gz: 208c1ae32906d2e6a080baf4994f17b68e95d982c6d6b88cefe7c2180d01974b
3
+ metadata.gz: acddc81a77096b0ae1f5ccbf71198b0a64111a352ba2155692f7d1ae1ba8063d
4
+ data.tar.gz: 59dea40b84cab8e1427edda4bb397796bbc9f418dfddfb4d4066df7dc72fc89e
5
5
  SHA512:
6
- metadata.gz: f654f10e9c8f8ccbd8ba972c79deb3e7be2447c273d3ebb52d030036053404f26542497df58163ac3e087518e23bcc410bb6e6d5efeb23509729c7d18f2dace0
7
- data.tar.gz: 4d056c5183291d75fadb2586b662caaf8993fcdc11663d75df833acb2121fbf9904aba1383e45541578bae2cb0d9f02e430fae743cd1509488280de29ac189fd
6
+ metadata.gz: 980be8a1d5f3ea2380f5bcb2e7e4f271e212ce1ad04ca68ac010b6bef90dddd11d8e7fe38319552c5f36d1874d96e408eb4a8d92750587a3d10d0b0dee60454d
7
+ data.tar.gz: 2c22579b584a02ecfbe1796b59601ac21055529b855ff3cbdf4dfd7aa8fc921b4d01c8a3723cb08a3b5db17e02b2a4ca4c78a442bccc7eec2fd5fa589780f7e9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.75.0 (2024-08-11)
4
+
5
+ * Regenerated from discovery document revision 20240727
6
+
3
7
  ### v0.74.0 (2024-08-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20240714
@@ -3966,6 +3966,40 @@ module Google
3966
3966
  end
3967
3967
  end
3968
3968
 
3969
+ # Metadata for value generation for an identity column.
3970
+ class IdentityColumnInfo
3971
+ include Google::Apis::Core::Hashable
3972
+
3973
+ # Optional. Dictates when system generated values are used to populate the field.
3974
+ # Corresponds to the JSON property `generatedMode`
3975
+ # @return [String]
3976
+ attr_accessor :generated_mode
3977
+
3978
+ # Optional. The minimum difference between two successive generated values.
3979
+ # Should be INTEGER compatible. Can be negative or positive but not 0. The
3980
+ # default value is 1 if the field is not specified.
3981
+ # Corresponds to the JSON property `increment`
3982
+ # @return [String]
3983
+ attr_accessor :increment
3984
+
3985
+ # Optional. The first generated value. Should be INTEGER compatible. The default
3986
+ # value is 1 if the field is not specified.
3987
+ # Corresponds to the JSON property `start`
3988
+ # @return [String]
3989
+ attr_accessor :start
3990
+
3991
+ def initialize(**args)
3992
+ update!(**args)
3993
+ end
3994
+
3995
+ # Update properties of this object
3996
+ def update!(**args)
3997
+ @generated_mode = args[:generated_mode] if args.key?(:generated_mode)
3998
+ @increment = args[:increment] if args.key?(:increment)
3999
+ @start = args[:start] if args.key?(:start)
4000
+ end
4001
+ end
4002
+
3969
4003
  # Reason about why no search index was used in the search query (or sub-query).
3970
4004
  class IndexUnusedReason
3971
4005
  include Google::Apis::Core::Hashable
@@ -9964,6 +9998,11 @@ module Google
9964
9998
  # @return [String]
9965
9999
  attr_accessor :foreign_type_definition
9966
10000
 
10001
+ # Metadata for value generation for an identity column.
10002
+ # Corresponds to the JSON property `identityColumnInfo`
10003
+ # @return [Google::Apis::BigqueryV2::IdentityColumnInfo]
10004
+ attr_accessor :identity_column_info
10005
+
9967
10006
  # Optional. Maximum length of values of this field for STRINGS or BYTES. If
9968
10007
  # max_length is not specified, no maximum length constraint is imposed on this
9969
10008
  # field. If type = "STRING", then max_length represents the maximum UTF-8 length
@@ -10050,6 +10089,7 @@ module Google
10050
10089
  @description = args[:description] if args.key?(:description)
10051
10090
  @fields = args[:fields] if args.key?(:fields)
10052
10091
  @foreign_type_definition = args[:foreign_type_definition] if args.key?(:foreign_type_definition)
10092
+ @identity_column_info = args[:identity_column_info] if args.key?(:identity_column_info)
10053
10093
  @max_length = args[:max_length] if args.key?(:max_length)
10054
10094
  @mode = args[:mode] if args.key?(:mode)
10055
10095
  @name = args[:name] if args.key?(:name)
@@ -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.74.0"
19
+ GEM_VERSION = "0.75.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 = "20240714"
25
+ REVISION = "20240727"
26
26
  end
27
27
  end
28
28
  end
@@ -502,6 +502,12 @@ module Google
502
502
  include Google::Apis::Core::JsonObjectSupport
503
503
  end
504
504
 
505
+ class IdentityColumnInfo
506
+ class Representation < Google::Apis::Core::JsonRepresentation; end
507
+
508
+ include Google::Apis::Core::JsonObjectSupport
509
+ end
510
+
505
511
  class IndexUnusedReason
506
512
  class Representation < Google::Apis::Core::JsonRepresentation; end
507
513
 
@@ -2284,6 +2290,15 @@ module Google
2284
2290
  end
2285
2291
  end
2286
2292
 
2293
+ class IdentityColumnInfo
2294
+ # @private
2295
+ class Representation < Google::Apis::Core::JsonRepresentation
2296
+ property :generated_mode, as: 'generatedMode'
2297
+ property :increment, as: 'increment'
2298
+ property :start, as: 'start'
2299
+ end
2300
+ end
2301
+
2287
2302
  class IndexUnusedReason
2288
2303
  # @private
2289
2304
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3780,6 +3795,8 @@ module Google
3780
3795
  collection :fields, as: 'fields', class: Google::Apis::BigqueryV2::TableFieldSchema, decorator: Google::Apis::BigqueryV2::TableFieldSchema::Representation
3781
3796
 
3782
3797
  property :foreign_type_definition, as: 'foreignTypeDefinition'
3798
+ property :identity_column_info, as: 'identityColumnInfo', class: Google::Apis::BigqueryV2::IdentityColumnInfo, decorator: Google::Apis::BigqueryV2::IdentityColumnInfo::Representation
3799
+
3783
3800
  property :max_length, :numeric_string => true, as: 'maxLength'
3784
3801
  property :mode, as: 'mode'
3785
3802
  property :name, as: 'name'
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.74.0
4
+ version: 0.75.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-08-04 00:00:00.000000000 Z
11
+ date: 2024-08-11 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.74.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.75.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: []