google-apis-bigquery_v2 0.73.0 → 0.75.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c6cf3a4ec4c0427cfb9f75ce9d56761bb2fafa4963f3427e715553fbc019daa6
4
- data.tar.gz: c9c7e7a99bf5c49cf1268a955b926b4a9cc4a35b4c43923a650d96708d478818
3
+ metadata.gz: acddc81a77096b0ae1f5ccbf71198b0a64111a352ba2155692f7d1ae1ba8063d
4
+ data.tar.gz: 59dea40b84cab8e1427edda4bb397796bbc9f418dfddfb4d4066df7dc72fc89e
5
5
  SHA512:
6
- metadata.gz: bd26b7e773dd49ebceea4179bf6ea698e5b916a8c8128b71f6964dea0c3c64b16b49a747b7e9243f964cb6c7bb7dcde10754391d672ad0ab9789769aaccf61fe
7
- data.tar.gz: 624835be67d08cf72a28455703848b9581fa52a18952bc13882debc4efa4525541ebc2b746987e0c6a717834e4672a5ce9a4103dfcc95ff14a7f0ab753374eef
6
+ metadata.gz: 980be8a1d5f3ea2380f5bcb2e7e4f271e212ce1ad04ca68ac010b6bef90dddd11d8e7fe38319552c5f36d1874d96e408eb4a8d92750587a3d10d0b0dee60454d
7
+ data.tar.gz: 2c22579b584a02ecfbe1796b59601ac21055529b855ff3cbdf4dfd7aa8fc921b4d01c8a3723cb08a3b5db17e02b2a4ca4c78a442bccc7eec2fd5fa589780f7e9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
7
+ ### v0.74.0 (2024-08-04)
8
+
9
+ * Regenerated from discovery document revision 20240714
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.73.0 (2024-07-25)
4
13
 
5
14
  * Regenerated from discovery document revision 20240629
@@ -1712,7 +1712,9 @@ module Google
1712
1712
  # access.specialGroup: projectReaders; access.role: READER; access.specialGroup:
1713
1713
  # projectWriters; access.role: WRITER; access.specialGroup: projectOwners;
1714
1714
  # access.role: OWNER; access.userByEmail: [dataset creator email]; access.role:
1715
- # OWNER;
1715
+ # OWNER; If you patch a dataset, then this field is overwritten by the patched
1716
+ # dataset's access field. To add entities, you must supply the entire existing
1717
+ # access array in addition to any new entities that you want to add.
1716
1718
  # Corresponds to the JSON property `access`
1717
1719
  # @return [Array<Google::Apis::BigqueryV2::Dataset::Access>]
1718
1720
  attr_accessor :access
@@ -1910,7 +1912,8 @@ module Google
1910
1912
  # @return [String]
1911
1913
  attr_accessor :storage_billing_model
1912
1914
 
1913
- # Output only. Tags for the Dataset.
1915
+ # Output only. Tags for the dataset. To provide tags as inputs, use the `
1916
+ # resourceTags` field.
1914
1917
  # Corresponds to the JSON property `tags`
1915
1918
  # @return [Array<Google::Apis::BigqueryV2::Dataset::Tag>]
1916
1919
  attr_accessor :tags
@@ -3963,6 +3966,40 @@ module Google
3963
3966
  end
3964
3967
  end
3965
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
+
3966
4003
  # Reason about why no search index was used in the search query (or sub-query).
3967
4004
  class IndexUnusedReason
3968
4005
  include Google::Apis::Core::Hashable
@@ -5381,6 +5418,12 @@ module Google
5381
5418
  # @return [Google::Apis::BigqueryV2::DataMaskingStatistics]
5382
5419
  attr_accessor :data_masking_statistics
5383
5420
 
5421
+ # Output only. Name of edition corresponding to the reservation for this job at
5422
+ # the time of this update.
5423
+ # Corresponds to the JSON property `edition`
5424
+ # @return [String]
5425
+ attr_accessor :edition
5426
+
5384
5427
  # Output only. End time of this job, in milliseconds since the epoch. This field
5385
5428
  # will be present whenever a job is in the DONE state.
5386
5429
  # Corresponds to the JSON property `endTime`
@@ -5483,6 +5526,7 @@ module Google
5483
5526
  @copy = args[:copy] if args.key?(:copy)
5484
5527
  @creation_time = args[:creation_time] if args.key?(:creation_time)
5485
5528
  @data_masking_statistics = args[:data_masking_statistics] if args.key?(:data_masking_statistics)
5529
+ @edition = args[:edition] if args.key?(:edition)
5486
5530
  @end_time = args[:end_time] if args.key?(:end_time)
5487
5531
  @extract = args[:extract] if args.key?(:extract)
5488
5532
  @final_execution_duration_ms = args[:final_execution_duration_ms] if args.key?(:final_execution_duration_ms)
@@ -9954,6 +9998,11 @@ module Google
9954
9998
  # @return [String]
9955
9999
  attr_accessor :foreign_type_definition
9956
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
+
9957
10006
  # Optional. Maximum length of values of this field for STRINGS or BYTES. If
9958
10007
  # max_length is not specified, no maximum length constraint is imposed on this
9959
10008
  # field. If type = "STRING", then max_length represents the maximum UTF-8 length
@@ -10040,6 +10089,7 @@ module Google
10040
10089
  @description = args[:description] if args.key?(:description)
10041
10090
  @fields = args[:fields] if args.key?(:fields)
10042
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)
10043
10093
  @max_length = args[:max_length] if args.key?(:max_length)
10044
10094
  @mode = args[:mode] if args.key?(:mode)
10045
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.73.0"
19
+ GEM_VERSION = "0.75.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240629"
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
@@ -2601,6 +2616,7 @@ module Google
2601
2616
  property :creation_time, :numeric_string => true, as: 'creationTime'
2602
2617
  property :data_masking_statistics, as: 'dataMaskingStatistics', class: Google::Apis::BigqueryV2::DataMaskingStatistics, decorator: Google::Apis::BigqueryV2::DataMaskingStatistics::Representation
2603
2618
 
2619
+ property :edition, as: 'edition'
2604
2620
  property :end_time, :numeric_string => true, as: 'endTime'
2605
2621
  property :extract, as: 'extract', class: Google::Apis::BigqueryV2::JobStatistics4, decorator: Google::Apis::BigqueryV2::JobStatistics4::Representation
2606
2622
 
@@ -3779,6 +3795,8 @@ module Google
3779
3795
  collection :fields, as: 'fields', class: Google::Apis::BigqueryV2::TableFieldSchema, decorator: Google::Apis::BigqueryV2::TableFieldSchema::Representation
3780
3796
 
3781
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
+
3782
3800
  property :max_length, :numeric_string => true, as: 'maxLength'
3783
3801
  property :mode, as: 'mode'
3784
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.73.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-07-25 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.73.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: []