google-apis-bigquery_v2 0.58.0 → 0.59.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: a44c910c5081978430c675926c9268870fef6a7daf83837595af8ad936bdfe05
4
- data.tar.gz: 47bdf0a2cb09f3ce7ecfcbee024a30924704aad91eddca48099f0207e452e8cf
3
+ metadata.gz: 78c31b8164246d4ce4392b330cde3cfc8f210f4ac50f1e96c0a0e8dac8be847f
4
+ data.tar.gz: 5db92d6e90f37f68eeba7f8689facc9646609be55c63129b4bc755dbb309b153
5
5
  SHA512:
6
- metadata.gz: e2b1a0178390792340ce5a43fcd3873523480f64899ceadb795161ca54f9edcb789ea769bcc7c5c6b3619c0171bf73d03b18f878472e2e16537484d12f0d7551
7
- data.tar.gz: 8e423dae7e5798536f314c4b21fe376cc251248c2bf66d60212874ef4bb3f8bc4b78143081ca73cb049ed70e36023d8ab88c9e91b24d62b3a4101c51da855e2c
6
+ metadata.gz: 2c74375655a890eec6f4504d57a5f1d198777ed37cc4c0ea26e3124893bada8cdde733dc463e6a6f45bf73d54bed42014e6066dd6fc152a697af8d7f2aa33db0
7
+ data.tar.gz: 5d2b71d4c96774d73514abeef496635de74771da190d5c6bbdeb21fddadc677de2a1cec24d7a9a563aed3ee2f53db52cbbf22f2d46dec3d64dd896f9dbb8e620
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.59.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230812
6
+
3
7
  ### v0.58.0 (2023-08-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20230805
@@ -1687,6 +1687,12 @@ module Google
1687
1687
  # @return [String]
1688
1688
  attr_accessor :etag
1689
1689
 
1690
+ # [Optional] Information about the external metadata storage where the dataset
1691
+ # is defined. Filled out when the dataset type is EXTERNAL.
1692
+ # Corresponds to the JSON property `externalDatasetReference`
1693
+ # @return [Google::Apis::BigqueryV2::ExternalDatasetReference]
1694
+ attr_accessor :external_dataset_reference
1695
+
1690
1696
  # [Optional] A descriptive name for the dataset.
1691
1697
  # Corresponds to the JSON property `friendlyName`
1692
1698
  # @return [String]
@@ -1775,6 +1781,7 @@ module Google
1775
1781
  @default_table_expiration_ms = args[:default_table_expiration_ms] if args.key?(:default_table_expiration_ms)
1776
1782
  @description = args[:description] if args.key?(:description)
1777
1783
  @etag = args[:etag] if args.key?(:etag)
1784
+ @external_dataset_reference = args[:external_dataset_reference] if args.key?(:external_dataset_reference)
1778
1785
  @friendly_name = args[:friendly_name] if args.key?(:friendly_name)
1779
1786
  @id = args[:id] if args.key?(:id)
1780
1787
  @is_case_insensitive = args[:is_case_insensitive] if args.key?(:is_case_insensitive)
@@ -2848,6 +2855,33 @@ module Google
2848
2855
  end
2849
2856
  end
2850
2857
 
2858
+ #
2859
+ class ExternalDatasetReference
2860
+ include Google::Apis::Core::Hashable
2861
+
2862
+ # [Required] The connection id that is used to access the external_source.
2863
+ # Format: projects/`project_id`/locations/`location_id`/connections/`
2864
+ # connection_id`
2865
+ # Corresponds to the JSON property `connection`
2866
+ # @return [String]
2867
+ attr_accessor :connection
2868
+
2869
+ # [Required] External source that backs this dataset.
2870
+ # Corresponds to the JSON property `externalSource`
2871
+ # @return [String]
2872
+ attr_accessor :external_source
2873
+
2874
+ def initialize(**args)
2875
+ update!(**args)
2876
+ end
2877
+
2878
+ # Update properties of this object
2879
+ def update!(**args)
2880
+ @connection = args[:connection] if args.key?(:connection)
2881
+ @external_source = args[:external_source] if args.key?(:external_source)
2882
+ end
2883
+ end
2884
+
2851
2885
  # Representative value of a single feature within the cluster.
2852
2886
  class FeatureValue
2853
2887
  include Google::Apis::Core::Hashable
@@ -8221,6 +8255,13 @@ module Google
8221
8255
  # @return [Fixnum]
8222
8256
  attr_accessor :precision
8223
8257
 
8258
+ # Optional. The subtype of the RANGE, if the type of this field is RANGE. If the
8259
+ # type is RANGE, this field is required. Possible values for the field element
8260
+ # type of a RANGE include: - DATE - DATETIME - TIMESTAMP
8261
+ # Corresponds to the JSON property `rangeElementType`
8262
+ # @return [Google::Apis::BigqueryV2::TableFieldSchema::RangeElementType]
8263
+ attr_accessor :range_element_type
8264
+
8224
8265
  # Optional. Rounding Mode specification of the field. It only can be set on
8225
8266
  # NUMERIC or BIGNUMERIC type fields.
8226
8267
  # Corresponds to the JSON property `roundingMode`
