google-cloud-os_login-v1beta 0.7.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90df7c4342d79edc96c3cd59dd5355ee46a96a1b9fa3ed40a21ed2545bfbde3e
4
- data.tar.gz: 262ce1289795bfb38f83cbc456002c12ac335212490802e91589717b3d655d7c
3
+ metadata.gz: ecb4a2f00ab958a104c7ab31ab21388d959e21826da63974c1f7a538e36479c0
4
+ data.tar.gz: 4677899c89dbda131f23f89bb77199012be4e53fc61ea80a72873248ad2e8c62
5
5
  SHA512:
6
- metadata.gz: 1f3f9ba3678c3a61ad28da1fc7959e13c0275683b8e935c4dad670c547c5f45ebee4606532c56c5cbdfa23f1f7b84604e252528e73ac117b6be96be04715fb97
7
- data.tar.gz: 4ac32d535934eff6f604dcadfb2f5df5e86bd43a09198a8d8ed0b0beddcce1737e46c28aa64c1d3a5fa360cea862180f0c5c243e6c0d87e9706a8db485d2d2bc
6
+ metadata.gz: 860291e98db85a019580d375477664c4057111dcd9029452e4ceefc767ed85d5dc49555abc6d7f428dc4b329317ac189b280d527b58e430e0974f899c45b18b6
7
+ data.tar.gz: aacd08b8680ba20ca2e9cc044b3a7778d99932a0a2407e92418bb28a45dac9262a34fb59fdb4ddfe4d42a72954c603839376fc588ad75f440aec73ca0f2e95e5
data/README.md CHANGED
@@ -47,7 +47,7 @@ for general usage information.
47
47
 
48
48
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
49
49
  The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
50
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
50
+ or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
51
51
  that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
52
52
  and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
53
53
 
@@ -156,7 +156,7 @@ module Google
156
156
  credentials = @config.credentials
157
157
  # Use self-signed JWT if the endpoint is unchanged from default,
158
158
  # but only if the default endpoint does not have a region prefix.
159
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
159
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
160
160
  !@config.endpoint.split(".").first.include?("-")
161
161
  credentials ||= Credentials.default scope: @config.scope,
162
162
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -802,6 +802,96 @@ module Google
802
802
  raise ::Google::Cloud::Error.from_error(e)
803
803
  end
804
804
 
805
+ ##
806
+ # Signs an SSH public key for a user to authenticate to an instance.
807
+ #
808
+ # @overload sign_ssh_public_key(request, options = nil)
809
+ # Pass arguments to `sign_ssh_public_key` via a request object, either of type
810
+ # {::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyRequest} or an equivalent Hash.
811
+ #
812
+ # @param request [::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyRequest, ::Hash]
813
+ # A request object representing the call parameters. Required. To specify no
814
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
815
+ # @param options [::Gapic::CallOptions, ::Hash]
816
+ # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
817
+ #
818
+ # @overload sign_ssh_public_key(ssh_public_key: nil, parent: nil)
819
+ # Pass arguments to `sign_ssh_public_key` via keyword arguments. Note that at
820
+ # least one keyword argument is required. To specify no parameters, or to keep all
821
+ # the default parameter values, pass an empty Hash as a request object (see above).
822
+ #
823
+ # @param ssh_public_key [::String]
824
+ # The SSH public key to sign.
825
+ # @param parent [::String]
826
+ # The parent project and zone for the signing request. This is needed to
827
+ # properly ensure per-organization ISS processing and potentially to provide
828
+ # for the possibility of zone-specific certificates used in the signing
829
+ # process.
830
+ #
831
+ # @yield [response, operation] Access the result along with the RPC operation
832
+ # @yieldparam response [::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyResponse]
833
+ # @yieldparam operation [::GRPC::ActiveCall::Operation]
834
+ #
835
+ # @return [::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyResponse]
836
+ #
837
+ # @raise [::Google::Cloud::Error] if the RPC is aborted.
838
+ #
839
+ # @example Basic example
840
+ # require "google/cloud/os_login/v1beta"
841
+ #
842
+ # # Create a client object. The client can be reused for multiple calls.
843
+ # client = Google::Cloud::OsLogin::V1beta::OsLoginService::Client.new
844
+ #
845
+ # # Create a request. To set request fields, pass in keyword arguments.
846
+ # request = Google::Cloud::OsLogin::V1beta::SignSshPublicKeyRequest.new
847
+ #
848
+ # # Call the sign_ssh_public_key method.
849
+ # result = client.sign_ssh_public_key request
850
+ #
851
+ # # The returned object is of type Google::Cloud::OsLogin::V1beta::SignSshPublicKeyResponse.
852
+ # p result
853
+ #
854
+ def sign_ssh_public_key request, options = nil
855
+ raise ::ArgumentError, "request must be provided" if request.nil?
856
+
857
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyRequest
858
+
859
+ # Converts hash and nil to an options object
860
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
861
+
862
+ # Customize the options with defaults
863
+ metadata = @config.rpcs.sign_ssh_public_key.metadata.to_h
864
+
865
+ # Set x-goog-api-client and x-goog-user-project headers
866
+ metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
867
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
868
+ gapic_version: ::Google::Cloud::OsLogin::V1beta::VERSION
869
+ metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
870
+
871
+ header_params = {}
872
+ if request.parent
873
+ header_params["parent"] = request.parent
874
+ end
875
+
876
+ request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
877
+ metadata[:"x-goog-request-params"] ||= request_params_header
878
+
879
+ options.apply_defaults timeout: @config.rpcs.sign_ssh_public_key.timeout,
880
+ metadata: metadata,
881
+ retry_policy: @config.rpcs.sign_ssh_public_key.retry_policy
882
+
883
+ options.apply_defaults timeout: @config.timeout,
884
+ metadata: @config.metadata,
885
+ retry_policy: @config.retry_policy
886
+
887
+ @os_login_service_stub.call_rpc :sign_ssh_public_key, request, options: options do |response, operation|
888
+ yield response, operation if block_given?
889
+ return response
890
+ end
891
+ rescue ::GRPC::BadStatus => e
892
+ raise ::Google::Cloud::Error.from_error(e)
893
+ end
894
+
805
895
  ##
