google-cloud-access_approval-v1 0.8.0 → 0.10.0
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 +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/access_approval/v1/access_approval/client.rb +16 -5
- data/lib/google/cloud/access_approval/v1/access_approval/rest/client.rb +154 -4
- data/lib/google/cloud/access_approval/v1/access_approval/rest/service_stub.rb +9 -9
- data/lib/google/cloud/access_approval/v1/version.rb +1 -1
- data/lib/google/cloud/accessapproval/v1/accessapproval_pb.rb +26 -108
- data/proto_docs/google/api/client.rb +67 -4
- data/proto_docs/google/api/field_behavior.rb +14 -0
- data/proto_docs/google/protobuf/timestamp.rb +1 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a4addf76e5675c1345828dc03df127f968c022e1b244d7f383952342b7e54fa
|
4
|
+
data.tar.gz: 40838d44b816f426b95445a4066b978b3ff8d6d6246bca31c92c4c6e65f2daea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c2b6ac3958fd544dff17d888f991896d73e61ca152898b85f85b2ba81c0fb99309be7dc55a4679c34d5f8f4a5c194a25de01e0e726c258516c8cc57a81df36b
|
7
|
+
data.tar.gz: c008c952d02074c09699904f731f187eedac04477c7b5d4473ccdaf6c3ebd511bfe165a4bc23195728553fbac227b708d7c2a89a1333b3a41233463a22ae4421
|
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://
|
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
|
|
@@ -180,7 +180,7 @@ module Google
|
|
180
180
|
credentials = @config.credentials
|
181
181
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
182
182
|
# but only if the default endpoint does not have a region prefix.
|
183
|
-
enable_self_signed_jwt = @config.endpoint ==
|
183
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
184
184
|
!@config.endpoint.split(".").first.include?("-")
|
185
185
|
credentials ||= Credentials.default scope: @config.scope,
|
186
186
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -195,7 +195,8 @@ module Google
|
|
195
195
|
credentials: credentials,
|
196
196
|
endpoint: @config.endpoint,
|
197
197
|
channel_args: @config.channel_args,
|
198
|
-
interceptors: @config.interceptors
|
198
|
+
interceptors: @config.interceptors,
|
199
|
+
channel_pool_config: @config.channel_pool
|
199
200
|
)
|
200
201
|
end
|
201
202
|
|
@@ -1071,9 +1072,9 @@ module Google
|
|
1071
1072
|
# * (`String`) The path to a service account key file in JSON format
|
1072
1073
|
# * (`Hash`) A service account key as a Hash
|
1073
1074
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
1074
|
-
# (see the [googleauth docs](https://
|
1075
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
1075
1076
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1076
|
-
# (see the [signet docs](https://
|
1077
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1077
1078
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
1078
1079
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
1079
1080
|
# * (`nil`) indicating no credentials
|
@@ -1115,7 +1116,9 @@ module Google
|
|
1115
1116
|
class Configuration
|
1116
1117
|
extend ::Gapic::Config
|
1117
1118
|
|
1118
|
-
|
1119
|
+
DEFAULT_ENDPOINT = "accessapproval.googleapis.com"
|
1120
|
+
|
1121
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
1119
1122
|
config_attr :credentials, nil do |value|
|
1120
1123
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1121
1124
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -1150,6 +1153,14 @@ module Google
|
|
1150
1153
|
end
|
1151
1154
|
end
|
1152
1155
|
|
1156
|
+
##
|
1157
|
+
# Configuration for the channel pool
|
1158
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
1159
|
+
#
|
1160
|
+
def channel_pool
|
1161
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
1162
|
+
end
|
1163
|
+
|
1153
1164
|
##
|
1154
1165
|
# Configuration RPC class for the AccessApproval API.
|
1155
1166
|
#
|
@@ -176,7 +176,7 @@ module Google
|
|
176
176
|
credentials = @config.credentials
|
177
177
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
178
178
|
# but only if the default endpoint does not have a region prefix.
|
179
|
-
enable_self_signed_jwt = @config.endpoint ==
|
179
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
180
180
|
!@config.endpoint.split(".").first.include?("-")
|
181
181
|
credentials ||= Credentials.default scope: @config.scope,
|
182
182
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -239,6 +239,26 @@ module Google
|
|
239
239
|
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::AccessApproval::V1::ApprovalRequest>]
|
240
240
|
#
|
241
241
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
242
|
+
#
|
243
|
+
# @example Basic example
|
244
|
+
# require "google/cloud/access_approval/v1"
|
245
|
+
#
|
246
|
+
# # Create a client object. The client can be reused for multiple calls.
|
247
|
+
# client = Google::Cloud::AccessApproval::V1::AccessApproval::Rest::Client.new
|
248
|
+
#
|
249
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
250
|
+
# request = Google::Cloud::AccessApproval::V1::ListApprovalRequestsMessage.new
|
251
|
+
#
|
252
|
+
# # Call the list_approval_requests method.
|
253
|
+
# result = client.list_approval_requests request
|
254
|
+
#
|
255
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
256
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
257
|
+
# result.each do |item|
|
258
|
+
# # Each element is of type ::Google::Cloud::AccessApproval::V1::ApprovalRequest.
|
259
|
+
# p item
|
260
|
+
# end
|
261
|
+
#
|
242
262
|
def list_approval_requests request, options = nil
|
243
263
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
244
264
|
|
@@ -304,6 +324,22 @@ module Google
|
|
304
324
|
# @return [::Google::Cloud::AccessApproval::V1::ApprovalRequest]
|
305
325
|
#
|
306
326
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
327
|
+
#
|
328
|
+
# @example Basic example
|
329
|
+
# require "google/cloud/access_approval/v1"
|
330
|
+
#
|
331
|
+
# # Create a client object. The client can be reused for multiple calls.
|
332
|
+
# client = Google::Cloud::AccessApproval::V1::AccessApproval::Rest::Client.new
|
333
|
+
#
|
334
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
335
|
+
# request = Google::Cloud::AccessApproval::V1::GetApprovalRequestMessage.new
|
336
|
+
#
|
337
|
+
# # Call the get_approval_request method.
|
338
|
+
# result = client.get_approval_request request
|
339
|
+
#
|
340
|
+
# # The returned object is of type Google::Cloud::AccessApproval::V1::ApprovalRequest.
|
341
|
+
# p result
|
342
|
+
#
|
307
343
|
def get_approval_request request, options = nil
|
308
344
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
309
345
|
|
@@ -371,6 +407,22 @@ module Google
|
|
371
407
|
# @return [::Google::Cloud::AccessApproval::V1::ApprovalRequest]
|
372
408
|
#
|
373
409
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
410
|
+
#
|
411
|
+
# @example Basic example
|
412
|
+
# require "google/cloud/access_approval/v1"
|
413
|
+
#
|
414
|
+
# # Create a client object. The client can be reused for multiple calls.
|
415
|
+
# client = Google::Cloud::AccessApproval::V1::AccessApproval::Rest::Client.new
|
416
|
+
#
|
417
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
418
|
+
# request = Google::Cloud::AccessApproval::V1::ApproveApprovalRequestMessage.new
|
419
|
+
#
|
420
|
+
# # Call the approve_approval_request method.
|
421
|
+
# result = client.approve_approval_request request
|
422
|
+
#
|
423
|
+
# # The returned object is of type Google::Cloud::AccessApproval::V1::ApprovalRequest.
|
424
|
+
# p result
|
425
|
+
#
|
374
426
|
def approve_approval_request request, options = nil
|
375
427
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
376
428
|
|
@@ -442,6 +494,22 @@ module Google
|
|
442
494
|
# @return [::Google::Cloud::AccessApproval::V1::ApprovalRequest]
|
443
495
|
#
|
444
496
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
497
|
+
#
|
498
|
+
# @example Basic example
|
499
|
+
# require "google/cloud/access_approval/v1"
|
500
|
+
#
|
501
|
+
# # Create a client object. The client can be reused for multiple calls.
|
502
|
+
# client = Google::Cloud::AccessApproval::V1::AccessApproval::Rest::Client.new
|
503
|
+
#
|
504
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
505
|
+
# request = Google::Cloud::AccessApproval::V1::DismissApprovalRequestMessage.new
|
506
|
+
#
|
507
|
+
# # Call the dismiss_approval_request method.
|
508
|
+
# result = client.dismiss_approval_request request
|
509
|
+
#
|
510
|
+
# # The returned object is of type Google::Cloud::AccessApproval::V1::ApprovalRequest.
|
511
|
+
# p result
|
512
|
+
#
|
445
513
|
def dismiss_approval_request request, options = nil
|
446
514
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
447
515
|
|
@@ -511,6 +579,22 @@ module Google
|
|
511
579
|
# @return [::Google::Cloud::AccessApproval::V1::ApprovalRequest]
|
512
580
|
#
|
513
581
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
582
|
+
#
|
583
|
+
# @example Basic example
|
584
|
+
# require "google/cloud/access_approval/v1"
|
585
|
+
#
|
586
|
+
# # Create a client object. The client can be reused for multiple calls.
|
587
|
+
# client = Google::Cloud::AccessApproval::V1::AccessApproval::Rest::Client.new
|
588
|
+
#
|
589
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
590
|
+
# request = Google::Cloud::AccessApproval::V1::InvalidateApprovalRequestMessage.new
|
591
|
+
#
|
592
|
+
# # Call the invalidate_approval_request method.
|
593
|
+
# result = client.invalidate_approval_request request
|
594
|
+
#
|
595
|
+
# # The returned object is of type Google::Cloud::AccessApproval::V1::ApprovalRequest.
|
596
|
+
# p result
|
597
|
+
#
|
514
598
|
def invalidate_approval_request request, options = nil
|
515
599
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
516
600
|
|
@@ -574,6 +658,22 @@ module Google
|
|
574
658
|
# @return [::Google::Cloud::AccessApproval::V1::AccessApprovalSettings]
|
575
659
|
#
|
576
660
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
661
|
+
#
|
662
|
+
# @example Basic example
|
663
|
+
# require "google/cloud/access_approval/v1"
|
664
|
+
#
|
665
|
+
# # Create a client object. The client can be reused for multiple calls.
|
666
|
+
# client = Google::Cloud::AccessApproval::V1::AccessApproval::Rest::Client.new
|
667
|
+
#
|
668
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
669
|
+
# request = Google::Cloud::AccessApproval::V1::GetAccessApprovalSettingsMessage.new
|
670
|
+
#
|
671
|
+
# # Call the get_access_approval_settings method.
|
672
|
+
# result = client.get_access_approval_settings request
|
673
|
+
#
|
674
|
+
# # The returned object is of type Google::Cloud::AccessApproval::V1::AccessApprovalSettings.
|
675
|
+
# p result
|
676
|
+
#
|
577
677
|
def get_access_approval_settings request, options = nil
|
578
678
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
579
679
|
|
@@ -648,6 +748,22 @@ module Google
|
|
648
748
|
# @return [::Google::Cloud::AccessApproval::V1::AccessApprovalSettings]
|
649
749
|
#
|
650
750
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
751
|
+
#
|
752
|
+
# @example Basic example
|
753
|
+
# require "google/cloud/access_approval/v1"
|
754
|
+
#
|
755
|
+
# # Create a client object. The client can be reused for multiple calls.
|
756
|
+
# client = Google::Cloud::AccessApproval::V1::AccessApproval::Rest::Client.new
|
757
|
+
#
|
758
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
759
|
+
# request = Google::Cloud::AccessApproval::V1::UpdateAccessApprovalSettingsMessage.new
|
760
|
+
#
|
761
|
+
# # Call the update_access_approval_settings method.
|
762
|
+
# result = client.update_access_approval_settings request
|
763
|
+
#
|
764
|
+
# # The returned object is of type Google::Cloud::AccessApproval::V1::AccessApprovalSettings.
|
765
|
+
# p result
|
766
|
+
#
|
651
767
|
def update_access_approval_settings request, options = nil
|
652
768
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
653
769
|
|
@@ -715,6 +831,22 @@ module Google
|
|
715
831
|
# @return [::Google::Protobuf::Empty]
|
716
832
|
#
|
717
833
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
834
|
+
#
|
835
|
+
# @example Basic example
|
836
|
+
# require "google/cloud/access_approval/v1"
|
837
|
+
#
|
838
|
+
# # Create a client object. The client can be reused for multiple calls.
|
839
|
+
# client = Google::Cloud::AccessApproval::V1::AccessApproval::Rest::Client.new
|
840
|
+
#
|
841
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
842
|
+
# request = Google::Cloud::AccessApproval::V1::DeleteAccessApprovalSettingsMessage.new
|
843
|
+
#
|
844
|
+
# # Call the delete_access_approval_settings method.
|
845
|
+
# result = client.delete_access_approval_settings request
|
846
|
+
#
|
847
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
848
|
+
# p result
|
849
|
+
#
|
718
850
|
def delete_access_approval_settings request, options = nil
|
719
851
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
720
852
|
|
@@ -778,6 +910,22 @@ module Google
|
|
778
910
|
# @return [::Google::Cloud::AccessApproval::V1::AccessApprovalServiceAccount]
|
779
911
|
#
|
780
912
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
913
|
+
#
|
914
|
+
# @example Basic example
|
915
|
+
# require "google/cloud/access_approval/v1"
|
916
|
+
#
|
917
|
+
# # Create a client object. The client can be reused for multiple calls.
|
918
|
+
# client = Google::Cloud::AccessApproval::V1::AccessApproval::Rest::Client.new
|
919
|
+
#
|
920
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
921
|
+
# request = Google::Cloud::AccessApproval::V1::GetAccessApprovalServiceAccountMessage.new
|
922
|
+
#
|
923
|
+
# # Call the get_access_approval_service_account method.
|
924
|
+
# result = client.get_access_approval_service_account request
|
925
|
+
#
|
926
|
+
# # The returned object is of type Google::Cloud::AccessApproval::V1::AccessApprovalServiceAccount.
|
927
|
+
# p result
|
928
|
+
#
|
781
929
|
def get_access_approval_service_account request, options = nil
|
782
930
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
783
931
|
|
@@ -851,9 +999,9 @@ module Google
|
|
851
999
|
# * (`String`) The path to a service account key file in JSON format
|
852
1000
|
# * (`Hash`) A service account key as a Hash
|
853
1001
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
854
|
-
# (see the [googleauth docs](https://
|
1002
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
855
1003
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
856
|
-
# (see the [signet docs](https://
|
1004
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
857
1005
|
# * (`nil`) indicating no credentials
|
858
1006
|
# @return [::Object]
|
859
1007
|
# @!attribute [rw] scope
|
@@ -886,7 +1034,9 @@ module Google
|
|
886
1034
|
class Configuration
|
887
1035
|
extend ::Gapic::Config
|
888
1036
|
|
889
|
-
|
1037
|
+
DEFAULT_ENDPOINT = "accessapproval.googleapis.com"
|
1038
|
+
|
1039
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
890
1040
|
config_attr :credentials, nil do |value|
|
891
1041
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
892
1042
|
allowed.any? { |klass| klass === value }
|
@@ -59,7 +59,7 @@ module Google
|
|
59
59
|
|
60
60
|
verb, uri, query_string_params, body = ServiceStub.transcode_list_approval_requests_request request_pb
|
61
61
|
query_string_params = if query_string_params.any?
|
62
|
-
query_string_params.to_h { |p| p.split
|
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_get_approval_request_request request_pb
|
99
99
|
query_string_params = if query_string_params.any?
|
100
|
-
query_string_params.to_h { |p| p.split
|
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_approve_approval_request_request request_pb
|
137
137
|
query_string_params = if query_string_params.any?
|
138
|
-
query_string_params.to_h { |p| p.split
|
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_dismiss_approval_request_request request_pb
|
175
175
|
query_string_params = if query_string_params.any?
|
176
|
-
query_string_params.to_h { |p| p.split
|
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_invalidate_approval_request_request request_pb
|
213
213
|
query_string_params = if query_string_params.any?
|
214
|
-
query_string_params.to_h { |p| p.split
|
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_get_access_approval_settings_request request_pb
|
251
251
|
query_string_params = if query_string_params.any?
|
252
|
-
query_string_params.to_h { |p| p.split
|
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_access_approval_settings_request request_pb
|
289
289
|
query_string_params = if query_string_params.any?
|
290
|
-
query_string_params.to_h { |p| p.split
|
290
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
291
291
|
else
|
292
292
|
{}
|
293
293
|
end
|
@@ -325,7 +325,7 @@ module Google
|
|
325
325
|
|
326
326
|
verb, uri, query_string_params, body = ServiceStub.transcode_delete_access_approval_settings_request request_pb
|
327
327
|
query_string_params = if query_string_params.any?
|
328
|
-
query_string_params.to_h { |p| p.split
|
328
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
329
329
|
else
|
330
330
|
{}
|
331
331
|
end
|
@@ -363,7 +363,7 @@ module Google
|
|
363
363
|
|
364
364
|
verb, uri, query_string_params, body = ServiceStub.transcode_get_access_approval_service_account_request request_pb
|
365
365
|
query_string_params = if query_string_params.any?
|
366
|
-
query_string_params.to_h { |p| p.split
|
366
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
367
367
|
else
|
368
368
|
{}
|
369
369
|
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/accessapproval/v1/accessapproval.proto
|
3
4
|
|
@@ -11,116 +12,33 @@ require 'google/protobuf/empty_pb'
|
|
11
12
|
require 'google/protobuf/field_mask_pb'
|
12
13
|
require 'google/protobuf/timestamp_pb'
|
13
14
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
end
|
38
|
-
end
|
39
|
-
add_message "google.cloud.accessapproval.v1.ApproveDecision" do
|
40
|
-
optional :approve_time, :message, 1, "google.protobuf.Timestamp"
|
41
|
-
optional :expire_time, :message, 2, "google.protobuf.Timestamp"
|
42
|
-
optional :invalidate_time, :message, 3, "google.protobuf.Timestamp"
|
43
|
-
optional :signature_info, :message, 4, "google.cloud.accessapproval.v1.SignatureInfo"
|
44
|
-
optional :auto_approved, :bool, 5
|
45
|
-
end
|
46
|
-
add_message "google.cloud.accessapproval.v1.DismissDecision" do
|
47
|
-
optional :dismiss_time, :message, 1, "google.protobuf.Timestamp"
|
48
|
-
optional :implicit, :bool, 2
|
49
|
-
end
|
50
|
-
add_message "google.cloud.accessapproval.v1.ResourceProperties" do
|
51
|
-
optional :excludes_descendants, :bool, 1
|
52
|
-
end
|
53
|
-
add_message "google.cloud.accessapproval.v1.ApprovalRequest" do
|
54
|
-
optional :name, :string, 1
|
55
|
-
optional :requested_resource_name, :string, 2
|
56
|
-
optional :requested_resource_properties, :message, 9, "google.cloud.accessapproval.v1.ResourceProperties"
|
57
|
-
optional :requested_reason, :message, 3, "google.cloud.accessapproval.v1.AccessReason"
|
58
|
-
optional :requested_locations, :message, 4, "google.cloud.accessapproval.v1.AccessLocations"
|
59
|
-
optional :request_time, :message, 5, "google.protobuf.Timestamp"
|
60
|
-
optional :requested_expiration, :message, 6, "google.protobuf.Timestamp"
|
61
|
-
oneof :decision do
|
62
|
-
optional :approve, :message, 7, "google.cloud.accessapproval.v1.ApproveDecision"
|
63
|
-
optional :dismiss, :message, 8, "google.cloud.accessapproval.v1.DismissDecision"
|
64
|
-
end
|
65
|
-
end
|
66
|
-
add_message "google.cloud.accessapproval.v1.EnrolledService" do
|
67
|
-
optional :cloud_product, :string, 1
|
68
|
-
optional :enrollment_level, :enum, 2, "google.cloud.accessapproval.v1.EnrollmentLevel"
|
69
|
-
end
|
70
|
-
add_message "google.cloud.accessapproval.v1.AccessApprovalSettings" do
|
71
|
-
optional :name, :string, 1
|
72
|
-
repeated :notification_emails, :string, 2
|
73
|
-
repeated :enrolled_services, :message, 3, "google.cloud.accessapproval.v1.EnrolledService"
|
74
|
-
optional :enrolled_ancestor, :bool, 4
|
75
|
-
optional :active_key_version, :string, 6
|
76
|
-
optional :ancestor_has_active_key_version, :bool, 7
|
77
|
-
optional :invalid_key_version, :bool, 8
|
78
|
-
end
|
79
|
-
add_message "google.cloud.accessapproval.v1.AccessApprovalServiceAccount" do
|
80
|
-
optional :name, :string, 1
|
81
|
-
optional :account_email, :string, 2
|
82
|
-
end
|
83
|
-
add_message "google.cloud.accessapproval.v1.ListApprovalRequestsMessage" do
|
84
|
-
optional :parent, :string, 1
|
85
|
-
optional :filter, :string, 2
|
86
|
-
optional :page_size, :int32, 3
|
87
|
-
optional :page_token, :string, 4
|
88
|
-
end
|
89
|
-
add_message "google.cloud.accessapproval.v1.ListApprovalRequestsResponse" do
|
90
|
-
repeated :approval_requests, :message, 1, "google.cloud.accessapproval.v1.ApprovalRequest"
|
91
|
-
optional :next_page_token, :string, 2
|
92
|
-
end
|
93
|
-
add_message "google.cloud.accessapproval.v1.GetApprovalRequestMessage" do
|
94
|
-
optional :name, :string, 1
|
95
|
-
end
|
96
|
-
add_message "google.cloud.accessapproval.v1.ApproveApprovalRequestMessage" do
|
97
|
-
optional :name, :string, 1
|
98
|
-
optional :expire_time, :message, 2, "google.protobuf.Timestamp"
|
99
|
-
end
|
100
|
-
add_message "google.cloud.accessapproval.v1.DismissApprovalRequestMessage" do
|
101
|
-
optional :name, :string, 1
|
102
|
-
end
|
103
|
-
add_message "google.cloud.accessapproval.v1.InvalidateApprovalRequestMessage" do
|
104
|
-
optional :name, :string, 1
|
105
|
-
end
|
106
|
-
add_message "google.cloud.accessapproval.v1.GetAccessApprovalSettingsMessage" do
|
107
|
-
optional :name, :string, 1
|
108
|
-
end
|
109
|
-
add_message "google.cloud.accessapproval.v1.UpdateAccessApprovalSettingsMessage" do
|
110
|
-
optional :settings, :message, 1, "google.cloud.accessapproval.v1.AccessApprovalSettings"
|
111
|
-
optional :update_mask, :message, 2, "google.protobuf.FieldMask"
|
112
|
-
end
|
113
|
-
add_message "google.cloud.accessapproval.v1.DeleteAccessApprovalSettingsMessage" do
|
114
|
-
optional :name, :string, 1
|
115
|
-
end
|
116
|
-
add_message "google.cloud.accessapproval.v1.GetAccessApprovalServiceAccountMessage" do
|
117
|
-
optional :name, :string, 1
|
118
|
-
end
|
119
|
-
add_enum "google.cloud.accessapproval.v1.EnrollmentLevel" do
|
120
|
-
value :ENROLLMENT_LEVEL_UNSPECIFIED, 0
|
121
|
-
value :BLOCK_ALL, 1
|
15
|
+
|
16
|
+
descriptor_data = "\n3google/cloud/accessapproval/v1/accessapproval.proto\x12\x1egoogle.cloud.accessapproval.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"`\n\x0f\x41\x63\x63\x65ssLocations\x12 \n\x18principal_office_country\x18\x01 \x01(\t\x12+\n#principal_physical_location_country\x18\x02 \x01(\t\"\xa0\x02\n\x0c\x41\x63\x63\x65ssReason\x12?\n\x04type\x18\x01 \x01(\x0e\x32\x31.google.cloud.accessapproval.v1.AccessReason.Type\x12\x0e\n\x06\x64\x65tail\x18\x02 \x01(\t\"\xbe\x01\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x1e\n\x1a\x43USTOMER_INITIATED_SUPPORT\x10\x01\x12\x1c\n\x18GOOGLE_INITIATED_SERVICE\x10\x02\x12\x1b\n\x17GOOGLE_INITIATED_REVIEW\x10\x03\x12\x1c\n\x18THIRD_PARTY_DATA_REQUEST\x10\x04\x12\'\n#GOOGLE_RESPONSE_TO_PRODUCTION_ALERT\x10\x05\"|\n\rSignatureInfo\x12\x11\n\tsignature\x18\x01 \x01(\x0c\x12\x1f\n\x15google_public_key_pem\x18\x02 \x01(\tH\x00\x12\"\n\x18\x63ustomer_kms_key_version\x18\x03 \x01(\tH\x00\x42\x13\n\x11verification_info\"\x87\x02\n\x0f\x41pproveDecision\x12\x30\n\x0c\x61pprove_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0b\x65xpire_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x33\n\x0finvalidate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x45\n\x0esignature_info\x18\x04 \x01(\x0b\x32-.google.cloud.accessapproval.v1.SignatureInfo\x12\x15\n\rauto_approved\x18\x05 \x01(\x08\"U\n\x0f\x44ismissDecision\x12\x30\n\x0c\x64ismiss_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x10\n\x08implicit\x18\x02 \x01(\x08\"2\n\x12ResourceProperties\x12\x1c\n\x14\x65xcludes_descendants\x18\x01 \x01(\x08\"\x97\x06\n\x0f\x41pprovalRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1f\n\x17requested_resource_name\x18\x02 \x01(\t\x12Y\n\x1drequested_resource_properties\x18\t \x01(\x0b\x32\x32.google.cloud.accessapproval.v1.ResourceProperties\x12\x46\n\x10requested_reason\x18\x03 \x01(\x0b\x32,.google.cloud.accessapproval.v1.AccessReason\x12L\n\x13requested_locations\x18\x04 \x01(\x0b\x32/.google.cloud.accessapproval.v1.AccessLocations\x12\x30\n\x0crequest_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x38\n\x14requested_expiration\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x42\n\x07\x61pprove\x18\x07 \x01(\x0b\x32/.google.cloud.accessapproval.v1.ApproveDecisionH\x00\x12\x42\n\x07\x64ismiss\x18\x08 \x01(\x0b\x32/.google.cloud.accessapproval.v1.DismissDecisionH\x00:\xe3\x01\xea\x41\xdf\x01\n-accessapproval.googleapis.com/ApprovalRequest\x12\x36projects/{project}/approvalRequests/{approval_request}\x12\x34\x66olders/{folder}/approvalRequests/{approval_request}\x12@organizations/{organization}/approvalRequests/{approval_request}B\n\n\x08\x64\x65\x63ision\"s\n\x0f\x45nrolledService\x12\x15\n\rcloud_product\x18\x01 \x01(\t\x12I\n\x10\x65nrollment_level\x18\x02 \x01(\x0e\x32/.google.cloud.accessapproval.v1.EnrollmentLevel\"\x9c\x04\n\x16\x41\x63\x63\x65ssApprovalSettings\x12G\n\x04name\x18\x01 \x01(\tB9\xfa\x41\x36\n4accessapproval.googleapis.com/AccessApprovalSettings\x12\x1b\n\x13notification_emails\x18\x02 \x03(\t\x12J\n\x11\x65nrolled_services\x18\x03 \x03(\x0b\x32/.google.cloud.accessapproval.v1.EnrolledService\x12\x1e\n\x11\x65nrolled_ancestor\x18\x04 \x01(\x08\x42\x03\xe0\x41\x03\x12\x1a\n\x12\x61\x63tive_key_version\x18\x06 \x01(\t\x12,\n\x1f\x61ncestor_has_active_key_version\x18\x07 \x01(\x08\x42\x03\xe0\x41\x03\x12 \n\x13invalid_key_version\x18\x08 \x01(\x08\x42\x03\xe0\x41\x03:\xc3\x01\xea\x41\xbf\x01\n4accessapproval.googleapis.com/AccessApprovalSettings\x12)projects/{project}/accessApprovalSettings\x12\'folders/{folder}/accessApprovalSettings\x12\x33organizations/{organization}/accessApprovalSettings\"\xb8\x02\n\x1c\x41\x63\x63\x65ssApprovalServiceAccount\x12M\n\x04name\x18\x01 \x01(\tB?\xfa\x41<\n:accessapproval.googleapis.com/AccessApprovalServiceAccount\x12\x15\n\raccount_email\x18\x02 \x01(\t:\xb1\x01\xea\x41\xad\x01\n:accessapproval.googleapis.com/AccessApprovalServiceAccount\x12!projects/{project}/serviceAccount\x12\x1f\x66olders/{folder}/serviceAccount\x12+organizations/{organization}/serviceAccount\"\x98\x01\n\x1bListApprovalRequestsMessage\x12\x42\n\x06parent\x18\x01 \x01(\tB2\xfa\x41/\x12-accessapproval.googleapis.com/ApprovalRequest\x12\x0e\n\x06\x66ilter\x18\x02 \x01(\t\x12\x11\n\tpage_size\x18\x03 \x01(\x05\x12\x12\n\npage_token\x18\x04 \x01(\t\"\x83\x01\n\x1cListApprovalRequestsResponse\x12J\n\x11\x61pproval_requests\x18\x01 \x03(\x0b\x32/.google.cloud.accessapproval.v1.ApprovalRequest\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"]\n\x19GetApprovalRequestMessage\x12@\n\x04name\x18\x01 \x01(\tB2\xfa\x41/\n-accessapproval.googleapis.com/ApprovalRequest\"\x92\x01\n\x1d\x41pproveApprovalRequestMessage\x12@\n\x04name\x18\x01 \x01(\tB2\xfa\x41/\n-accessapproval.googleapis.com/ApprovalRequest\x12/\n\x0b\x65xpire_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"a\n\x1d\x44ismissApprovalRequestMessage\x12@\n\x04name\x18\x01 \x01(\tB2\xfa\x41/\n-accessapproval.googleapis.com/ApprovalRequest\"d\n InvalidateApprovalRequestMessage\x12@\n\x04name\x18\x01 \x01(\tB2\xfa\x41/\n-accessapproval.googleapis.com/ApprovalRequest\"k\n GetAccessApprovalSettingsMessage\x12G\n\x04name\x18\x01 \x01(\tB9\xfa\x41\x36\n4accessapproval.googleapis.com/AccessApprovalSettings\"\xa0\x01\n#UpdateAccessApprovalSettingsMessage\x12H\n\x08settings\x18\x01 \x01(\x0b\x32\x36.google.cloud.accessapproval.v1.AccessApprovalSettings\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"n\n#DeleteAccessApprovalSettingsMessage\x12G\n\x04name\x18\x01 \x01(\tB9\xfa\x41\x36\n4accessapproval.googleapis.com/AccessApprovalSettings\"6\n&GetAccessApprovalServiceAccountMessage\x12\x0c\n\x04name\x18\x01 \x01(\t*B\n\x0f\x45nrollmentLevel\x12 \n\x1c\x45NROLLMENT_LEVEL_UNSPECIFIED\x10\x00\x12\r\n\tBLOCK_ALL\x10\x01\x32\x87\x17\n\x0e\x41\x63\x63\x65ssApproval\x12\xaa\x02\n\x14ListApprovalRequests\x12;.google.cloud.accessapproval.v1.ListApprovalRequestsMessage\x1a<.google.cloud.accessapproval.v1.ListApprovalRequestsResponse\"\x96\x01\x82\xd3\xe4\x93\x02\x86\x01\x12(/v1/{parent=projects/*}/approvalRequestsZ)\x12\'/v1/{parent=folders/*}/approvalRequestsZ/\x12-/v1/{parent=organizations/*}/approvalRequests\xda\x41\x06parent\x12\x97\x02\n\x12GetApprovalRequest\x12\x39.google.cloud.accessapproval.v1.GetApprovalRequestMessage\x1a/.google.cloud.accessapproval.v1.ApprovalRequest\"\x94\x01\x82\xd3\xe4\x93\x02\x86\x01\x12(/v1/{name=projects/*/approvalRequests/*}Z)\x12\'/v1/{name=folders/*/approvalRequests/*}Z/\x12-/v1/{name=organizations/*/approvalRequests/*}\xda\x41\x04name\x12\xb9\x02\n\x16\x41pproveApprovalRequest\x12=.google.cloud.accessapproval.v1.ApproveApprovalRequestMessage\x1a/.google.cloud.accessapproval.v1.ApprovalRequest\"\xae\x01\x82\xd3\xe4\x93\x02\xa7\x01\"0/v1/{name=projects/*/approvalRequests/*}:approve:\x01*Z4\"//v1/{name=folders/*/approvalRequests/*}:approve:\x01*Z:\"5/v1/{name=organizations/*/approvalRequests/*}:approve:\x01*\x12\xb9\x02\n\x16\x44ismissApprovalRequest\x12=.google.cloud.accessapproval.v1.DismissApprovalRequestMessage\x1a/.google.cloud.accessapproval.v1.ApprovalRequest\"\xae\x01\x82\xd3\xe4\x93\x02\xa7\x01\"0/v1/{name=projects/*/approvalRequests/*}:dismiss:\x01*Z4\"//v1/{name=folders/*/approvalRequests/*}:dismiss:\x01*Z:\"5/v1/{name=organizations/*/approvalRequests/*}:dismiss:\x01*\x12\xc8\x02\n\x19InvalidateApprovalRequest\x12@.google.cloud.accessapproval.v1.InvalidateApprovalRequestMessage\x1a/.google.cloud.accessapproval.v1.ApprovalRequest\"\xb7\x01\x82\xd3\xe4\x93\x02\xb0\x01\"3/v1/{name=projects/*/approvalRequests/*}:invalidate:\x01*Z7\"2/v1/{name=folders/*/approvalRequests/*}:invalidate:\x01*Z=\"8/v1/{name=organizations/*/approvalRequests/*}:invalidate:\x01*\x12\xb8\x02\n\x19GetAccessApprovalSettings\x12@.google.cloud.accessapproval.v1.GetAccessApprovalSettingsMessage\x1a\x36.google.cloud.accessapproval.v1.AccessApprovalSettings\"\xa0\x01\x82\xd3\xe4\x93\x02\x92\x01\x12,/v1/{name=projects/*/accessApprovalSettings}Z-\x12+/v1/{name=folders/*/accessApprovalSettings}Z3\x12\x31/v1/{name=organizations/*/accessApprovalSettings}\xda\x41\x04name\x12\x87\x03\n\x1cUpdateAccessApprovalSettings\x12\x43.google.cloud.accessapproval.v1.UpdateAccessApprovalSettingsMessage\x1a\x36.google.cloud.accessapproval.v1.AccessApprovalSettings\"\xe9\x01\x82\xd3\xe4\x93\x02\xcb\x01\x32\x35/v1/{settings.name=projects/*/accessApprovalSettings}:\x08settingsZ@24/v1/{settings.name=folders/*/accessApprovalSettings}:\x08settingsZF2:/v1/{settings.name=organizations/*/accessApprovalSettings}:\x08settings\xda\x41\x14settings,update_mask\x12\x9e\x02\n\x1c\x44\x65leteAccessApprovalSettings\x12\x43.google.cloud.accessapproval.v1.DeleteAccessApprovalSettingsMessage\x1a\x16.google.protobuf.Empty\"\xa0\x01\x82\xd3\xe4\x93\x02\x92\x01*,/v1/{name=projects/*/accessApprovalSettings}Z-*+/v1/{name=folders/*/accessApprovalSettings}Z3*1/v1/{name=organizations/*/accessApprovalSettings}\xda\x41\x04name\x12\xb1\x02\n\x1fGetAccessApprovalServiceAccount\x12\x46.google.cloud.accessapproval.v1.GetAccessApprovalServiceAccountMessage\x1a<.google.cloud.accessapproval.v1.AccessApprovalServiceAccount\"\x87\x01\x82\xd3\xe4\x93\x02z\x12$/v1/{name=projects/*/serviceAccount}Z%\x12#/v1/{name=folders/*/serviceAccount}Z+\x12)/v1/{name=organizations/*/serviceAccount}\xda\x41\x04name\x1aQ\xca\x41\x1d\x61\x63\x63\x65ssapproval.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xed\x01\n\"com.google.cloud.accessapproval.v1B\x13\x41\x63\x63\x65ssApprovalProtoP\x01ZJcloud.google.com/go/accessapproval/apiv1/accessapprovalpb;accessapprovalpb\xaa\x02\x1eGoogle.Cloud.AccessApproval.V1\xca\x02\x1eGoogle\\Cloud\\AccessApproval\\V1\xea\x02!Google::Cloud::AccessApproval::V1b\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.protobuf.Timestamp", "google/protobuf/timestamp.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}"
|
122
38
|
end
|
123
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."
|
124
42
|
end
|
125
43
|
|
126
44
|
module Google
|
@@ -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
|
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
|
-
#
|
244
|
-
# - selector:
|
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?
|
@@ -66,6 +66,20 @@ module Google
|
|
66
66
|
# a non-empty value will be returned. The user will not be aware of what
|
67
67
|
# non-empty value to expect.
|
68
68
|
NON_EMPTY_DEFAULT = 7
|
69
|
+
|
70
|
+
# Denotes that the field in a resource (a message annotated with
|
71
|
+
# google.api.resource) is used in the resource name to uniquely identify the
|
72
|
+
# resource. For AIP-compliant APIs, this should only be applied to the
|
73
|
+
# `name` field on the resource.
|
74
|
+
#
|
75
|
+
# This behavior should not be applied to references to other resources within
|
76
|
+
# the message.
|
77
|
+
#
|
78
|
+
# The identifier field of resources often have different field behavior
|
79
|
+
# depending on the request it is embedded in (e.g. for Create methods name
|
80
|
+
# is optional and unused, while for Update methods it is required). Instead
|
81
|
+
# of method-specific annotations, only `IDENTIFIER` is required.
|
82
|
+
IDENTIFIER = 8
|
69
83
|
end
|
70
84
|
end
|
71
85
|
end
|
@@ -69,7 +69,6 @@ module Google
|
|
69
69
|
# Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
|
70
70
|
# .setNanos((int) ((millis % 1000) * 1000000)).build();
|
71
71
|
#
|
72
|
-
#
|
73
72
|
# Example 5: Compute Timestamp from Java `Instant.now()`.
|
74
73
|
#
|
75
74
|
# Instant now = Instant.now();
|
@@ -78,7 +77,6 @@ module Google
|
|
78
77
|
# Timestamp.newBuilder().setSeconds(now.getEpochSecond())
|
79
78
|
# .setNanos(now.getNano()).build();
|
80
79
|
#
|
81
|
-
#
|
82
80
|
# Example 6: Compute Timestamp from current time in Python.
|
83
81
|
#
|
84
82
|
# timestamp = Timestamp()
|
@@ -108,7 +106,7 @@ module Google
|
|
108
106
|
# [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
|
109
107
|
# the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
|
110
108
|
# the Joda Time's [`ISODateTimeFormat.dateTime()`](
|
111
|
-
# http://
|
109
|
+
# http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
|
112
110
|
# ) to obtain a formatter capable of generating timestamps in this format.
|
113
111
|
# @!attribute [rw] seconds
|
114
112
|
# @return [::Integer]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-access_approval-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.10.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-
|
11
|
+
date: 2023-09-12 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.
|
19
|
+
version: 0.20.0
|
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.
|
29
|
+
version: 0.20.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -211,7 +211,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
211
211
|
- !ruby/object:Gem::Version
|
212
212
|
version: '0'
|
213
213
|
requirements: []
|
214
|
-
rubygems_version: 3.4.
|
214
|
+
rubygems_version: 3.4.19
|
215
215
|
signing_key:
|
216
216
|
specification_version: 4
|
217
217
|
summary: An API for controlling access to data by Google personnel.
|