google-iam-v2 0.8.0 → 0.8.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: c8a4fae3d4e18f401b0144bc76271d3b10c8c1892bb9e6d71351bcacb2d25b2a
4
- data.tar.gz: 3cfc551e3c0cdd7950417dae678ed5db20a7c11b514f4ce86b6dbbf42a2feb9a
3
+ metadata.gz: a5b6d6fd04e378b87816987210dac4f8c51201e98700ffdad47808c2d116743c
4
+ data.tar.gz: 12a3c9a5ae542b109186c46a7ed76dc24d354d732cdba8e1e7b0aab34ed8566f
5
5
  SHA512:
6
- metadata.gz: a1e79423f6695e8d02f09569539f082aa42863a3777f3786c1d2ce6e47d8eeba2dc40f99d543f2e2668e14d601c5da658d066b402afb9e678c712b813d2c43de
7
- data.tar.gz: ca3bb939efe4d624427f90292089b559a2db05659479cd7921c4f011860bafb776ca67ae759580a2e5730423c08c87b4e357c321a009ec5460cec97817b532ab
6
+ metadata.gz: a55c59a01592f6d795eab92f4a90fd4286a411324a3e9c89a4f5162d5126926c086a4239f3577c6099e148a58805426852610ab07a522846b83fe849da4b5213
7
+ data.tar.gz: 4aeca51f45c45aa89b0097f5529f8060850c3461627e029ec809e6fda3a13d6fa705aa6372885db79c3be4ea3bd4792041980fece68a4d368dde65d6ce90069a
@@ -859,8 +859,8 @@ module Google
859
859
 
860
860
  config_attr :endpoint, nil, ::String, nil
861
861
  config_attr :credentials, nil do |value|
862
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
863
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
862
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
863
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
864
864
  allowed.any? { |klass| klass === value }
865
865
  end
866
866
  config_attr :scope, nil, ::String, ::Array, nil
@@ -700,8 +700,8 @@ module Google
700
700
 
701
701
  config_attr :endpoint, nil, ::String, nil
702
702
  config_attr :credentials, nil do |value|
703
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
704
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
703
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
704
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
705
705
  allowed.any? { |klass| klass === value }
706
706
  end
707
707
  config_attr :scope, nil, ::String, ::Array, nil
@@ -808,7 +808,7 @@ module Google
808
808
 
809
809
  config_attr :endpoint, nil, ::String, nil
810
810
  config_attr :credentials, nil do |value|
811
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
811
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
812
812
  allowed.any? { |klass| klass === value }
813
813
  end
814
814
  config_attr :scope, nil, ::String, ::Array, nil
@@ -555,7 +555,7 @@ module Google
555
555
 
556
556
  config_attr :endpoint, nil, ::String, nil
557
557
  config_attr :credentials, nil do |value|
558
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
558
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
559
559
  allowed.any? { |klass| klass === value }
560
560
  end
561
561
  config_attr :scope, nil, ::String, ::Array, nil
@@ -20,7 +20,7 @@
20
20
  module Google
21
21
  module Iam
22
22
  module V2
23
- VERSION = "0.8.0"
23
+ VERSION = "0.8.1"
24
24
  end
25
25
  end
26
26
  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,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-iam-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-29 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: gapic-common
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
103
103
  - !ruby/object:Gem::Version
104
104
  version: '0'
105
105
  requirements: []
106
- rubygems_version: 3.6.2
106
+ rubygems_version: 3.6.8
107
107
  specification_version: 4
108
108
  summary: Manages identity and access control for Google Cloud Platform resources,
109
109
  including the creation of service accounts, which you can use to authenticate to