806
896
  # Configuration class for the OsLoginService API.
807
897
  #
@@ -840,9 +930,9 @@ module Google
840
930
  # * (`String`) The path to a service account key file in JSON format
841
931
  # * (`Hash`) A service account key as a Hash
842
932
  # * (`Google::Auth::Credentials`) A googleauth credentials object
843
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
933
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
844
934
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
845
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
935
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
846
936
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
847
937
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
848
938
  # * (`nil`) indicating no credentials
@@ -884,7 +974,9 @@ module Google
884
974
  class Configuration
885
975
  extend ::Gapic::Config
886
976
 
887
- config_attr :endpoint, "oslogin.googleapis.com", ::String
977
+ DEFAULT_ENDPOINT = "oslogin.googleapis.com"
978
+
979
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
888
980
  config_attr :credentials, nil do |value|
889
981
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
890
982
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -972,6 +1064,11 @@ module Google
972
1064
  # @return [::Gapic::Config::Method]
973
1065
  #
974
1066
  attr_reader :update_ssh_public_key
1067
+ ##
1068
+ # RPC-specific configuration for `sign_ssh_public_key`
1069
+ # @return [::Gapic::Config::Method]
1070
+ #
1071
+ attr_reader :sign_ssh_public_key
975
1072
 
976
1073
  # @private
977
1074
  def initialize parent_rpcs = nil
@@ -989,6 +1086,8 @@ module Google
989
1086
  @import_ssh_public_key = ::Gapic::Config::Method.new import_ssh_public_key_config
990
1087
  update_ssh_public_key_config = parent_rpcs.update_ssh_public_key if parent_rpcs.respond_to? :update_ssh_public_key
991
1088
  @update_ssh_public_key = ::Gapic::Config::Method.new update_ssh_public_key_config
1089
+ sign_ssh_public_key_config = parent_rpcs.sign_ssh_public_key if parent_rpcs.respond_to? :sign_ssh_public_key
1090
+ @sign_ssh_public_key = ::Gapic::Config::Method.new sign_ssh_public_key_config
992
1091
 
993
1092
  yield self if block_given?
994
1093
  end
@@ -152,7 +152,7 @@ module Google
152
152
  credentials = @config.credentials
153
153
  # Use self-signed JWT if the endpoint is unchanged from default,
154
154
  # but only if the default endpoint does not have a region prefix.
155
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
155
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
156
156
  !@config.endpoint.split(".").first.include?("-")
157
157
  credentials ||= Credentials.default scope: @config.scope,
158
158
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -632,6 +632,73 @@ module Google
632
632
  raise ::Google::Cloud::Error.from_error(e)
633
633
  end
634
634
 
635
+ ##
636
+ # Signs an SSH public key for a user to authenticate to an instance.
637
+ #
638
+ # @overload sign_ssh_public_key(request, options = nil)
639
+ # Pass arguments to `sign_ssh_public_key` via a request object, either of type
640
+ # {::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyRequest} or an equivalent Hash.
641
+ #
642
+ # @param request [::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyRequest, ::Hash]
643
+ # A request object representing the call parameters. Required. To specify no
644
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
645
+ # @param options [::Gapic::CallOptions, ::Hash]
646
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
647
+ #
648
+ # @overload sign_ssh_public_key(ssh_public_key: nil, parent: nil)
649
+ # Pass arguments to `sign_ssh_public_key` via keyword arguments. Note that at
650
+ # least one keyword argument is required. To specify no parameters, or to keep all
651
+ # the default parameter values, pass an empty Hash as a request object (see above).
652
+ #
653
+ # @param ssh_public_key [::String]
654
+ # The SSH public key to sign.
655
+ # @param parent [::String]
656
+ # The parent project and zone for the signing request. This is needed to
657
+ # properly ensure per-organization ISS processing and potentially to provide
658
+ # for the possibility of zone-specific certificates used in the signing
659
+ # process.
660
+ # @yield [result, operation] Access the result along with the TransportOperation object
661
+ # @yieldparam result [::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyResponse]
662
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
663
+ #
664
+ # @return [::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyResponse]
665
+ #
666
+ # @raise [::Google::Cloud::Error] if the REST call is aborted.
667
+ def sign_ssh_public_key request, options = nil
668
+ raise ::ArgumentError, "request must be provided" if request.nil?
669
+
670
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyRequest
671
+
672
+ # Converts hash and nil to an options object
673
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
674
+
675
+ # Customize the options with defaults
676
+ call_metadata = @config.rpcs.sign_ssh_public_key.metadata.to_h
677
+
678
+ # Set x-goog-api-client and x-goog-user-project headers
679
+ call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
680
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
681
+ gapic_version: ::Google::Cloud::OsLogin::V1beta::VERSION,
682
+ transports_version_send: [:rest]
683
+
684
+ call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
685
+
686
+ options.apply_defaults timeout: @config.rpcs.sign_ssh_public_key.timeout,
687
+ metadata: call_metadata,
688
+ retry_policy: @config.rpcs.sign_ssh_public_key.retry_policy
689
+
690
+ options.apply_defaults timeout: @config.timeout,
691
+ metadata: @config.metadata,
692
+ retry_policy: @config.retry_policy
693
+
694
+ @os_login_service_stub.sign_ssh_public_key request, options do |result, operation|
695
+ yield result, operation if block_given?
696
+ return result
697
+ end
698
+ rescue ::Gapic::Rest::Error => e
699
+ raise ::Google::Cloud::Error.from_error(e)
700
+ end
701
+
635
702
  ##
