google-cloud-redis-v1beta1 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b77586f21f57a58e82e5b8d6643d45490327492d7e3c8e9f01a3b8066fc04ca
|
4
|
+
data.tar.gz: 2e563bc76907a99a13aa39bc2b78bcdcd5179348e0bcc6351a5e8d3af3e8bff8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e722cc7e08f2b08e02f15f3f359028f039b309a761a774b376084195ba8b1d9853768c9e4219a82d0ffd97b3d042d215f5a0f5fd1508777e8c9a238c4d202ebf
|
7
|
+
data.tar.gz: b0f8ac7bb3473fae1959a57769bd3b762cbe4134646c910cee09ad760daeb2521b687f80a9ba12c9d819f55b9ab53abb8ccec486c28c78c32c006ad4e4462e32
|
@@ -55,13 +55,12 @@ module Google
|
|
55
55
|
# See {::Google::Cloud::Redis::V1beta1::CloudRedis::Client::Configuration}
|
56
56
|
# for a description of the configuration fields.
|
57
57
|
#
|
58
|
-
#
|
58
|
+
# @example
|
59
59
|
#
|
60
|
-
#
|
61
|
-
#
|
62
|
-
#
|
63
|
-
#
|
64
|
-
# end
|
60
|
+
# # Modify the configuration for all CloudRedis clients
|
61
|
+
# ::Google::Cloud::Redis::V1beta1::CloudRedis::Client.configure do |config|
|
62
|
+
# config.timeout = 10.0
|
63
|
+
# end
|
65
64
|
#
|
66
65
|
# @yield [config] Configure the Client client.
|
67
66
|
# @yieldparam config [Client::Configuration]
|
@@ -126,19 +125,15 @@ module Google
|
|
126
125
|
##
|
127
126
|
# Create a new CloudRedis client object.
|
128
127
|
#
|
129
|
-
#
|
130
|
-
#
|
131
|
-
# To create a new CloudRedis client with the default
|
132
|
-
# configuration:
|
128
|
+
# @example
|
133
129
|
#
|
134
|
-
#
|
130
|
+
# # Create a client using the default configuration
|
131
|
+
# client = ::Google::Cloud::Redis::V1beta1::CloudRedis::Client.new
|
135
132
|
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
#
|
139
|
-
#
|
140
|
-
# config.timeout = 10.0
|
141
|
-
# end
|
133
|
+
# # Create a client using a custom configuration
|
134
|
+
# client = ::Google::Cloud::Redis::V1beta1::CloudRedis::Client.new do |config|
|
135
|
+
# config.timeout = 10.0
|
136
|
+
# end
|
142
137
|
#
|
143
138
|
# @yield [config] Configure the CloudRedis client.
|
144
139
|
# @yieldparam config [Client::Configuration]
|
@@ -158,10 +153,9 @@ module Google
|
|
158
153
|
|
159
154
|
# Create credentials
|
160
155
|
credentials = @config.credentials
|
161
|
-
# Use self-signed JWT if the
|
156
|
+
# Use self-signed JWT if the endpoint is unchanged from default,
|
162
157
|
# but only if the default endpoint does not have a region prefix.
|
163
|
-
enable_self_signed_jwt = @config.
|
164
|
-
@config.endpoint == Client.configure.endpoint &&
|
158
|
+
enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
|
165
159
|
!@config.endpoint.split(".").first.include?("-")
|
166
160
|
credentials ||= Credentials.default scope: @config.scope,
|
167
161
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -270,7 +264,9 @@ module Google
|
|
270
264
|
options.apply_defaults timeout: @config.rpcs.list_instances.timeout,
|
271
265
|
metadata: metadata,
|
272
266
|
retry_policy: @config.rpcs.list_instances.retry_policy
|
273
|
-
|
267
|
+
|
268
|
+
options.apply_defaults timeout: @config.timeout,
|
269
|
+
metadata: @config.metadata,
|
274
270
|
retry_policy: @config.retry_policy
|
275
271
|
|
276
272
|
@cloud_redis_stub.call_rpc :list_instances, request, options: options do |response, operation|
|
@@ -339,7 +335,9 @@ module Google
|
|
339
335
|
options.apply_defaults timeout: @config.rpcs.get_instance.timeout,
|
340
336
|
metadata: metadata,
|
341
337
|
retry_policy: @config.rpcs.get_instance.retry_policy
|
342
|
-
|
338
|
+
|
339
|
+
options.apply_defaults timeout: @config.timeout,
|
340
|
+
metadata: @config.metadata,
|
343
341
|
retry_policy: @config.retry_policy
|
344
342
|
|
345
343
|
@cloud_redis_stub.call_rpc :get_instance, request, options: options do |response, operation|
|
@@ -429,7 +427,9 @@ module Google
|
|
429
427
|
options.apply_defaults timeout: @config.rpcs.create_instance.timeout,
|
430
428
|
metadata: metadata,
|
431
429
|
retry_policy: @config.rpcs.create_instance.retry_policy
|
432
|
-
|
430
|
+
|
431
|
+
options.apply_defaults timeout: @config.timeout,
|
432
|
+
metadata: @config.metadata,
|
433
433
|
retry_policy: @config.retry_policy
|
434
434
|
|
435
435
|
@cloud_redis_stub.call_rpc :create_instance, request, options: options do |response, operation|
|
@@ -510,7 +510,9 @@ module Google
|
|
510
510
|
options.apply_defaults timeout: @config.rpcs.update_instance.timeout,
|
511
511
|
metadata: metadata,
|
512
512
|
retry_policy: @config.rpcs.update_instance.retry_policy
|
513
|
-
|
513
|
+
|
514
|
+
options.apply_defaults timeout: @config.timeout,
|
515
|
+
metadata: @config.metadata,
|
514
516
|
retry_policy: @config.retry_policy
|
515
517
|
|
516
518
|
@cloud_redis_stub.call_rpc :update_instance, request, options: options do |response, operation|
|
@@ -582,7 +584,9 @@ module Google
|
|
582
584
|
options.apply_defaults timeout: @config.rpcs.upgrade_instance.timeout,
|
583
585
|
metadata: metadata,
|
584
586
|
retry_policy: @config.rpcs.upgrade_instance.retry_policy
|
585
|
-
|
587
|
+
|
588
|
+
options.apply_defaults timeout: @config.timeout,
|
589
|
+
metadata: @config.metadata,
|
586
590
|
retry_policy: @config.retry_policy
|
587
591
|
|
588
592
|
@cloud_redis_stub.call_rpc :upgrade_instance, request, options: options do |response, operation|
|
@@ -660,7 +664,9 @@ module Google
|
|
660
664
|
options.apply_defaults timeout: @config.rpcs.import_instance.timeout,
|
661
665
|
metadata: metadata,
|
662
666
|
retry_policy: @config.rpcs.import_instance.retry_policy
|
663
|
-
|
667
|
+
|
668
|
+
options.apply_defaults timeout: @config.timeout,
|
669
|
+
metadata: @config.metadata,
|
664
670
|
retry_policy: @config.retry_policy
|
665
671
|
|
666
672
|
@cloud_redis_stub.call_rpc :import_instance, request, options: options do |response, operation|
|
@@ -736,7 +742,9 @@ module Google
|
|
736
742
|
options.apply_defaults timeout: @config.rpcs.export_instance.timeout,
|
737
743
|
metadata: metadata,
|
738
744
|
retry_policy: @config.rpcs.export_instance.retry_policy
|
739
|
-
|
745
|
+
|
746
|
+
options.apply_defaults timeout: @config.timeout,
|
747
|
+
metadata: @config.metadata,
|
740
748
|
retry_policy: @config.retry_policy
|
741
749
|
|
742
750
|
@cloud_redis_stub.call_rpc :export_instance, request, options: options do |response, operation|
|
@@ -809,7 +817,9 @@ module Google
|
|
809
817
|
options.apply_defaults timeout: @config.rpcs.failover_instance.timeout,
|
810
818
|
metadata: metadata,
|
811
819
|
retry_policy: @config.rpcs.failover_instance.retry_policy
|
812
|
-
|
820
|
+
|
821
|
+
options.apply_defaults timeout: @config.timeout,
|
822
|
+
metadata: @config.metadata,
|
813
823
|
retry_policy: @config.retry_policy
|
814
824
|
|
815
825
|
@cloud_redis_stub.call_rpc :failover_instance, request, options: options do |response, operation|
|
@@ -879,7 +889,9 @@ module Google
|
|
879
889
|
options.apply_defaults timeout: @config.rpcs.delete_instance.timeout,
|
880
890
|
metadata: metadata,
|
881
891
|
retry_policy: @config.rpcs.delete_instance.retry_policy
|
882
|
-
|
892
|
+
|
893
|
+
options.apply_defaults timeout: @config.timeout,
|
894
|
+
metadata: @config.metadata,
|
883
895
|
retry_policy: @config.retry_policy
|
884
896
|
|
885
897
|
@cloud_redis_stub.call_rpc :delete_instance, request, options: options do |response, operation|
|
@@ -904,22 +916,21 @@ module Google
|
|
904
916
|
# Configuration can be applied globally to all clients, or to a single client
|
905
917
|
# on construction.
|
906
918
|
#
|
907
|
-
#
|
908
|
-
#
|
909
|
-
#
|
910
|
-
# to 20 seconds,
|
911
|
-
#
|
912
|
-
#
|
913
|
-
#
|
914
|
-
#
|
915
|
-
#
|
916
|
-
#
|
917
|
-
#
|
918
|
-
#
|
919
|
-
#
|
920
|
-
#
|
921
|
-
#
|
922
|
-
# end
|
919
|
+
# @example
|
920
|
+
#
|
921
|
+
# # Modify the global config, setting the timeout for
|
922
|
+
# # list_instances to 20 seconds,
|
923
|
+
# # and all remaining timeouts to 10 seconds.
|
924
|
+
# ::Google::Cloud::Redis::V1beta1::CloudRedis::Client.configure do |config|
|
925
|
+
# config.timeout = 10.0
|
926
|
+
# config.rpcs.list_instances.timeout = 20.0
|
927
|
+
# end
|
928
|
+
#
|
929
|
+
# # Apply the above configuration only to a new client.
|
930
|
+
# client = ::Google::Cloud::Redis::V1beta1::CloudRedis::Client.new do |config|
|
931
|
+
# config.timeout = 10.0
|
932
|
+
# config.rpcs.list_instances.timeout = 20.0
|
933
|
+
# end
|
923
934
|
#
|
924
935
|
# @!attribute [rw] endpoint
|
925
936
|
# The hostname or hostname:port of the service endpoint.
|
@@ -169,7 +169,9 @@ module Google
|
|
169
169
|
options.apply_defaults timeout: @config.rpcs.list_operations.timeout,
|
170
170
|
metadata: metadata,
|
171
171
|
retry_policy: @config.rpcs.list_operations.retry_policy
|
172
|
-
|
172
|
+
|
173
|
+
options.apply_defaults timeout: @config.timeout,
|
174
|
+
metadata: @config.metadata,
|
173
175
|
retry_policy: @config.retry_policy
|
174
176
|
|
175
177
|
@operations_stub.call_rpc :list_operations, request, options: options do |response, operation|
|
@@ -239,7 +241,9 @@ module Google
|
|
239
241
|
options.apply_defaults timeout: @config.rpcs.get_operation.timeout,
|
240
242
|
metadata: metadata,
|
241
243
|
retry_policy: @config.rpcs.get_operation.retry_policy
|
242
|
-
|
244
|
+
|
245
|
+
options.apply_defaults timeout: @config.timeout,
|
246
|
+
metadata: @config.metadata,
|
243
247
|
retry_policy: @config.retry_policy
|
244
248
|
|
245
249
|
@operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
|
@@ -309,7 +313,9 @@ module Google
|
|
309
313
|
options.apply_defaults timeout: @config.rpcs.delete_operation.timeout,
|
310
314
|
metadata: metadata,
|
311
315
|
retry_policy: @config.rpcs.delete_operation.retry_policy
|
312
|
-
|
316
|
+
|
317
|
+
options.apply_defaults timeout: @config.timeout,
|
318
|
+
metadata: @config.metadata,
|
313
319
|
retry_policy: @config.retry_policy
|
314
320
|
|
315
321
|
@operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
|
@@ -384,7 +390,9 @@ module Google
|
|
384
390
|
options.apply_defaults timeout: @config.rpcs.cancel_operation.timeout,
|
385
391
|
metadata: metadata,
|
386
392
|
retry_policy: @config.rpcs.cancel_operation.retry_policy
|
387
|
-
|
393
|
+
|
394
|
+
options.apply_defaults timeout: @config.timeout,
|
395
|
+
metadata: @config.metadata,
|
388
396
|
retry_policy: @config.retry_policy
|
389
397
|
|
390
398
|
@operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
|
@@ -456,7 +464,9 @@ module Google
|
|
456
464
|
options.apply_defaults timeout: @config.rpcs.wait_operation.timeout,
|
457
465
|
metadata: metadata,
|
458
466
|
retry_policy: @config.rpcs.wait_operation.retry_policy
|
459
|
-
|
467
|
+
|
468
|
+
options.apply_defaults timeout: @config.timeout,
|
469
|
+
metadata: @config.metadata,
|
460
470
|
retry_policy: @config.retry_policy
|
461
471
|
|
462
472
|
@operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
|
@@ -481,22 +491,21 @@ module Google
|
|
481
491
|
# Configuration can be applied globally to all clients, or to a single client
|
482
492
|
# on construction.
|
483
493
|
#
|
484
|
-
#
|
485
|
-
#
|
486
|
-
#
|
487
|
-
# to 20 seconds,
|
488
|
-
#
|
489
|
-
#
|
490
|
-
#
|
491
|
-
#
|
492
|
-
#
|
493
|
-
#
|
494
|
-
#
|
495
|
-
#
|
496
|
-
#
|
497
|
-
#
|
498
|
-
#
|
499
|
-
# end
|
494
|
+
# @example
|
495
|
+
#
|
496
|
+
# # Modify the global config, setting the timeout for
|
497
|
+
# # list_operations to 20 seconds,
|
498
|
+
# # and all remaining timeouts to 10 seconds.
|
499
|
+
# ::Google::Longrunning::Operations::Client.configure do |config|
|
500
|
+
# config.timeout = 10.0
|
501
|
+
# config.rpcs.list_operations.timeout = 20.0
|
502
|
+
# end
|
503
|
+
#
|
504
|
+
# # Apply the above configuration only to a new client.
|
505
|
+
# client = ::Google::Longrunning::Operations::Client.new do |config|
|
506
|
+
# config.timeout = 10.0
|
507
|
+
# config.rpcs.list_operations.timeout = 20.0
|
508
|
+
# end
|
500
509
|
#
|
501
510
|
# @!attribute [rw] endpoint
|
502
511
|
# The hostname or hostname:port of the service endpoint.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-redis-v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-11 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.7'
|
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.7'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|