google-cloud-bigquery-data_policies-v1beta1 0.6.0 → 0.7.1

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: a934a863369fc5f106a860216fd86f74634db9b86ae2604e3b87df694f67c7d2
4
- data.tar.gz: 54ae2f8b63dee21235e486a3453f643b10242bd79f379086beee61d5a755a0ee
3
+ metadata.gz: a2bf9063a41f104a7f491e15ae31aa4b664d03b0fcc3a1031d51a687e6bfe222
4
+ data.tar.gz: 5d2a21e43ad04edc782dc2f90838bf81dd082c1186d04fcddddf86bbc51b449c
5
5
  SHA512:
6
- metadata.gz: a2d423a4ab93a5f0606cb68e6411b9f3364bdc4550aed59d7f90224f51cbb3c4c8728e5a954f958737df9190e7ffa0c6d71be0141d034fef0d5a9da90b9fe4f2
7
- data.tar.gz: 63cd7297045324278343a7bf563a482c4ae9cb18b594b5ca917f3addb411a6064dceafe2a780bbcfb8dca8c102659192974fe2021154a82ea9e34cc2fe229835
6
+ metadata.gz: 0c3e904d8f35d5f951154519b39d32632dd0aee063244918fab8eb7fdfb1643e97892bfc41df07114f59dd653cb888b083af1af9229d7afeebedfe90ab608a9b
7
+ data.tar.gz: b4c0c2b52f2f48b44bcdb3d4c0a418fb15808f9ee8b9dd1be2610d70a536fabd51441a71c59d54239229d45217754669c78d67ce524848232919650505416b58
data/README.md CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
86
86
 
87
87
  ## Supported Ruby Versions
88
88
 
89
- This library is supported on Ruby 2.7+.
89
+ This library is supported on Ruby 3.0+.
90
90
 
91
91
  Google provides official support for Ruby versions that are actively supported
92
92
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -1002,6 +1002,13 @@ module Google
1002
1002
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
1003
1003
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
1004
1004
  # * (`nil`) indicating no credentials
1005
+ #
1006
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1007
+ # external source for authentication to Google Cloud, you must validate it before
1008
+ # providing it to a Google API client library. Providing an unvalidated credential
1009
+ # configuration to Google APIs can compromise the security of your systems and data.
1010
+ # For more information, refer to [Validate credential configurations from external
1011
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1005
1012
  # @return [::Object]
1006
1013
  # @!attribute [rw] scope
1007
1014
  # The OAuth scopes
@@ -1056,8 +1063,8 @@ module Google
1056
1063
 
1057
1064
  config_attr :endpoint, nil, ::String, nil
1058
1065
  config_attr :credentials, nil do |value|
1059
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1060
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
1066
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1067
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
1061
1068
  allowed.any? { |klass| klass === value }
1062
1069
  end
1063
1070
  config_attr :scope, nil, ::String, ::Array, nil
@@ -22,7 +22,7 @@ module Google
22
22
  module Bigquery
23
23
  module DataPolicies
24
24
  module V1beta1
25
- VERSION = "0.6.0"
25
+ VERSION = "0.7.1"
26
26
  end
27
27
  end
28
28
  end
@@ -221,6 +221,12 @@ module Google
221
221
  # Pythonic which are included in `protobuf>=5.29.x`. This feature will be
222
222
  # enabled by default 1 month after launching the feature in preview
223
223
  # packages.
224
+ # @!attribute [rw] unversioned_package_disabled
225
+ # @return [::Boolean]
226
+ # Disables generation of an unversioned Python package for this client
227
+ # library. This means that the module names will need to be versioned in
228
+ # import statements. For example `import google.cloud.library_v2` instead
229
+ # of `import google.cloud.library`.
224
230
  class ExperimentalFeatures
225
231
  include ::Google::Protobuf::MessageExts
226
232
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -409,6 +415,14 @@ module Google
409
415
  # @return [::Array<::String>]
410
416
  # An allowlist of the fully qualified names of RPCs that should be included
411
417
  # on public client surfaces.
418
+ # @!attribute [rw] generate_omitted_as_internal
419
+ # @return [::Boolean]
420
+ # Setting this to true indicates to the client generators that methods
421
+ # that would be excluded from the generation should instead be generated
422
+ # in a way that indicates these methods should not be consumed by
423
+ # end users. How this is expressed is up to individual language
424
+ # implementations to decide. Some examples may be: added annotations,
425
+ # obfuscated identifiers, or other language idiomatic patterns.
412
426
  class SelectiveGapicGeneration
413
427
  include ::Google::Protobuf::MessageExts
414
428
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-bigquery-data_policies-v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-10 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.24.0
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.24.0
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -97,7 +96,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
97
96
  licenses:
98
97
  - Apache-2.0
99
98
  metadata: {}
100
- post_install_message:
101
99
  rdoc_options: []
102
100
  require_paths:
103
101
  - lib
@@ -105,15 +103,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
105
103
  requirements:
106
104
  - - ">="
107
105
  - !ruby/object:Gem::Version
108
- version: '2.7'
106
+ version: '3.0'
109
107
  required_rubygems_version: !ruby/object:Gem::Requirement
110
108
  requirements:
111
109
  - - ">="
112
110
  - !ruby/object:Gem::Version
113
111
  version: '0'
114
112
  requirements: []
115
- rubygems_version: 3.5.23
116
- signing_key:
113
+ rubygems_version: 3.6.8
117
114
  specification_version: 4
118
115
  summary: Allows users to manage BigQuery data policies.
119
116
  test_files: []