636
703
  # Configuration class for the OsLoginService REST API.
637
704
  #
@@ -670,9 +737,9 @@ module Google
670
737
  # * (`String`) The path to a service account key file in JSON format
671
738
  # * (`Hash`) A service account key as a Hash
672
739
  # * (`Google::Auth::Credentials`) A googleauth credentials object
673
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
740
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
674
741
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
675
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
742
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
676
743
  # * (`nil`) indicating no credentials
677
744
  # @return [::Object]
678
745
  # @!attribute [rw] scope
@@ -705,7 +772,9 @@ module Google
705
772
  class Configuration
706
773
  extend ::Gapic::Config
707
774
 
708
- config_attr :endpoint, "oslogin.googleapis.com", ::String
775
+ DEFAULT_ENDPOINT = "oslogin.googleapis.com"
776
+
777
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
709
778
  config_attr :credentials, nil do |value|
710
779
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
711
780
  allowed.any? { |klass| klass === value }
@@ -790,6 +859,11 @@ module Google
790
859
  # @return [::Gapic::Config::Method]
791
860
  #
792
861
  attr_reader :update_ssh_public_key
862
+ ##
863
+ # RPC-specific configuration for `sign_ssh_public_key`
864
+ # @return [::Gapic::Config::Method]
865
+ #
866
+ attr_reader :sign_ssh_public_key
793
867
 
794
868
  # @private
795
869
  def initialize parent_rpcs = nil
@@ -807,6 +881,8 @@ module Google
807
881
  @import_ssh_public_key = ::Gapic::Config::Method.new import_ssh_public_key_config
808
882
  update_ssh_public_key_config = parent_rpcs.update_ssh_public_key if parent_rpcs.respond_to? :update_ssh_public_key
809
883
  @update_ssh_public_key = ::Gapic::Config::Method.new update_ssh_public_key_config
884
+ sign_ssh_public_key_config = parent_rpcs.sign_ssh_public_key if parent_rpcs.respond_to? :sign_ssh_public_key
885
+ @sign_ssh_public_key = ::Gapic::Config::Method.new sign_ssh_public_key_config
810
886
 
811
887
  yield self if block_given?
812
888
  end
@@ -59,7 +59,7 @@ module Google
59
59
 
60
60
  verb, uri, query_string_params, body = ServiceStub.transcode_create_ssh_public_key_request request_pb
61
61
  query_string_params = if query_string_params.any?
62
- query_string_params.to_h { |p| p.split("=", 2) }
62
+ query_string_params.to_h { |p| p.split "=", 2 }
63
63
  else
64
64
  {}
65
65
  end
@@ -97,7 +97,7 @@ module Google
97
97
 
98
98
  verb, uri, query_string_params, body = ServiceStub.transcode_delete_posix_account_request request_pb
99
99
  query_string_params = if query_string_params.any?
100
- query_string_params.to_h { |p| p.split("=", 2) }
100
+ query_string_params.to_h { |p| p.split "=", 2 }
101
101
  else
102
102
  {}
103
103
  end
@@ -135,7 +135,7 @@ module Google
135
135
 
136
136
  verb, uri, query_string_params, body = ServiceStub.transcode_delete_ssh_public_key_request request_pb
137
137
  query_string_params = if query_string_params.any?
138
- query_string_params.to_h { |p| p.split("=", 2) }
138
+ query_string_params.to_h { |p| p.split "=", 2 }
139
139
  else
140
140
  {}
141
141
  end
@@ -173,7 +173,7 @@ module Google
173
173
 
174
174
  verb, uri, query_string_params, body = ServiceStub.transcode_get_login_profile_request request_pb
175
175
  query_string_params = if query_string_params.any?
176
- query_string_params.to_h { |p| p.split("=", 2) }
176
+ query_string_params.to_h { |p| p.split "=", 2 }
177
177
  else
178
178
  {}
179
179
  end
@@ -211,7 +211,7 @@ module Google
211
211
 
212
212
  verb, uri, query_string_params, body = ServiceStub.transcode_get_ssh_public_key_request request_pb
213
213
  query_string_params = if query_string_params.any?
214
- query_string_params.to_h { |p| p.split("=", 2) }
214
+ query_string_params.to_h { |p| p.split "=", 2 }
215
215
  else
216
216
  {}
217
217
  end
@@ -249,7 +249,7 @@ module Google
249
249
 
250
250
  verb, uri, query_string_params, body = ServiceStub.transcode_import_ssh_public_key_request request_pb
251
251
  query_string_params = if query_string_params.any?
252
- query_string_params.to_h { |p| p.split("=", 2) }
252
+ query_string_params.to_h { |p| p.split "=", 2 }
253
253
  else
254
254
  {}
255
255
  end
@@ -287,7 +287,7 @@ module Google
287
287
 
288
288
  verb, uri, query_string_params, body = ServiceStub.transcode_update_ssh_public_key_request request_pb
289
289
  query_string_params = if query_string_params.any?
290
- query_string_params.to_h { |p| p.split("=", 2) }
290
+ query_string_params.to_h { |p| p.split "=", 2 }
291
291
  else
292
292
  {}
293
293
  end
@@ -306,6 +306,44 @@ module Google
306
306
  result
307
307
  end
308
308
 