@@ -8257,6 +8298,7 @@ module Google
8257
8298
  @name = args[:name] if args.key?(:name)
8258
8299
  @policy_tags = args[:policy_tags] if args.key?(:policy_tags)
8259
8300
  @precision = args[:precision] if args.key?(:precision)
8301
+ @range_element_type = args[:range_element_type] if args.key?(:range_element_type)
8260
8302
  @rounding_mode = args[:rounding_mode] if args.key?(:rounding_mode)
8261
8303
  @scale = args[:scale] if args.key?(:scale)
8262
8304
  @type = args[:type] if args.key?(:type)
@@ -8302,6 +8344,27 @@ module Google
8302
8344
  @names = args[:names] if args.key?(:names)
8303
8345
  end
8304
8346
  end
8347
+
8348
+ # Optional. The subtype of the RANGE, if the type of this field is RANGE. If the
8349
+ # type is RANGE, this field is required. Possible values for the field element
8350
+ # type of a RANGE include: - DATE - DATETIME - TIMESTAMP
8351
+ class RangeElementType
8352
+ include Google::Apis::Core::Hashable
8353
+
8354
+ # The field element type of a RANGE
8355
+ # Corresponds to the JSON property `type`
8356
+ # @return [String]
8357
+ attr_accessor :type
8358
+
8359
+ def initialize(**args)
8360
+ update!(**args)
8361
+ end
8362
+
8363
+ # Update properties of this object
8364
+ def update!(**args)
8365
+ @type = args[:type] if args.key?(:type)
8366
+ end
8367
+ end
8305
8368
  end
8306
8369
 
8307
8370
  #
@@ -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.58.0"
19
+ GEM_VERSION = "0.59.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230805"
25
+ REVISION = "20230812"
26
26
  end
27
27
  end
28
28
  end
@@ -376,6 +376,12 @@ module Google
376
376
  include Google::Apis::Core::JsonObjectSupport
377
377
  end
378
378
 
379
+ class ExternalDatasetReference
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
379
385
  class FeatureValue
380
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
381
387
 
@@ -984,6 +990,12 @@ module Google
984
990
 
985
991
  include Google::Apis::Core::JsonObjectSupport
986
992
  end
993
+
994
+ class RangeElementType
995
+ class Representation < Google::Apis::Core::JsonRepresentation; end
996
+
997
+ include Google::Apis::Core::JsonObjectSupport
998
+ end
987
999
 
988
1000
  include Google::Apis::Core::JsonObjectSupport
989
1001
  end
@@ -1487,6 +1499,8 @@ module Google
1487
1499
  property :default_table_expiration_ms, :numeric_string => true, as: 'defaultTableExpirationMs'
1488
1500
  property :description, as: 'description'
1489
1501
  property :etag, as: 'etag'
1502
+ property :external_dataset_reference, as: 'externalDatasetReference', class: Google::Apis::BigqueryV2::ExternalDatasetReference, decorator: Google::Apis::BigqueryV2::ExternalDatasetReference::Representation
1503
+
1490
1504
  property :friendly_name, as: 'friendlyName'
1491
1505
  property :id, as: 'id'
1492
1506
  property :is_case_insensitive, as: 'isCaseInsensitive'
@@ -1764,6 +1778,14 @@ module Google
1764
1778
  end
1765
1779
  end
1766
1780
 
1781
+ class ExternalDatasetReference
1782
+ # @private
1783
+ class Representation < Google::Apis::Core::JsonRepresentation
1784
+ property :connection, as: 'connection'
1785
+ property :external_source, as: 'externalSource'
1786
+ end
1787
+ end
1788
+
1767
1789
  class FeatureValue
1768
1790
  # @private
1769
1791
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3104,6 +3126,8 @@ module Google
3104
3126
  property :policy_tags, as: 'policyTags', class: Google::Apis::BigqueryV2::TableFieldSchema::PolicyTags, decorator: Google::Apis::BigqueryV2::TableFieldSchema::PolicyTags::Representation
3105
3127
 
3106
3128
  property :precision, :numeric_string => true, as: 'precision'
3129
+ property :range_element_type, as: 'rangeElementType', class: Google::Apis::BigqueryV2::TableFieldSchema::RangeElementType, decorator: Google::Apis::BigqueryV2::TableFieldSchema::RangeElementType::Representation
3130
+
3107
3131
  property :rounding_mode, as: 'roundingMode'
3108
3132
  property :scale, :numeric_string => true, as: 'scale'
3109
3133
  property :type, as: 'type'
@@ -3122,6 +3146,13 @@ module Google
3122
3146
  collection :names, as: 'names'
3123
3147
  end
3124
3148
  end
3149
+
3150
+ class RangeElementType
3151
+ # @private
3152
+ class Representation < Google::Apis::Core::JsonRepresentation
3153
+ property :type, as: 'type'
3154
+ end
3155
+ end
3125
3156
  end
3126
3157
 
3127
3158
  class TableList
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.58.0
4
+ version: 0.59.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-08-13 00:00:00.000000000 Z
11
+ date: 2023-08-27 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.58.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.59.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for BigQuery API V2