google-apis-bigquery_v2 0.46.0 → 0.48.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: e5f43780ca129d99e41903f0555d97bbdd0980a2f26635a14369a1dc8b244ef4
4
- data.tar.gz: 961d1540c5e02cd1c628e12e3c90d14f98cd6c5443d9f8bd6a3b7355e442af55
3
+ metadata.gz: 050ec5de859ea2fe3d643055fbde1fa75a1f3d5b49cedad7fe1cd4eff4936d2c
4
+ data.tar.gz: 3492e6a7675b2fc2654a975f2c8dfd2fd2a2acad048ddc03a47b1aa574e5bce3
5
5
  SHA512:
6
- metadata.gz: d799779d57f018865707be9f41aff4763252d71e4396a1fef0255e89dc38149caab845e67754b94a09963c607b8eaa8d688b6a7d3059c681da103e71a6c77eed
7
- data.tar.gz: d4a7ca94725117294fda825f4c46ab3ed3041c5b3a02bb9d5ae2a8f28b3900895078a07a103f94a47e3817fb1ff91b1c377d3e81f2878903b26c0a6312ae5855
6
+ metadata.gz: 7227554c135ae8930aef73a5dbc459d3c06b0e2dfbda805d676c0991f907c35e7f8daa0ed61578b5f1a8842c493c5792546a3ad22e97a8b17d3298b894b4e009
7
+ data.tar.gz: be8f7514a94e0d1f8f6aad25f4345b1708f5238f34bf9a3478b251c77d4ae1c1b1bb56845122e93005c7abc61e9030a20936d1dca6714bd5c8753521079e9e60
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.48.0 (2023-02-26)
4
+
5
+ * Regenerated from discovery document revision 20230210
6
+
7
+ ### v0.47.0 (2023-02-15)
8
+
9
+ * Regenerated using generator version 0.12.0
10
+
3
11
  ### v0.46.0 (2023-02-05)
4
12
 
5
13
  * Regenerated from discovery document revision 20230128
@@ -1615,6 +1615,11 @@ module Google
1615
1615
  # @return [Fixnum]
1616
1616
  attr_accessor :default_partition_expiration_ms
1617
1617
 
1618
+ # [Output-only] The default rounding mode of the dataset.
1619
+ # Corresponds to the JSON property `defaultRoundingMode`
1620
+ # @return [String]
1621
+ attr_accessor :default_rounding_mode
1622
+
1618
1623
  # [Optional] The default lifetime of all tables in the dataset, in milliseconds.
1619
1624
  # The minimum value is 3600000 milliseconds (one hour). Once this property is
1620
1625
  # set, all newly-created tables in the dataset will have an expirationTime
@@ -1723,6 +1728,7 @@ module Google
1723
1728
  @default_collation = args[:default_collation] if args.key?(:default_collation)
1724
1729
  @default_encryption_configuration = args[:default_encryption_configuration] if args.key?(:default_encryption_configuration)
1725
1730
  @default_partition_expiration_ms = args[:default_partition_expiration_ms] if args.key?(:default_partition_expiration_ms)
1731
+ @default_rounding_mode = args[:default_rounding_mode] if args.key?(:default_rounding_mode)
1726
1732
  @default_table_expiration_ms = args[:default_table_expiration_ms] if args.key?(:default_table_expiration_ms)
1727
1733
  @description = args[:description] if args.key?(:description)
1728
1734
  @etag = args[:etag] if args.key?(:etag)
@@ -7310,6 +7316,11 @@ module Google
7310
7316
  # @return [String]
7311
7317
  attr_accessor :default_collation
7312
7318
 
7319
+ # [Output-only] The default rounding mode of the table.
7320
+ # Corresponds to the JSON property `defaultRoundingMode`
7321
+ # @return [String]
7322
+ attr_accessor :default_rounding_mode
7323
+
7313
7324
  # [Optional] A user-friendly description of this table.
7314
7325
  # Corresponds to the JSON property `description`
7315
7326
  # @return [String]
@@ -7543,6 +7554,7 @@ module Google
7543
7554
  @clustering = args[:clustering] if args.key?(:clustering)