309
+ ##
310
+ # Baseline implementation for the sign_ssh_public_key REST call
311
+ #
312
+ # @param request_pb [::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyRequest]
313
+ # A request object representing the call parameters. Required.
314
+ # @param options [::Gapic::CallOptions]
315
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
316
+ #
317
+ # @yield [result, operation] Access the result along with the TransportOperation object
318
+ # @yieldparam result [::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyResponse]
319
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
320
+ #
321
+ # @return [::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyResponse]
322
+ # A result object deserialized from the server's reply
323
+ def sign_ssh_public_key request_pb, options = nil
324
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
325
+
326
+ verb, uri, query_string_params, body = ServiceStub.transcode_sign_ssh_public_key_request request_pb
327
+ query_string_params = if query_string_params.any?
328
+ query_string_params.to_h { |p| p.split "=", 2 }
329
+ else
330
+ {}
331
+ end
332
+
333
+ response = @client_stub.make_http_request(
334
+ verb,
335
+ uri: uri,
336
+ body: body || "",
337
+ params: query_string_params,
338
+ options: options
339
+ )
340
+ operation = ::Gapic::Rest::TransportOperation.new response
341
+ result = ::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyResponse.decode_json response.body, ignore_unknown_fields: true
342
+
343
+ yield result, operation if block_given?
344
+ result
345
+ end
346
+
309
347
  ##
310
348
  # @private
311
349
  #
@@ -455,6 +493,28 @@ module Google
455
493
  )
456
494
  transcoder.transcode request_pb
457
495
  end
496
+
497
+ ##
498
+ # @private
499
+ #
500
+ # GRPC transcoding helper method for the sign_ssh_public_key REST call
501
+ #
502
+ # @param request_pb [::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyRequest]
503
+ # A request object representing the call parameters. Required.
504
+ # @return [Array(String, [String, nil], Hash{String => String})]
505
+ # Uri, Body, Query string parameters
506
+ def self.transcode_sign_ssh_public_key_request request_pb
507
+ transcoder = Gapic::Rest::GrpcTranscoder.new
508
+ .with_bindings(
509
+ uri_method: :post,
510
+ uri_template: "/v1beta/{parent}:signSshPublicKey",
511
+ body: "*",
512
+ matches: [
513
+ ["parent", %r{^users/[^/]+/projects/[^/]+/zones/[^/]+/?$}, false]
514
+ ]
515
+ )
516
+ transcoder.transcode request_pb
517
+ end
458
518
  end
459
519
  end
460
520
  end
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module OsLogin
23
23
  module V1beta
24
- VERSION = "0.7.0"
24
+ VERSION = "0.9.0"
25
25
  end
26
26
  end
27
27
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: google/cloud/oslogin/common/common.proto
3
4
 
@@ -6,33 +7,31 @@ require 'google/protobuf'
6
7
  require 'google/api/field_behavior_pb'
7
8
  require 'google/api/resource_pb'
8
9
 
9
- Google::Protobuf::DescriptorPool.generated_pool.build do
10
- add_file("google/cloud/oslogin/common/common.proto", :syntax => :proto3) do
11
- add_message "google.cloud.oslogin.common.PosixAccount" do
12
- optional :primary, :bool, 1
13
- optional :username, :string, 2
14
- optional :uid, :int64, 3
15
- optional :gid, :int64, 4
16
- optional :home_directory, :string, 5
17
- optional :shell, :string, 6
18
- optional :gecos, :string, 7
19
- optional :system_id, :string, 8
20
- optional :account_id, :string, 9
21
- optional :operating_system_type, :enum, 10, "google.cloud.oslogin.common.OperatingSystemType"
22
- optional :name, :string, 11
23
- end
24
- add_message "google.cloud.oslogin.common.SshPublicKey" do
25
- optional :key, :string, 1
26
- optional :expiration_time_usec, :int64, 2
27
- optional :fingerprint, :string, 3
28
- optional :name, :string, 4
29
- end
30
- add_enum "google.cloud.oslogin.common.OperatingSystemType" do
31
- value :OPERATING_SYSTEM_TYPE_UNSPECIFIED, 0
32
- value :LINUX, 1
33
- value :WINDOWS, 2
10
+
11
+ descriptor_data = "\n(google/cloud/oslogin/common/common.proto\x12\x1bgoogle.cloud.oslogin.common\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\"\xdc\x02\n\x0cPosixAccount\x12\x0f\n\x07primary\x18\x01 \x01(\x08\x12\x10\n\x08username\x18\x02 \x01(\t\x12\x0b\n\x03uid\x18\x03 \x01(\x03\x12\x0b\n\x03gid\x18\x04 \x01(\x03\x12\x16\n\x0ehome_directory\x18\x05 \x01(\t\x12\r\n\x05shell\x18\x06 \x01(\t\x12\r\n\x05gecos\x18\x07 \x01(\t\x12\x11\n\tsystem_id\x18\x08 \x01(\t\x12\x17\n\naccount_id\x18\t \x01(\tB\x03\xe0\x41\x03\x12O\n\x15operating_system_type\x18\n \x01(\x0e\x32\x30.google.cloud.oslogin.common.OperatingSystemType\x12\x11\n\x04name\x18\x0b \x01(\tB\x03\xe0\x41\x03:I\xea\x41\x46\n#oslogin.googleapis.com/PosixAccount\x12\x1fusers/{user}/projects/{project}\"\xba\x01\n\x0cSshPublicKey\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1c\n\x14\x65xpiration_time_usec\x18\x02 \x01(\x03\x12\x18\n\x0b\x66ingerprint\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04name\x18\x04 \x01(\tB\x03\xe0\x41\x03:R\xea\x41O\n#oslogin.googleapis.com/SshPublicKey\x12(users/{user}/sshPublicKeys/{fingerprint}*T\n\x13OperatingSystemType\x12%\n!OPERATING_SYSTEM_TYPE_UNSPECIFIED\x10\x00\x12\t\n\x05LINUX\x10\x01\x12\x0b\n\x07WINDOWS\x10\x02\x42\xf0\x01\n\x1f\x63om.google.cloud.oslogin.commonB\x0cOsLoginProtoZ4cloud.google.com/go/oslogin/common/commonpb;commonpb\xaa\x02\x1bGoogle.Cloud.OsLogin.Common\xca\x02\x1bGoogle\\Cloud\\OsLogin\\Common\xea\x02\x1eGoogle::Cloud::OsLogin::Common\xea\x41+\n\x1boslogin.googleapis.com/User\x12\x0cusers/{user}b\x06proto3"
12
+
13
+ pool = Google::Protobuf::DescriptorPool.generated_pool
14
+
15
+ begin
16
+ pool.add_serialized_file(descriptor_data)
17
+ rescue TypeError => e
18
+ # Compatibility code: will be removed in the next major version.
19
+ require 'google/protobuf/descriptor_pb'
20
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
21
+ parsed.clear_dependency
22
+ serialized = parsed.class.encode(parsed)
23
+ file = pool.add_serialized_file(serialized)
24
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
25
+ imports = [
26
+ ]
27
+ imports.each do |type_name, expected_filename|
28
+ import_file = pool.lookup(type_name).file_descriptor
29
+ if import_file.name != expected_filename
30
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
34
31
  end
