google-iam-v1beta 0.8.1 → 0.9.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 +30 -20
- data/lib/google/iam/v1beta/version.rb +1 -1
- data/lib/google/iam/v1beta/workload_identity_pools/client.rb +37 -13
- data/lib/google/iam/v1beta/workload_identity_pools/operations.rb +12 -15
- data/proto_docs/google/api/client.rb +39 -0
- data/proto_docs/google/longrunning/operations.rb +19 -14
- 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: 021572ccfa238e172b70c41a200711a9a901ba01321d3ed92b67787e9525b67a
|
4
|
+
data.tar.gz: 8cbef9da6112d68ef9f8b0e9afe50d9f4f7462160f6867a64350f33a14ac8554
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85a778544400152de6fc8a3dc6ec9235306b06f39223a490f2b4d721deddefffebe3bbc81d441beb00bd60e42755d3d29ae194107aafdeedbc67dde47dbc89d8
|
7
|
+
data.tar.gz: 5cce949b879fd565a9e1b8cf4b66517f62379b6cb1fafb4bfe773d782edf5d7c395aba6e1833ab4bf296ba5679b369d2edd4f33e345202dd08ff9d53eff6bc59
|
data/README.md
CHANGED
@@ -43,33 +43,43 @@ for class and method documentation.
|
|
43
43
|
See also the [Product Documentation](https://cloud.google.com/iam/docs/manage-workload-identity-pools-providers)
|
44
44
|
for general usage information.
|
45
45
|
|
46
|
-
##
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
46
|
+
## Debug Logging
|
47
|
+
|
48
|
+
This library comes with opt-in Debug Logging that can help you troubleshoot
|
49
|
+
your application's integration with the API. When logging is activated, key
|
50
|
+
events such as requests and responses, along with data payloads and metadata
|
51
|
+
such as headers and client configuration, are logged to the standard error
|
52
|
+
stream.
|
53
|
+
|
54
|
+
**WARNING:** Client Library Debug Logging includes your data payloads in
|
55
|
+
plaintext, which could include sensitive data such as PII for yourself or your
|
56
|
+
customers, private keys, or other security data that could be compromising if
|
57
|
+
leaked. Always practice good data hygiene with your application logs, and follow
|
58
|
+
the principle of least access. Google also recommends that Client Library Debug
|
59
|
+
Logging be enabled only temporarily during active debugging, and not used
|
60
|
+
permanently in production.
|
61
|
+
|
62
|
+
To enable logging, set the environment variable `GOOGLE_SDK_RUBY_LOGGING_GEMS`
|
63
|
+
to the value `all`. Alternatively, you can set the value to a comma-delimited
|
64
|
+
list of client library gem names. This will select the default logging behavior,
|
65
|
+
which writes logs to the standard error stream. On a local workstation, this may
|
66
|
+
result in logs appearing on the console. When running on a Google Cloud hosting
|
67
|
+
service such as [Google Cloud Run](https://cloud.google.com/run), this generally
|
68
|
+
results in logs appearing alongside your application logs in the
|
69
|
+
[Google Cloud Logging](https://cloud.google.com/logging/) service.
|
70
|
+
|
71
|
+
You can customize logging by modifying the `logger` configuration when
|
72
|
+
constructing a client object. For example:
|
55
73
|
|
56
74
|
```ruby
|
75
|
+
require "google/iam/v1beta"
|
57
76
|
require "logger"
|
58
77
|
|
59
|
-
|
60
|
-
|
61
|
-
def logger
|
62
|
-
LOGGER
|
63
|
-
end
|
64
|
-
end
|
65
|
-
|
66
|
-
# Define a gRPC module-level logger method before grpc/logconfig.rb loads.
|
67
|
-
module GRPC
|
68
|
-
extend MyLogger
|
78
|
+
client = ::Google::Iam::V1beta::WorkloadIdentityPools::Client.new do |config|
|
79
|
+
config.logger = Logger.new "my-app.log"
|
69
80
|
end
|
70
81
|
```
|
71
82
|
|
72
|
-
|
73
83
|
## Google Cloud Samples
|
74
84
|
|
75
85
|
To browse ready to use code samples check [Google Cloud Samples](https://cloud.google.com/docs/samples).
|
@@ -223,8 +223,19 @@ module Google
|
|
223
223
|
universe_domain: @config.universe_domain,
|
224
224
|
channel_args: @config.channel_args,
|
225
225
|
interceptors: @config.interceptors,
|
226
|
-
channel_pool_config: @config.channel_pool
|
226
|
+
channel_pool_config: @config.channel_pool,
|
227
|
+
logger: @config.logger
|
227
228
|
)
|
229
|
+
|
230
|
+
@workload_identity_pools_stub.stub_logger&.info do |entry|
|
231
|
+
entry.set_system_name
|
232
|
+
entry.set_service
|
233
|
+
entry.message = "Created client for #{entry.service}"
|
234
|
+
entry.set_credentials_fields credentials
|
235
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
236
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
237
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
238
|
+
end
|
228
239
|
end
|
229
240
|
|
230
241
|
##
|
@@ -234,6 +245,15 @@ module Google
|
|
234
245
|
#
|
235
246
|
attr_reader :operations_client
|
236
247
|
|
248
|
+
##
|
249
|
+
# The logger used for request/response debug logging.
|
250
|
+
#
|
251
|
+
# @return [Logger]
|
252
|
+
#
|
253
|
+
def logger
|
254
|
+
@workload_identity_pools_stub.logger
|
255
|
+
end
|
256
|
+
|
237
257
|
# Service calls
|
238
258
|
|
239
259
|
##
|
@@ -333,7 +353,7 @@ module Google
|
|
333
353
|
@workload_identity_pools_stub.call_rpc :list_workload_identity_pools, request, options: options do |response, operation|
|
334
354
|
response = ::Gapic::PagedEnumerable.new @workload_identity_pools_stub, :list_workload_identity_pools, request, response, operation, options
|
335
355
|
yield response, operation if block_given?
|
336
|
-
|
356
|
+
throw :response, response
|
337
357
|
end
|
338
358
|
rescue ::GRPC::BadStatus => e
|
339
359
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -420,7 +440,6 @@ module Google
|
|
420
440
|
|
421
441
|
@workload_identity_pools_stub.call_rpc :get_workload_identity_pool, request, options: options do |response, operation|
|
422
442
|
yield response, operation if block_given?
|
423
|
-
return response
|
424
443
|
end
|
425
444
|
rescue ::GRPC::BadStatus => e
|
426
445
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -525,7 +544,7 @@ module Google
|
|
525
544
|
@workload_identity_pools_stub.call_rpc :create_workload_identity_pool, request, options: options do |response, operation|
|
526
545
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
527
546
|
yield response, operation if block_given?
|
528
|
-
|
547
|
+
throw :response, response
|
529
548
|
end
|
530
549
|
rescue ::GRPC::BadStatus => e
|
531
550
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -622,7 +641,7 @@ module Google
|
|
622
641
|
@workload_identity_pools_stub.call_rpc :update_workload_identity_pool, request, options: options do |response, operation|
|
623
642
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
624
643
|
yield response, operation if block_given?
|
625
|
-
|
644
|
+
throw :response, response
|
626
645
|
end
|
627
646
|
rescue ::GRPC::BadStatus => e
|
628
647
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -727,7 +746,7 @@ module Google
|
|
727
746
|
@workload_identity_pools_stub.call_rpc :delete_workload_identity_pool, request, options: options do |response, operation|
|
728
747
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
729
748
|
yield response, operation if block_given?
|
730
|
-
|
749
|
+
throw :response, response
|
731
750
|
end
|
732
751
|
rescue ::GRPC::BadStatus => e
|
733
752
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -822,7 +841,7 @@ module Google
|
|
822
841
|
@workload_identity_pools_stub.call_rpc :undelete_workload_identity_pool, request, options: options do |response, operation|
|
823
842
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
824
843
|
yield response, operation if block_given?
|
825
|
-
|
844
|
+
throw :response, response
|
826
845
|
end
|
827
846
|
rescue ::GRPC::BadStatus => e
|
828
847
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -926,7 +945,7 @@ module Google
|
|
926
945
|
@workload_identity_pools_stub.call_rpc :list_workload_identity_pool_providers, request, options: options do |response, operation|
|
927
946
|
response = ::Gapic::PagedEnumerable.new @workload_identity_pools_stub, :list_workload_identity_pool_providers, request, response, operation, options
|
928
947
|
yield response, operation if block_given?
|
929
|
-
|
948
|
+
throw :response, response
|
930
949
|
end
|
931
950
|
rescue ::GRPC::BadStatus => e
|
932
951
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1013,7 +1032,6 @@ module Google
|
|
1013
1032
|
|
1014
1033
|
@workload_identity_pools_stub.call_rpc :get_workload_identity_pool_provider, request, options: options do |response, operation|
|
1015
1034
|
yield response, operation if block_given?
|
1016
|
-
return response
|
1017
1035
|
end
|
1018
1036
|
rescue ::GRPC::BadStatus => e
|
1019
1037
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1119,7 +1137,7 @@ module Google
|
|
1119
1137
|
@workload_identity_pools_stub.call_rpc :create_workload_identity_pool_provider, request, options: options do |response, operation|
|
1120
1138
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
1121
1139
|
yield response, operation if block_given?
|
1122
|
-
|
1140
|
+
throw :response, response
|
1123
1141
|
end
|
1124
1142
|
rescue ::GRPC::BadStatus => e
|
1125
1143
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1216,7 +1234,7 @@ module Google
|
|
1216
1234
|
@workload_identity_pools_stub.call_rpc :update_workload_identity_pool_provider, request, options: options do |response, operation|
|
1217
1235
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
1218
1236
|
yield response, operation if block_given?
|
1219
|
-
|
1237
|
+
throw :response, response
|
1220
1238
|
end
|
1221
1239
|
rescue ::GRPC::BadStatus => e
|
1222
1240
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1316,7 +1334,7 @@ module Google
|
|
1316
1334
|
@workload_identity_pools_stub.call_rpc :delete_workload_identity_pool_provider, request, options: options do |response, operation|
|
1317
1335
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
1318
1336
|
yield response, operation if block_given?
|
1319
|
-
|
1337
|
+
throw :response, response
|
1320
1338
|
end
|
1321
1339
|
rescue ::GRPC::BadStatus => e
|
1322
1340
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1412,7 +1430,7 @@ module Google
|
|
1412
1430
|
@workload_identity_pools_stub.call_rpc :undelete_workload_identity_pool_provider, request, options: options do |response, operation|
|
1413
1431
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
1414
1432
|
yield response, operation if block_given?
|
1415
|
-
|
1433
|
+
throw :response, response
|
1416
1434
|
end
|
1417
1435
|
rescue ::GRPC::BadStatus => e
|
1418
1436
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -1501,6 +1519,11 @@ module Google
|
|
1501
1519
|
# default endpoint URL. The default value of nil uses the environment
|
1502
1520
|
# universe (usually the default "googleapis.com" universe).
|
1503
1521
|
# @return [::String,nil]
|
1522
|
+
# @!attribute [rw] logger
|
1523
|
+
# A custom logger to use for request/response debug logging, or the value
|
1524
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
1525
|
+
# explicitly disable logging.
|
1526
|
+
# @return [::Logger,:default,nil]
|
1504
1527
|
#
|
1505
1528
|
class Configuration
|
1506
1529
|
extend ::Gapic::Config
|
@@ -1525,6 +1548,7 @@ module Google
|
|
1525
1548
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
1526
1549
|
config_attr :quota_project, nil, ::String, nil
|
1527
1550
|
config_attr :universe_domain, nil, ::String, nil
|
1551
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
1528
1552
|
|
1529
1553
|
# @private
|
1530
1554
|
def initialize parent_config = nil
|
@@ -123,14 +123,6 @@ module Google
|
|
123
123
|
# Lists operations that match the specified filter in the request. If the
|
124
124
|
# server doesn't support this method, it returns `UNIMPLEMENTED`.
|
125
125
|
#
|
126
|
-
# NOTE: the `name` binding allows API services to override the binding
|
127
|
-
# to use different resource name schemes, such as `users/*/operations`. To
|
128
|
-
# override the binding, API services can add a binding such as
|
129
|
-
# `"/v1/{name=users/*}/operations"` to their service configuration.
|
130
|
-
# For backwards compatibility, the default name includes the operations
|
131
|
-
# collection id, however overriding users must ensure the name binding
|
132
|
-
# is the parent resource, without the operations collection id.
|
133
|
-
#
|
134
126
|
# @overload list_operations(request, options = nil)
|
135
127
|
# Pass arguments to `list_operations` via a request object, either of type
|
136
128
|
# {::Google::Longrunning::ListOperationsRequest} or an equivalent Hash.
|
@@ -220,7 +212,7 @@ module Google
|
|
220
212
|
wrap_lro_operation = ->(op_response) { ::Gapic::Operation.new op_response, @operations_client }
|
221
213
|
response = ::Gapic::PagedEnumerable.new @operations_stub, :list_operations, request, response, operation, options, format_resource: wrap_lro_operation
|
222
214
|
yield response, operation if block_given?
|
223
|
-
|
215
|
+
throw :response, response
|
224
216
|
end
|
225
217
|
rescue ::GRPC::BadStatus => e
|
226
218
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -316,7 +308,7 @@ module Google
|
|
316
308
|
@operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
|
317
309
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
318
310
|
yield response, operation if block_given?
|
319
|
-
|
311
|
+
throw :response, response
|
320
312
|
end
|
321
313
|
rescue ::GRPC::BadStatus => e
|
322
314
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -405,7 +397,6 @@ module Google
|
|
405
397
|
|
406
398
|
@operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
|
407
399
|
yield response, operation if block_given?
|
408
|
-
return response
|
409
400
|
end
|
410
401
|
rescue ::GRPC::BadStatus => e
|
411
402
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -420,8 +411,9 @@ module Google
|
|
420
411
|
# other methods to check whether the cancellation succeeded or whether the
|
421
412
|
# operation completed despite cancellation. On successful cancellation,
|
422
413
|
# the operation is not deleted; instead, it becomes an operation with
|
423
|
-
# an {::Google::Longrunning::Operation#error Operation.error} value with a
|
424
|
-
# corresponding to
|
414
|
+
# an {::Google::Longrunning::Operation#error Operation.error} value with a
|
415
|
+
# {::Google::Rpc::Status#code google.rpc.Status.code} of `1`, corresponding to
|
416
|
+
# `Code.CANCELLED`.
|
425
417
|
#
|
426
418
|
# @overload cancel_operation(request, options = nil)
|
427
419
|
# Pass arguments to `cancel_operation` via a request object, either of type
|
@@ -500,7 +492,6 @@ module Google
|
|
500
492
|
|
501
493
|
@operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
|
502
494
|
yield response, operation if block_given?
|
503
|
-
return response
|
504
495
|
end
|
505
496
|
rescue ::GRPC::BadStatus => e
|
506
497
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -598,7 +589,7 @@ module Google
|
|
598
589
|
@operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
|
599
590
|
response = ::Gapic::Operation.new response, @operations_client, options: options
|
600
591
|
yield response, operation if block_given?
|
601
|
-
|
592
|
+
throw :response, response
|
602
593
|
end
|
603
594
|
rescue ::GRPC::BadStatus => e
|
604
595
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -687,6 +678,11 @@ module Google
|
|
687
678
|
# default endpoint URL. The default value of nil uses the environment
|
688
679
|
# universe (usually the default "googleapis.com" universe).
|
689
680
|
# @return [::String,nil]
|
681
|
+
# @!attribute [rw] logger
|
682
|
+
# A custom logger to use for request/response debug logging, or the value
|
683
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
684
|
+
# explicitly disable logging.
|
685
|
+
# @return [::Logger,:default,nil]
|
690
686
|
#
|
691
687
|
class Configuration
|
692
688
|
extend ::Gapic::Config
|
@@ -711,6 +707,7 @@ module Google
|
|
711
707
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
712
708
|
config_attr :quota_project, nil, ::String, nil
|
713
709
|
config_attr :universe_domain, nil, ::String, nil
|
710
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
714
711
|
|
715
712
|
# @private
|
716
713
|
def initialize parent_config = nil
|
@@ -28,6 +28,9 @@ module Google
|
|
28
28
|
# @!attribute [rw] destinations
|
29
29
|
# @return [::Array<::Google::Api::ClientLibraryDestination>]
|
30
30
|
# The destination where API teams want this client library to be published.
|
31
|
+
# @!attribute [rw] selective_gapic_generation
|
32
|
+
# @return [::Google::Api::SelectiveGapicGeneration]
|
33
|
+
# Configuration for which RPCs should be generated in the GAPIC client.
|
31
34
|
class CommonLanguageSettings
|
32
35
|
include ::Google::Protobuf::MessageExts
|
33
36
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -212,6 +215,12 @@ module Google
|
|
212
215
|
# enabled. By default, asynchronous REST clients will not be generated.
|
213
216
|
# This feature will be enabled by default 1 month after launching the
|
214
217
|
# feature in preview packages.
|
218
|
+
# @!attribute [rw] protobuf_pythonic_types_enabled
|
219
|
+
# @return [::Boolean]
|
220
|
+
# Enables generation of protobuf code using new types that are more
|
221
|
+
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
|
+
# enabled by default 1 month after launching the feature in preview
|
223
|
+
# packages.
|
215
224
|
class ExperimentalFeatures
|
216
225
|
include ::Google::Protobuf::MessageExts
|
217
226
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -297,9 +306,28 @@ module Google
|
|
297
306
|
# @!attribute [rw] common
|
298
307
|
# @return [::Google::Api::CommonLanguageSettings]
|
299
308
|
# Some settings.
|
309
|
+
# @!attribute [rw] renamed_services
|
310
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
311
|
+
# Map of service names to renamed services. Keys are the package relative
|
312
|
+
# service names and values are the name to be used for the service client
|
313
|
+
# and call options.
|
314
|
+
#
|
315
|
+
# publishing:
|
316
|
+
# go_settings:
|
317
|
+
# renamed_services:
|
318
|
+
# Publisher: TopicAdmin
|
300
319
|
class GoSettings
|
301
320
|
include ::Google::Protobuf::MessageExts
|
302
321
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
322
|
+
|
323
|
+
# @!attribute [rw] key
|
324
|
+
# @return [::String]
|
325
|
+
# @!attribute [rw] value
|
326
|
+
# @return [::String]
|
327
|
+
class RenamedServicesEntry
|
328
|
+
include ::Google::Protobuf::MessageExts
|
329
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
330
|
+
end
|
303
331
|
end
|
304
332
|
|
305
333
|
# Describes the generator configuration for a method.
|
@@ -375,6 +403,17 @@ module Google
|
|
375
403
|
end
|
376
404
|
end
|
377
405
|
|
406
|
+
# This message is used to configure the generation of a subset of the RPCs in
|
407
|
+
# a service for client libraries.
|
408
|
+
# @!attribute [rw] methods
|
409
|
+
# @return [::Array<::String>]
|
410
|
+
# An allowlist of the fully qualified names of RPCs that should be included
|
411
|
+
# on public client surfaces.
|
412
|
+
class SelectiveGapicGeneration
|
413
|
+
include ::Google::Protobuf::MessageExts
|
414
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
415
|
+
end
|
416
|
+
|
378
417
|
# The organization for which the client libraries are being published.
|
379
418
|
# Affects the url where generated docs are published, etc.
|
380
419
|
module ClientLibraryOrganization
|
@@ -42,7 +42,7 @@ module Google
|
|
42
42
|
# The error result of the operation in case of failure or cancellation.
|
43
43
|
# @!attribute [rw] response
|
44
44
|
# @return [::Google::Protobuf::Any]
|
45
|
-
# The normal response of the operation
|
45
|
+
# The normal, successful response of the operation. If the original
|
46
46
|
# method returns no data on success, such as `Delete`, the response is
|
47
47
|
# `google.protobuf.Empty`. If the original method is standard
|
48
48
|
# `Get`/`Create`/`Update`, the response should be the resource. For other
|
@@ -55,7 +55,8 @@ module Google
|
|
55
55
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
56
56
|
end
|
57
57
|
|
58
|
-
# The request message for
|
58
|
+
# The request message for
|
59
|
+
# Operations.GetOperation.
|
59
60
|
# @!attribute [rw] name
|
60
61
|
# @return [::String]
|
61
62
|
# The name of the operation resource.
|
@@ -64,7 +65,8 @@ module Google
|
|
64
65
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
65
66
|
end
|
66
67
|
|
67
|
-
# The request message for
|
68
|
+
# The request message for
|
69
|
+
# Operations.ListOperations.
|
68
70
|
# @!attribute [rw] name
|
69
71
|
# @return [::String]
|
70
72
|
# The name of the operation's parent resource.
|
@@ -82,7 +84,8 @@ module Google
|
|
82
84
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
83
85
|
end
|
84
86
|
|
85
|
-
# The response message for
|
87
|
+
# The response message for
|
88
|
+
# Operations.ListOperations.
|
86
89
|
# @!attribute [rw] operations
|
87
90
|
# @return [::Array<::Google::Longrunning::Operation>]
|
88
91
|
# A list of operations that matches the specified filter in the request.
|
@@ -94,7 +97,8 @@ module Google
|
|
94
97
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
95
98
|
end
|
96
99
|
|
97
|
-
# The request message for
|
100
|
+
# The request message for
|
101
|
+
# Operations.CancelOperation.
|
98
102
|
# @!attribute [rw] name
|
99
103
|
# @return [::String]
|
100
104
|
# The name of the operation resource to be cancelled.
|
@@ -103,7 +107,8 @@ module Google
|
|
103
107
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
104
108
|
end
|
105
109
|
|
106
|
-
# The request message for
|
110
|
+
# The request message for
|
111
|
+
# Operations.DeleteOperation.
|
107
112
|
# @!attribute [rw] name
|
108
113
|
# @return [::String]
|
109
114
|
# The name of the operation resource to be deleted.
|
@@ -112,7 +117,8 @@ module Google
|
|
112
117
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
113
118
|
end
|
114
119
|
|
115
|
-
# The request message for
|
120
|
+
# The request message for
|
121
|
+
# Operations.WaitOperation.
|
116
122
|
# @!attribute [rw] name
|
117
123
|
# @return [::String]
|
118
124
|
# The name of the operation resource to wait on.
|
@@ -130,13 +136,12 @@ module Google
|
|
130
136
|
#
|
131
137
|
# Example:
|
132
138
|
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
# }
|
139
|
-
# }
|
139
|
+
# rpc Export(ExportRequest) returns (google.longrunning.Operation) {
|
140
|
+
# option (google.longrunning.operation_info) = {
|
141
|
+
# response_type: "ExportResponse"
|
142
|
+
# metadata_type: "ExportMetadata"
|
143
|
+
# };
|
144
|
+
# }
|
140
145
|
# @!attribute [rw] response_type
|
141
146
|
# @return [::String]
|
142
147
|
# Required. The message name of the primary return type for this
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-iam-v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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: 2024-
|
11
|
+
date: 2024-12-10 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.24.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.24.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
97
|
- !ruby/object:Gem::Version
|
98
98
|
version: '0'
|
99
99
|
requirements: []
|
100
|
-
rubygems_version: 3.5.
|
100
|
+
rubygems_version: 3.5.23
|
101
101
|
signing_key:
|
102
102
|
specification_version: 4
|
103
103
|
summary: 'Manages identity and access control for Google Cloud Platform resources,
|