google-apis-bigquery_v2 0.74.0 → 0.76.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a75dfa8d697ac62c036fc90ffa88c4e26c2b12cd3700fa957133d091abad5e5e
|
4
|
+
data.tar.gz: d1bf90517f518c7b58600596c42c27cf666af71b4bc684fe4794e878abf29d2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea03fe75989bd6129c21fe50a8e55368530a328b72d11626cd72a077e5e1eaf506809dfdce22b8cc5321a58731455d5742ca2e9d4a45695679207d7dce51a655
|
7
|
+
data.tar.gz: 77db6fd56cd4833a0756cc2dc9e2345119d518149d418e7c90bdbd842f58864dc98faf2d045ce3b6a53303ef667bba99745c38e1b5767b3cfe657f333d759c1a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-bigquery_v2
|
2
2
|
|
3
|
+
### v0.76.0 (2024-08-18)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240803
|
6
|
+
|
7
|
+
### v0.75.0 (2024-08-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240727
|
10
|
+
|
3
11
|
### v0.74.0 (2024-08-04)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240714
|
@@ -1669,6 +1669,27 @@ module Google
|
|
1669
1669
|
end
|
1670
1670
|
end
|
1671
1671
|
|
1672
|
+
# Data policy option proto, it currently supports name only, will support
|
1673
|
+
# precedence later.
|
1674
|
+
class DataPolicyOption
|
1675
|
+
include Google::Apis::Core::Hashable
|
1676
|
+
|
1677
|
+
# Data policy resource name in the form of projects/project_id/locations/
|
1678
|
+
# location_id/dataPolicies/data_policy_id.
|
1679
|
+
# Corresponds to the JSON property `name`
|
1680
|
+
# @return [String]
|
1681
|
+
attr_accessor :name
|
1682
|
+
|
1683
|
+
def initialize(**args)
|
1684
|
+
update!(**args)
|
1685
|
+
end
|
1686
|
+
|
1687
|
+
# Update properties of this object
|
1688
|
+
def update!(**args)
|
1689
|
+
@name = args[:name] if args.key?(:name)
|
1690
|
+
end
|
1691
|
+
end
|
1692
|
+
|
1672
1693
|
# Data split result. This contains references to the training and evaluation
|
1673
1694
|
# data tables that were used to train the model.
|
1674
1695
|
class DataSplitResult
|
@@ -9941,6 +9962,11 @@ module Google
|
|
9941
9962
|
# @return [String]
|
9942
9963
|
attr_accessor :collation
|
9943
9964
|
|
9965
|
+
# Optional. Data policy options, will replace the data_policies.
|
9966
|
+
# Corresponds to the JSON property `dataPolicies`
|
9967
|
+
# @return [Array<Google::Apis::BigqueryV2::DataPolicyOption>]
|
9968
|
+
attr_accessor :data_policies
|
9969
|
+
|
9944
9970
|
# Optional. A SQL expression to specify the [default value] (https://cloud.
|
9945
9971
|
# google.com/bigquery/docs/default-values) for this field.
|
9946
9972
|
# Corresponds to the JSON property `defaultValueExpression`
|
@@ -10046,6 +10072,7 @@ module Google
|
|
10046
10072
|
def update!(**args)
|
10047
10073
|
@categories = args[:categories] if args.key?(:categories)
|
10048
10074
|
@collation = args[:collation] if args.key?(:collation)
|
10075
|
+
@data_policies = args[:data_policies] if args.key?(:data_policies)
|
10049
10076
|
@default_value_expression = args[:default_value_expression] if args.key?(:default_value_expression)
|
10050
10077
|
@description = args[:description] if args.key?(:description)
|
10051
10078
|
@fields = args[:fields] if args.key?(:fields)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.76.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 = "
|
25
|
+
REVISION = "20240803"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -250,6 +250,12 @@ module Google
|
|
250
250
|
include Google::Apis::Core::JsonObjectSupport
|
251
251
|
end
|
252
252
|
|
253
|
+
class DataPolicyOption
|
254
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
|
+
|
256
|
+
include Google::Apis::Core::JsonObjectSupport
|
257
|
+
end
|
258
|
+
|
253
259
|
class DataSplitResult
|
254
260
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
255
261
|
|
@@ -1728,6 +1734,13 @@ module Google
|
|
1728
1734
|
end
|
1729
1735
|
end
|
1730
1736
|
|
1737
|
+
class DataPolicyOption
|
1738
|
+
# @private
|
1739
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1740
|
+
property :name, as: 'name'
|
1741
|
+
end
|
1742
|
+
end
|
1743
|
+
|
1731
1744
|
class DataSplitResult
|
1732
1745
|
# @private
|
1733
1746
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3775,6 +3788,8 @@ module Google
|
|
3775
3788
|
property :categories, as: 'categories', class: Google::Apis::BigqueryV2::TableFieldSchema::Categories, decorator: Google::Apis::BigqueryV2::TableFieldSchema::Categories::Representation
|
3776
3789
|
|
3777
3790
|
property :collation, as: 'collation'
|
3791
|
+
collection :data_policies, as: 'dataPolicies', class: Google::Apis::BigqueryV2::DataPolicyOption, decorator: Google::Apis::BigqueryV2::DataPolicyOption::Representation
|
3792
|
+
|
3778
3793
|
property :default_value_expression, as: 'defaultValueExpression'
|
3779
3794
|
property :description, as: 'description'
|
3780
3795
|
collection :fields, as: 'fields', class: Google::Apis::BigqueryV2::TableFieldSchema, decorator: Google::Apis::BigqueryV2::TableFieldSchema::Representation
|
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.
|
4
|
+
version: 0.76.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-
|
11
|
+
date: 2024-08-18 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.76.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: []
|