35
32
  end
33
+ warn "Each proto file must use a consistent fully-qualified name."
34
+ warn "This will become an error in the next major version."
36
35
  end
37
36
 
38
37
  module Google
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: google/cloud/oslogin/v1beta/oslogin.proto
3
4
 
@@ -11,68 +12,33 @@ require 'google/cloud/oslogin/common/common_pb'
11
12
  require 'google/protobuf/empty_pb'
12
13
  require 'google/protobuf/field_mask_pb'
13
14
 
14
- Google::Protobuf::DescriptorPool.generated_pool.build do
15
- add_file("google/cloud/oslogin/v1beta/oslogin.proto", :syntax => :proto3) do
16
- add_message "google.cloud.oslogin.v1beta.LoginProfile" do
17
- optional :name, :string, 1
18
- repeated :posix_accounts, :message, 2, "google.cloud.oslogin.common.PosixAccount"
19
- map :ssh_public_keys, :string, :message, 3, "google.cloud.oslogin.common.SshPublicKey"
20
- repeated :security_keys, :message, 5, "google.cloud.oslogin.v1beta.SecurityKey"
21
- end
22
- add_message "google.cloud.oslogin.v1beta.CreateSshPublicKeyRequest" do
23
- optional :parent, :string, 1
24
- optional :ssh_public_key, :message, 2, "google.cloud.oslogin.common.SshPublicKey"
25
- end
26
- add_message "google.cloud.oslogin.v1beta.DeletePosixAccountRequest" do
27
- optional :name, :string, 1
28
- end
29
- add_message "google.cloud.oslogin.v1beta.DeleteSshPublicKeyRequest" do
30
- optional :name, :string, 1
31
- end
32
- add_message "google.cloud.oslogin.v1beta.GetLoginProfileRequest" do
33
- optional :name, :string, 1
34
- optional :project_id, :string, 2
35
- optional :system_id, :string, 3
36
- optional :view, :enum, 4, "google.cloud.oslogin.v1beta.LoginProfileView"
37
- end
38
- add_message "google.cloud.oslogin.v1beta.GetSshPublicKeyRequest" do
39
- optional :name, :string, 1
40
- end
41
- add_message "google.cloud.oslogin.v1beta.ImportSshPublicKeyRequest" do
42
- optional :parent, :string, 1
43
- optional :ssh_public_key, :message, 2, "google.cloud.oslogin.common.SshPublicKey"
44
- optional :project_id, :string, 3
45
- optional :view, :enum, 4, "google.cloud.oslogin.v1beta.LoginProfileView"
46
- end
47
- add_message "google.cloud.oslogin.v1beta.ImportSshPublicKeyResponse" do
48
- optional :login_profile, :message, 1, "google.cloud.oslogin.v1beta.LoginProfile"
49
- optional :details, :string, 2
50
- end
51
- add_message "google.cloud.oslogin.v1beta.UpdateSshPublicKeyRequest" do
52
- optional :name, :string, 1
53
- optional :ssh_public_key, :message, 2, "google.cloud.oslogin.common.SshPublicKey"
54
- optional :update_mask, :message, 3, "google.protobuf.FieldMask"
55
- end
56
- add_message "google.cloud.oslogin.v1beta.SecurityKey" do
57
- optional :public_key, :string, 1
58
- optional :private_key, :string, 2
59
- oneof :protocol_type do
60
- optional :universal_two_factor, :message, 3, "google.cloud.oslogin.v1beta.UniversalTwoFactor"
61
- optional :web_authn, :message, 4, "google.cloud.oslogin.v1beta.WebAuthn"
62
- end
63
- end
64
- add_message "google.cloud.oslogin.v1beta.UniversalTwoFactor" do
65
- optional :app_id, :string, 1
66
- end
67
- add_message "google.cloud.oslogin.v1beta.WebAuthn" do
68
- optional :rp_id, :string, 1
69
- end
70
- add_enum "google.cloud.oslogin.v1beta.LoginProfileView" do
71
- value :LOGIN_PROFILE_VIEW_UNSPECIFIED, 0
72
- value :BASIC, 1
73
- value :SECURITY_KEY, 2
15
+
16
+ descriptor_data = "\n)google/cloud/oslogin/v1beta/oslogin.proto\x12\x1bgoogle.cloud.oslogin.v1beta\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a(google/cloud/oslogin/common/common.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\"\xdd\x02\n\x0cLoginProfile\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x41\n\x0eposix_accounts\x18\x02 \x03(\x0b\x32).google.cloud.oslogin.common.PosixAccount\x12U\n\x0fssh_public_keys\x18\x03 \x03(\x0b\x32<.google.cloud.oslogin.v1beta.LoginProfile.SshPublicKeysEntry\x12?\n\rsecurity_keys\x18\x05 \x03(\x0b\x32(.google.cloud.oslogin.v1beta.SecurityKey\x1a_\n\x12SshPublicKeysEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x38\n\x05value\x18\x02 \x01(\x0b\x32).google.cloud.oslogin.common.SshPublicKey:\x02\x38\x01\"\xa0\x01\n\x19\x43reateSshPublicKeyRequest\x12;\n\x06parent\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\x12#oslogin.googleapis.com/SshPublicKey\x12\x46\n\x0essh_public_key\x18\x02 \x01(\x0b\x32).google.cloud.oslogin.common.SshPublicKeyB\x03\xe0\x41\x02\"V\n\x19\x44\x65letePosixAccountRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#oslogin.googleapis.com/PosixAccount\"V\n\x19\x44\x65leteSshPublicKeyRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#oslogin.googleapis.com/SshPublicKey\"\xaf\x01\n\x16GetLoginProfileRequest\x12\x31\n\x04name\x18\x01 \x01(\tB#\xe0\x41\x02\xfa\x41\x1d\n\x1boslogin.googleapis.com/User\x12\x12\n\nproject_id\x18\x02 \x01(\t\x12\x11\n\tsystem_id\x18\x03 \x01(\t\x12;\n\x04view\x18\x04 \x01(\x0e\x32-.google.cloud.oslogin.v1beta.LoginProfileView\"S\n\x16GetSshPublicKeyRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#oslogin.googleapis.com/SshPublicKey\"\xee\x01\n\x19ImportSshPublicKeyRequest\x12\x38\n\x06parent\x18\x01 \x01(\tB(\xfa\x41%\x12#oslogin.googleapis.com/SshPublicKey\x12\x46\n\x0essh_public_key\x18\x02 \x01(\x0b\x32).google.cloud.oslogin.common.SshPublicKeyB\x03\xe0\x41\x02\x12\x12\n\nproject_id\x18\x03 \x01(\t\x12;\n\x04view\x18\x04 \x01(\x0e\x32-.google.cloud.oslogin.v1beta.LoginProfileView\"o\n\x1aImportSshPublicKeyResponse\x12@\n\rlogin_profile\x18\x01 \x01(\x0b\x32).google.cloud.oslogin.v1beta.LoginProfile\x12\x0f\n\x07\x64\x65tails\x18\x02 \x01(\t\"\xcf\x01\n\x19UpdateSshPublicKeyRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#oslogin.googleapis.com/SshPublicKey\x12\x46\n\x0essh_public_key\x18\x02 \x01(\x0b\x32).google.cloud.oslogin.common.SshPublicKeyB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"\xd4\x01\n\x0bSecurityKey\x12\x12\n\npublic_key\x18\x01 \x01(\t\x12\x13\n\x0bprivate_key\x18\x02 \x01(\t\x12O\n\x14universal_two_factor\x18\x03 \x01(\x0b\x32/.google.cloud.oslogin.v1beta.UniversalTwoFactorH\x00\x12:\n\tweb_authn\x18\x04 \x01(\x0b\x32%.google.cloud.oslogin.v1beta.WebAuthnH\x00\x42\x0f\n\rprotocol_type\"$\n\x12UniversalTwoFactor\x12\x0e\n\x06\x61pp_id\x18\x01 \x01(\t\"\x19\n\x08WebAuthn\x12\r\n\x05rp_id\x18\x01 \x01(\t\"A\n\x17SignSshPublicKeyRequest\x12\x16\n\x0essh_public_key\x18\x01 \x01(\t\x12\x0e\n\x06parent\x18\x02 \x01(\t\"9\n\x18SignSshPublicKeyResponse\x12\x1d\n\x15signed_ssh_public_key\x18\x01 \x01(\t*S\n\x10LoginProfileView\x12\"\n\x1eLOGIN_PROFILE_VIEW_UNSPECIFIED\x10\x00\x12\t\n\x05\x42\x41SIC\x10\x01\x12\x10\n\x0cSECURITY_KEY\x10\x02\x32\xa9\x0e\n\x0eOsLoginService\x12\xcf\x01\n\x12\x43reateSshPublicKey\x12\x36.google.cloud.oslogin.v1beta.CreateSshPublicKeyRequest\x1a).google.cloud.oslogin.common.SshPublicKey\"V\x82\xd3\xe4\x93\x02\x38\"&/v1beta/{parent=users/*}/sshPublicKeys:\x0essh_public_key\xda\x41\x15parent,ssh_public_key\x12\x96\x01\n\x12\x44\x65letePosixAccount\x12\x36.google.cloud.oslogin.v1beta.DeletePosixAccountRequest\x1a\x16.google.protobuf.Empty\"0\x82\xd3\xe4\x93\x02#*!/v1beta/{name=users/*/projects/*}\xda\x41\x04name\x12\x9b\x01\n\x12\x44\x65leteSshPublicKey\x12\x36.google.cloud.oslogin.v1beta.DeleteSshPublicKeyRequest\x1a\x16.google.protobuf.Empty\"5\x82\xd3\xe4\x93\x02(*&/v1beta/{name=users/*/sshPublicKeys/*}\xda\x41\x04name\x12\xa5\x01\n\x0fGetLoginProfile\x12\x33.google.cloud.oslogin.v1beta.GetLoginProfileRequest\x1a).google.cloud.oslogin.v1beta.LoginProfile\"2\x82\xd3\xe4\x93\x02%\x12#/v1beta/{name=users/*}/loginProfile\xda\x41\x04name\x12\xa8\x01\n\x0fGetSshPublicKey\x12\x33.google.cloud.oslogin.v1beta.GetSshPublicKeyRequest\x1a).google.cloud.oslogin.common.SshPublicKey\"5\x82\xd3\xe4\x93\x02(\x12&/v1beta/{name=users/*/sshPublicKeys/*}\xda\x41\x04name\x12\x85\x02\n\x12ImportSshPublicKey\x12\x36.google.cloud.oslogin.v1beta.ImportSshPublicKeyRequest\x1a\x37.google.cloud.oslogin.v1beta.ImportSshPublicKeyResponse\"~\x82\xd3\xe4\x93\x02=\"+/v1beta/{parent=users/*}:importSshPublicKey:\x0essh_public_key\xda\x41\x15parent,ssh_public_key\xda\x41 parent,ssh_public_key,project_id\x12\xef\x01\n\x12UpdateSshPublicKey\x12\x36.google.cloud.oslogin.v1beta.UpdateSshPublicKeyRequest\x1a).google.cloud.oslogin.common.SshPublicKey\"v\x82\xd3\xe4\x93\x02\x38\x32&/v1beta/{name=users/*/sshPublicKeys/*}:\x0essh_public_key\xda\x41\x13name,ssh_public_key\xda\x41\x1fname,ssh_public_key,update_mask\x12\xe0\x01\n\x10SignSshPublicKey\x12\x34.google.cloud.oslogin.v1beta.SignSshPublicKeyRequest\x1a\x35.google.cloud.oslogin.v1beta.SignSshPublicKeyResponse\"_\x82\xd3\xe4\x93\x02\x41\"</v1beta/{parent=users/*/projects/*/zones/*}:signSshPublicKey:\x01*\xda\x41\x15parent,ssh_public_key\x1a\xdd\x01\xca\x41\x16oslogin.googleapis.com\xd2\x41\xc0\x01https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/cloud-platform.read-only,https://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/compute.readonlyB\xc9\x01\n\x1f\x63om.google.cloud.oslogin.v1betaB\x0cOsLoginProtoP\x01Z9cloud.google.com/go/oslogin/apiv1beta/osloginpb;osloginpb\xaa\x02\x1bGoogle.Cloud.OsLogin.V1Beta\xca\x02\x1bGoogle\\Cloud\\OsLogin\\V1beta\xea\x02\x1eGoogle::Cloud::OsLogin::V1betab\x06proto3"
17
+
18
+ pool = Google::Protobuf::DescriptorPool.generated_pool
19
+
20
+ begin
21
+ pool.add_serialized_file(descriptor_data)
22
+ rescue TypeError => e
23
+ # Compatibility code: will be removed in the next major version.
24
+ require 'google/protobuf/descriptor_pb'
25
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
26
+ parsed.clear_dependency
27
+ serialized = parsed.class.encode(parsed)
28
+ file = pool.add_serialized_file(serialized)
29
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
30
+ imports = [
31
+ ["google.cloud.oslogin.common.PosixAccount", "google/cloud/oslogin/common/common.proto"],
32
+ ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
33
+ ]
34
+ imports.each do |type_name, expected_filename|
35
+ import_file = pool.lookup(type_name).file_descriptor
36
+ if import_file.name != expected_filename
37
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
74
38
  end
75
39
  end
40
+ warn "Each proto file must use a consistent fully-qualified name."
41
+ warn "This will become an error in the next major version."
76
42
  end
77
43
 
78
44
  module Google
@@ -91,6 +57,8 @@ module Google
91
57
  SecurityKey = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oslogin.v1beta.SecurityKey").msgclass
92
58
  UniversalTwoFactor = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oslogin.v1beta.UniversalTwoFactor").msgclass
93
59
  WebAuthn = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oslogin.v1beta.WebAuthn").msgclass
60
+ SignSshPublicKeyRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oslogin.v1beta.SignSshPublicKeyRequest").msgclass
61
+ SignSshPublicKeyResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oslogin.v1beta.SignSshPublicKeyResponse").msgclass
94
62
  LoginProfileView = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.oslogin.v1beta.LoginProfileView").enummodule
95
63
  end
96
64
  end
@@ -54,6 +54,8 @@ module Google
54
54
  # Updates an SSH public key and returns the profile information. This method
55
55
  # supports patch semantics.
56
56
  rpc :UpdateSshPublicKey, ::Google::Cloud::OsLogin::V1beta::UpdateSshPublicKeyRequest, ::Google::Cloud::OsLogin::Common::SshPublicKey
57
+ # Signs an SSH public key for a user to authenticate to an instance.
58
+ rpc :SignSshPublicKey, ::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyRequest, ::Google::Cloud::OsLogin::V1beta::SignSshPublicKeyResponse
57
59
  end
58
60
 
59
61
  Stub = Service.rpc_stub_class
@@ -35,7 +35,9 @@ module Google
35
35
  # Details about how and where to publish client libraries.
36
36
  # @!attribute [rw] version
37
37
  # @return [::String]
38
- # Version of the API to apply these settings to.
38
+ # Version of the API to apply these settings to. This is the full protobuf
39
+ # package for the API, ending in the version element.
40
+ # Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
39
41
  # @!attribute [rw] launch_stage
40
42
  # @return [::Google::Api::LaunchStage]
41
43
  # Launch stage of this version of the API.
@@ -81,7 +83,7 @@ module Google
81
83
  # long-running operation pattern.
82
84
  # @!attribute [rw] new_issue_uri
83
85
  # @return [::String]
84
- # Link to a place that API users can report issues. Example:
86
+ # Link to a *public* URI where users can report issues. Example:
85
87
  # https://issuetracker.google.com/issues/new?component=190865&template=1161103
86
88
  # @!attribute [rw] documentation_uri
87
89
  # @return [::String]
@@ -111,6 +113,10 @@ module Google
111
113
  # Client library settings. If the same version string appears multiple
112
114
  # times in this list, then the last one wins. Settings from earlier
113
115
  # settings with the same version string are discarded.
116
+ # @!attribute [rw] proto_reference_documentation_uri
117
+ # @return [::String]
118
+ # Optional link to proto reference documentation. Example:
119
+ # https://cloud.google.com/pubsub/lite/docs/reference/rpc
114
120
  class Publishing
115
121
  include ::Google::Protobuf::MessageExts
116
122
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -203,9 +209,57 @@ module Google
203
209
  # @!attribute [rw] common
204
210
  # @return [::Google::Api::CommonLanguageSettings]
205
211
  # Some settings.
212
+ # @!attribute [rw] renamed_services
213
+ # @return [::Google::Protobuf::Map{::String => ::String}]
214
+ # Map from original service names to renamed versions.
215
+ # This is used when the default generated types
216
+ # would cause a naming conflict. (Neither name is
217
+ # fully-qualified.)
218
+ # Example: Subscriber to SubscriberServiceApi.
219
+ # @!attribute [rw] renamed_resources
220
+ # @return [::Google::Protobuf::Map{::String => ::String}]
221
+ # Map from full resource types to the effective short name
222
+ # for the resource. This is used when otherwise resource
223
+ # named from different services would cause naming collisions.
224
+ # Example entry:
225
+ # "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
226
+ # @!attribute [rw] ignored_resources
227
+ # @return [::Array<::String>]
228
+ # List of full resource types to ignore during generation.
229
+ # This is typically used for API-specific Location resources,
230
+ # which should be handled by the generator as if they were actually
231
+ # the common Location resources.
232
+ # Example entry: "documentai.googleapis.com/Location"
233
+ # @!attribute [rw] forced_namespace_aliases
234
+ # @return [::Array<::String>]
235
+ # Namespaces which must be aliased in snippets due to
236
+ # a known (but non-generator-predictable) naming collision
237
+ # @!attribute [rw] handwritten_signatures
238
+ # @return [::Array<::String>]
239
+ # Method signatures (in the form "service.method(signature)")
240
+ # which are provided separately, so shouldn't be generated.
241
+ # Snippets *calling* these methods are still generated, however.
206
242
  class DotnetSettings
207
243
  include ::Google::Protobuf::MessageExts
208
244
  extend ::Google::Protobuf::MessageExts::ClassMethods
245
+
246
+ # @!attribute [rw] key
247
+ # @return [::String]
248
+ # @!attribute [rw] value
249
+ # @return [::String]
250
+ class RenamedServicesEntry
251
+ include ::Google::Protobuf::MessageExts
252
+ extend ::Google::Protobuf::MessageExts::ClassMethods
253
+ end
254
+
255
+ # @!attribute [rw] key
256
+ # @return [::String]
257
+ # @!attribute [rw] value
258
+ # @return [::String]
259
+ class RenamedResourcesEntry
260
+ include ::Google::Protobuf::MessageExts
261
+ extend ::Google::Protobuf::MessageExts::ClassMethods
262
+ end
209
263
  end
210
264
 
211
265
  # Settings for Ruby client libraries.
@@ -240,8 +294,8 @@ module Google
240
294
  # Example of a YAML configuration::
241
295
  #
242
296
  # publishing:
243
- # method_behavior:
244
- # - selector: CreateAdDomain
297
+ # method_settings:
298
+ # - selector: google.cloud.speech.v2.Speech.BatchRecognize
245
299
  # long_running:
246
300
  # initial_poll_delay:
247
301
  # seconds: 60 # 1 minute
@@ -299,6 +353,15 @@ module Google
299
353
 
300
354
  # Street View Org.
301
355
  STREET_VIEW = 4
356
+
357
+ # Shopping Org.
358
+ SHOPPING = 5
359
+
360
+ # Geo Org.
361
+ GEO = 6
362
+
363
+ # Generative AI - https://developers.generativeai.google
364
+ GENERATIVE_AI = 7
302
365
  end
303
366
 
304
367
  # To where should client libraries be published?
@@ -196,6 +196,28 @@ module Google
196
196
  extend ::Google::Protobuf::MessageExts::ClassMethods
197
197
  end
198
198
 
199
+ # @!attribute [rw] ssh_public_key
200
+ # @return [::String]
201
+ # The SSH public key to sign.
202
+ # @!attribute [rw] parent
203
+ # @return [::String]
204
+ # The parent project and zone for the signing request. This is needed to
205
+ # properly ensure per-organization ISS processing and potentially to provide
206
+ # for the possibility of zone-specific certificates used in the signing
207
+ # process.
208
+ class SignSshPublicKeyRequest
209
+ include ::Google::Protobuf::MessageExts
210
+ extend ::Google::Protobuf::MessageExts::ClassMethods
211
+ end
212
+
213
+ # @!attribute [rw] signed_ssh_public_key
214
+ # @return [::String]
215
+ # The signed SSH public key to use in the SSH handshake.
216
+ class SignSshPublicKeyResponse
217
+ include ::Google::Protobuf::MessageExts
218
+ extend ::Google::Protobuf::MessageExts::ClassMethods
219
+ end
220
+
199
221
  # The login profile view limits the user content retrieved.
200
222
  module LoginProfileView
201
223
  # The default login profile view. The API defaults to the BASIC view.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-os_login-v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.9.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: 2023-03-08 00:00:00.000000000 Z
11
+ date: 2023-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.18.0
19
+ version: 0.19.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.18.0
29
+ version: 0.19.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a