google-cloud-os_login-v1beta 0.17.0 → 0.17.2

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: 47bb9064c90445f44b8d0be9d934783c88ef05c45b6f21df2a7a7a4ecb0c1e34
4
- data.tar.gz: b9a96328b146d524a03b05ea5ba5db294cfab04d69f54ab8bea558c7b3aa09a9
3
+ metadata.gz: 5cab7aa977ca1e52569c3ec7c47d23510a2b86cd4d59264fa88f9fd480bdd292
4
+ data.tar.gz: 856cf118fd1e98ec2f98c1ec08ddbb9b13364f460aeda9a8dd7daada38ded3c8
5
5
  SHA512:
6
- metadata.gz: 8920603f45de16635dd30b721145a3607c7753d00f7dda5616ce02c9ddbed728ae6bf69c92d11ac719996762bd0210fc97f8065709daeac5d2f5e361fb1c825c
7
- data.tar.gz: 56d9366bd98a6b16dacb653a4711184ffbdab59f0c69a94b635047f2b00b05eeaf6b8d59e226f58edc7062d9881e0cf7c24f17094cc88eafb469675013759a76
6
+ metadata.gz: 455427b5efbecb7c77478f8599e158888de42b6891bc57414b8f968e7e3f31fe9fe75c22e043191b5cf82d8513e3619ef8ac180ae59eb5d13253b36246ac34e1
7
+ data.tar.gz: 25590ab9f63a54fb51c129887f2a44e93c65cdf6240109d1c78779b7931a35d8bbb63e1f6f334ca759efffa96d8a6cb18f1822607cad9e8539ab4447a076975a
@@ -1037,8 +1037,8 @@ module Google
1037
1037
 
1038
1038
  config_attr :endpoint, nil, ::String, nil
1039
1039
  config_attr :credentials, nil do |value|
1040
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1041
- allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
1040
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
1041
+ allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC::Core::Channel
1042
1042
  allowed.any? { |klass| klass === value }
1043
1043
  end
1044
1044
  config_attr :scope, nil, ::String, ::Array, nil
@@ -965,7 +965,7 @@ module Google
965
965
 
966
966
  config_attr :endpoint, nil, ::String, nil
967
967
  config_attr :credentials, nil do |value|
968
- allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
968
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
969
969
  allowed.any? { |klass| klass === value }
970
970
  end
971
971
  config_attr :scope, nil, ::String, ::Array, nil
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module OsLogin
23
23
  module V1beta
24
- VERSION = "0.17.0"
24
+ VERSION = "0.17.2"
25
25
  end
26
26
  end
27
27
  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
@@ -65,8 +65,7 @@ module Google
65
65
  # @!attribute [rw] key
66
66
  # @return [::String]
67
67
  # Public key text in SSH format, defined by
68
- # <a href="https://www.ietf.org/rfc/rfc4253.txt" target="_blank">RFC4253</a>
69
- # section 6.6.
68
+ # [RFC4253](https://www.ietf.org/rfc/rfc4253.txt) section 6.6.
70
69
  # @!attribute [rw] expiration_time_usec
71
70
  # @return [::Integer]
72
71
  # An expiration time in microseconds since epoch.
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-os_login-v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.17.2
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
@@ -100,7 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
100
100
  - !ruby/object:Gem::Version
101
101
  version: '0'
102
102
  requirements: []
103
- rubygems_version: 3.6.2
103
+ rubygems_version: 3.6.8
104
104
  specification_version: 4
105
105
  summary: You can use OS Login to manage access to your VM instances using IAM roles.
106
106
  test_files: []