google-cloud-os_login-v1beta 0.16.0 → 0.17.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: babed4f8471e1b61d0f948fa85e37a59aa624ca2700055425a51ec01bb81a125
4
- data.tar.gz: 23cb9922ed7eb2ee610736e3dde3dba6ba89caa631da1d503e94824ca2207ad5
3
+ metadata.gz: 02620f6a10b29b0a8cbd4f07d75c01fabc25adfce0be9dc3a4ea814dc36a00c3
4
+ data.tar.gz: 5aa61ca2a214c14a35a0d8b440b5d554153f7fad33130445335b497a099473f8
5
5
  SHA512:
6
- metadata.gz: 54703018b4707e060dcd68920b57a5d6c366d0e3d326345cca4418311b465d6c81dd258a52140818cffec9d01134da1daaf23a4952e55540c3dd8778dd340494
7
- data.tar.gz: a89bfb6c2fa44c9b2c2ae3303ac404b85b14bce9c866cbe6048a14ca57b470a3b41d14ba0d246ff6667d9dc4227b7dc66f63810cfddabffe3772975875ec587b
6
+ metadata.gz: 2c634cadc43d29aaf141fc9ce3acc43dfc560a55aeb31c84dcc381a3bb043207a604661f5ba288d334e8e01c5a471b734aaca69ad00e320e60213303118656b1
7
+ data.tar.gz: 16133cacbaa8652ed4489d7fbf147aee37037dc8594c827467a38faf3d7cc87a867772a6751de0b279db9c2aebb210fd66900de675c34caa606b9148195ab1f0
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
@@ -976,6 +976,13 @@ module Google
976
976
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
977
977
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
978
978
  # * (`nil`) indicating no credentials
979
+ #
980
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
981
+ # external source for authentication to Google Cloud, you must validate it before
982
+ # providing it to a Google API client library. Providing an unvalidated credential
983
+ # configuration to Google APIs can compromise the security of your systems and data.
984
+ # For more information, refer to [Validate credential configurations from external
985
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
979
986
  # @return [::Object]
980
987
  # @!attribute [rw] scope
981
988
  # The OAuth scopes
@@ -911,6 +911,13 @@ module Google
911
911
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
912
912
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
913
913
  # * (`nil`) indicating no credentials
914
+ #
915
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
916
+ # external source for authentication to Google Cloud, you must validate it before
917
+ # providing it to a Google API client library. Providing an unvalidated credential
918
+ # configuration to Google APIs can compromise the security of your systems and data.
919
+ # For more information, refer to [Validate credential configurations from external
920
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
914
921
  # @return [::Object]
915
922
  # @!attribute [rw] scope
916
923
  # The OAuth scopes
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module OsLogin
23
23
  module V1beta
24
- VERSION = "0.16.0"
24
+ VERSION = "0.17.1"
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.
@@ -175,9 +175,13 @@ module Google
175
175
  # @!attribute [rw] universal_two_factor
176
176
  # @return [::Google::Cloud::OsLogin::V1beta::UniversalTwoFactor]
177
177
  # The U2F protocol type.
178
+ #
179
+ # Note: The following fields are mutually exclusive: `universal_two_factor`, `web_authn`. If a field in that set is populated, all other fields in the set will automatically be cleared.
178
180
  # @!attribute [rw] web_authn
179
181
  # @return [::Google::Cloud::OsLogin::V1beta::WebAuthn]
180
182
  # The Web Authentication protocol type.
183
+ #
184
+ # Note: The following fields are mutually exclusive: `web_authn`, `universal_two_factor`. If a field in that set is populated, all other fields in the set will automatically be cleared.
181
185
  # @!attribute [rw] device_nickname
182
186
  # @return [::String]
183
187
  # The security key nickname explicitly set by the user.
metadata CHANGED
@@ -1,14 +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.16.0
4
+ version: 0.17.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: 2025-03-18 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
@@ -87,7 +86,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
87
86
  licenses:
88
87
  - Apache-2.0
89
88
  metadata: {}
90
- post_install_message:
91
89
  rdoc_options: []
92
90
  require_paths:
93
91
  - lib
@@ -95,15 +93,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
95
93
  requirements:
96
94
  - - ">="
97
95
  - !ruby/object:Gem::Version
98
- version: '2.7'
96
+ version: '3.0'
99
97
  required_rubygems_version: !ruby/object:Gem::Requirement
100
98
  requirements:
101
99
  - - ">="
102
100
  - !ruby/object:Gem::Version
103
101
  version: '0'
104
102
  requirements: []
105
- rubygems_version: 3.5.23
106
- signing_key:
103
+ rubygems_version: 3.6.5
107
104
  specification_version: 4
108
105
  summary: You can use OS Login to manage access to your VM instances using IAM roles.
109
106
  test_files: []