7544
7555
  @creation_time = args[:creation_time] if args.key?(:creation_time)
7545
7556
  @default_collation = args[:default_collation] if args.key?(:default_collation)
7557
+ @default_rounding_mode = args[:default_rounding_mode] if args.key?(:default_rounding_mode)
7546
7558
  @description = args[:description] if args.key?(:description)
7547
7559
  @encryption_configuration = args[:encryption_configuration] if args.key?(:encryption_configuration)
7548
7560
  @etag = args[:etag] if args.key?(:etag)
@@ -7862,6 +7874,12 @@ module Google
7862
7874
  # @return [Fixnum]
7863
7875
  attr_accessor :precision
7864
7876
 
7877
+ # Optional. Rounding Mode specification of the field. It only can be set on
7878
+ # NUMERIC or BIGNUMERIC type fields.
7879
+ # Corresponds to the JSON property `roundingMode`
7880
+ # @return [String]
7881
+ attr_accessor :rounding_mode
7882
+
7865
7883
  # [Optional] See documentation for precision.
7866
7884
  # Corresponds to the JSON property `scale`
7867
7885
  # @return [Fixnum]
@@ -7892,6 +7910,7 @@ module Google
7892
7910
  @name = args[:name] if args.key?(:name)
7893
7911
  @policy_tags = args[:policy_tags] if args.key?(:policy_tags)
7894
7912
  @precision = args[:precision] if args.key?(:precision)
7913
+ @rounding_mode = args[:rounding_mode] if args.key?(:rounding_mode)
7895
7914
  @scale = args[:scale] if args.key?(:scale)
7896
7915
  @type = args[:type] if args.key?(:type)
7897
7916
  end
@@ -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.46.0"
19
+ GEM_VERSION = "0.48.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230128"
25
+ REVISION = "20230210"
26
26
  end
27
27
  end
28
28
  end
@@ -1419,6 +1419,7 @@ module Google
1419
1419
  property :default_encryption_configuration, as: 'defaultEncryptionConfiguration', class: Google::Apis::BigqueryV2::EncryptionConfiguration, decorator: Google::Apis::BigqueryV2::EncryptionConfiguration::Representation
1420
1420
 
1421
1421
  property :default_partition_expiration_ms, :numeric_string => true, as: 'defaultPartitionExpirationMs'
1422
+ property :default_rounding_mode, as: 'defaultRoundingMode'
1422
1423
  property :default_table_expiration_ms, :numeric_string => true, as: 'defaultTableExpirationMs'
1423
1424
  property :description, as: 'description'
1424
1425
  property :etag, as: 'etag'
@@ -2833,6 +2834,7 @@ module Google
2833
2834
 
2834
2835
  property :creation_time, :numeric_string => true, as: 'creationTime'
2835
2836
  property :default_collation, as: 'defaultCollation'
2837
+ property :default_rounding_mode, as: 'defaultRoundingMode'
2836
2838
  property :description, as: 'description'
2837
2839
  property :encryption_configuration, as: 'encryptionConfiguration', class: Google::Apis::BigqueryV2::EncryptionConfiguration, decorator: Google::Apis::BigqueryV2::EncryptionConfiguration::Representation
2838
2840
 
@@ -2956,6 +2958,7 @@ module Google
2956
2958
  property :policy_tags, as: 'policyTags', class: Google::Apis::BigqueryV2::TableFieldSchema::PolicyTags, decorator: Google::Apis::BigqueryV2::TableFieldSchema::PolicyTags::Representation
2957
2959
 
2958
2960
  property :precision, :numeric_string => true, as: 'precision'
2961
+ property :rounding_mode, as: 'roundingMode'
2959
2962
  property :scale, :numeric_string => true, as: 'scale'
2960
2963
  property :type, as: 'type'
2961
2964
  end
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.46.0
4
+ version: 0.48.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: 2023-02-05 00:00:00.000000000 Z
11
+ date: 2023-02-26 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.1
19
+ version: 0.11.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.9.1
29
+ version: 0.11.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.46.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.48.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: []