google-cloud-redis-v1beta1 0.10.1 → 0.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f44b0d22dcb571101d330393ff9b1e94e7c0b133bc0b7d7c8b791ceb2344a5fa
4
- data.tar.gz: 4ca5db842c0fd5773d8cf9d70f9876029740c5f8f3d13ba617d1bd79e84ff91c
3
+ metadata.gz: 7a6e2024e494faa3d37f3471b0e41ac6e83a99fe9e4c448a467dca4f64ffeeb0
4
+ data.tar.gz: 62f1abda33206189933416a4e1c8e393b9b79a0081fa7aa33ddedd3593c98aa5
5
5
  SHA512:
6
- metadata.gz: 75360573b4a2d6fbed2f8aa3d12e879cc740d2b56b477754776265924e7d565291074f1e21cc54719fe721416c90a587f9bda95621bf01223d83862d63b2f801
7
- data.tar.gz: 6f6f9ad8f0d4b48767107985392c02fb2c2292bce674921fe1cddedb4ee6488950ea3de5bf15441f38325aa267183ae9fc2eec910a6a7cb3924aed9c6949f328
6
+ metadata.gz: fc8ce2c544d0477dadb7dd92c8f5c7cdbc38aab685d7bc08388a53c6b792ae58983ec9af8682ca362d2af7be57056c076159773a36b0341566ea1ad759657df5
7
+ data.tar.gz: 679b1138ee711f1420909b8927dc6b40f8730cba6d6f52f97f144fc39dcd38bed2a12fbcc184e2ae763e41d9683f3a2da86c03ccd43424909e774c541205bd1b
@@ -178,7 +178,8 @@ module Google
178
178
  credentials: credentials,
179
179
  endpoint: @config.endpoint,
180
180
  channel_args: @config.channel_args,
181
- interceptors: @config.interceptors
181
+ interceptors: @config.interceptors,
182
+ channel_pool_config: @config.channel_pool
182
183
  )
183
184
  end
184
185
 
@@ -1423,6 +1424,14 @@ module Google
1423
1424
  end
1424
1425
  end
1425
1426
 
1427
+ ##
1428
+ # Configuration for the channel pool
1429
+ # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
1430
+ #
1431
+ def channel_pool
1432
+ @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
1433
+ end
1434
+
1426
1435
  ##
1427
1436
  # Configuration RPC class for the CloudRedis API.
1428
1437
  #
@@ -93,7 +93,8 @@ module Google
93
93
  credentials: credentials,
94
94
  endpoint: @config.endpoint,
95
95
  channel_args: @config.channel_args,
96
- interceptors: @config.interceptors
96
+ interceptors: @config.interceptors,
97
+ channel_pool_config: @config.channel_pool
97
98
  )
98
99
 
99
100
  # Used by an LRO wrapper for some methods of this service
@@ -701,6 +702,14 @@ module Google
701
702
  end
702
703
  end
703
704
 
705
+ ##
706
+ # Configuration for the channel pool
707
+ # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
708
+ #
709
+ def channel_pool
710
+ @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
711
+ end
712
+
704
713
  ##
705
714
  # Configuration RPC class for the Operations API.
706
715
  #
@@ -230,6 +230,26 @@ module Google
230
230
  # @return [::Google::Cloud::Redis::V1beta1::ListInstancesResponse]
231
231
  #
232
232
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
233
+ #
234
+ # @example Basic example
235
+ # require "google/cloud/redis/v1beta1"
236
+ #
237
+ # # Create a client object. The client can be reused for multiple calls.
238
+ # client = Google::Cloud::Redis::V1beta1::CloudRedis::Rest::Client.new
239
+ #
240
+ # # Create a request. To set request fields, pass in keyword arguments.
241
+ # request = Google::Cloud::Redis::V1beta1::ListInstancesRequest.new
242
+ #
243
+ # # Call the list_instances method.
244
+ # result = client.list_instances request
245
+ #
246
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
247
+ # # over elements, and API calls will be issued to fetch pages as needed.
248
+ # result.each do |item|
249
+ # # Each element is of type ::Google::Cloud::Redis::V1beta1::Instance.
250
+ # p item
251
+ # end
252
+ #
233
253
  def list_instances request, options = nil
234
254
  raise ::ArgumentError, "request must be provided" if request.nil?
235
255
 
@@ -294,6 +314,22 @@ module Google
294
314
  # @return [::Google::Cloud::Redis::V1beta1::Instance]
295
315
  #
296
316
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
317
+ #
318
+ # @example Basic example
319
+ # require "google/cloud/redis/v1beta1"
320
+ #
321
+ # # Create a client object. The client can be reused for multiple calls.
322
+ # client = Google::Cloud::Redis::V1beta1::CloudRedis::Rest::Client.new
323
+ #
324
+ # # Create a request. To set request fields, pass in keyword arguments.
325
+ # request = Google::Cloud::Redis::V1beta1::GetInstanceRequest.new
326
+ #
327
+ # # Call the get_instance method.
328
+ # result = client.get_instance request
329
+ #
330
+ # # The returned object is of type Google::Cloud::Redis::V1beta1::Instance.
331
+ # p result
332
+ #
297
333
  def get_instance request, options = nil
298
334
  raise ::ArgumentError, "request must be provided" if request.nil?
299
335
 
@@ -360,6 +396,22 @@ module Google
360
396
  # @return [::Google::Cloud::Redis::V1beta1::InstanceAuthString]
361
397
  #
362
398
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
399
+ #
400
+ # @example Basic example
401
+ # require "google/cloud/redis/v1beta1"
402
+ #
403
+ # # Create a client object. The client can be reused for multiple calls.
404
+ # client = Google::Cloud::Redis::V1beta1::CloudRedis::Rest::Client.new
405
+ #
406
+ # # Create a request. To set request fields, pass in keyword arguments.
407
+ # request = Google::Cloud::Redis::V1beta1::GetInstanceAuthStringRequest.new
408
+ #
409
+ # # Call the get_instance_auth_string method.
410
+ # result = client.get_instance_auth_string request
411
+ #
412
+ # # The returned object is of type Google::Cloud::Redis::V1beta1::InstanceAuthString.
413
+ # p result
414
+ #
363
415
  def get_instance_auth_string request, options = nil
364
416
  raise ::ArgumentError, "request must be provided" if request.nil?
365
417
 
@@ -446,6 +498,29 @@ module Google
446
498
  # @return [::Gapic::Operation]
447
499
  #
448
500
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
501
+ #
502
+ # @example Basic example
503
+ # require "google/cloud/redis/v1beta1"
504
+ #
505
+ # # Create a client object. The client can be reused for multiple calls.
506
+ # client = Google::Cloud::Redis::V1beta1::CloudRedis::Rest::Client.new
507
+ #
508
+ # # Create a request. To set request fields, pass in keyword arguments.
509
+ # request = Google::Cloud::Redis::V1beta1::CreateInstanceRequest.new
510
+ #
511
+ # # Call the create_instance method.
512
+ # result = client.create_instance request
513
+ #
514
+ # # The returned object is of type Gapic::Operation. You can use it to
515
+ # # check the status of an operation, cancel it, or wait for results.
516
+ # # Here is how to wait for a response.
517
+ # result.wait_until_done! timeout: 60
518
+ # if result.response?
519
+ # p result.response
520
+ # else
521
+ # puts "No response received."
522
+ # end
523
+ #
449
524
  def create_instance request, options = nil
450
525
  raise ::ArgumentError, "request must be provided" if request.nil?
451
526
 
@@ -524,6 +599,29 @@ module Google
524
599
  # @return [::Gapic::Operation]
525
600
  #
526
601
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
602
+ #
603
+ # @example Basic example
604
+ # require "google/cloud/redis/v1beta1"
605
+ #
606
+ # # Create a client object. The client can be reused for multiple calls.
607
+ # client = Google::Cloud::Redis::V1beta1::CloudRedis::Rest::Client.new
608
+ #
609
+ # # Create a request. To set request fields, pass in keyword arguments.
610
+ # request = Google::Cloud::Redis::V1beta1::UpdateInstanceRequest.new
611
+ #
612
+ # # Call the update_instance method.
613
+ # result = client.update_instance request
614
+ #
615
+ # # The returned object is of type Gapic::Operation. You can use it to
616
+ # # check the status of an operation, cancel it, or wait for results.
617
+ # # Here is how to wait for a response.
618
+ # result.wait_until_done! timeout: 60
619
+ # if result.response?
620
+ # p result.response
621
+ # else
622
+ # puts "No response received."
623
+ # end
624
+ #
527
625
  def update_instance request, options = nil
528
626
  raise ::ArgumentError, "request must be provided" if request.nil?
529
627
 
@@ -592,6 +690,29 @@ module Google
592
690
  # @return [::Gapic::Operation]
593
691
  #
594
692
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
693
+ #
694
+ # @example Basic example
695
+ # require "google/cloud/redis/v1beta1"
696
+ #
697
+ # # Create a client object. The client can be reused for multiple calls.
698
+ # client = Google::Cloud::Redis::V1beta1::CloudRedis::Rest::Client.new
699
+ #
700
+ # # Create a request. To set request fields, pass in keyword arguments.
701
+ # request = Google::Cloud::Redis::V1beta1::UpgradeInstanceRequest.new
702
+ #
703
+ # # Call the upgrade_instance method.
704
+ # result = client.upgrade_instance request
705
+ #
706
+ # # The returned object is of type Gapic::Operation. You can use it to
707
+ # # check the status of an operation, cancel it, or wait for results.
708
+ # # Here is how to wait for a response.
709
+ # result.wait_until_done! timeout: 60
710
+ # if result.response?
711
+ # p result.response
712
+ # else
713
+ # puts "No response received."
714
+ # end
715
+ #
595
716
  def upgrade_instance request, options = nil
596
717
  raise ::ArgumentError, "request must be provided" if request.nil?
597
718
 
@@ -666,6 +787,29 @@ module Google
666
787
  # @return [::Gapic::Operation]
667
788
  #
668
789
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
790
+ #
791
+ # @example Basic example
792
+ # require "google/cloud/redis/v1beta1"
793
+ #
794
+ # # Create a client object. The client can be reused for multiple calls.
795
+ # client = Google::Cloud::Redis::V1beta1::CloudRedis::Rest::Client.new
796
+ #
797
+ # # Create a request. To set request fields, pass in keyword arguments.
798
+ # request = Google::Cloud::Redis::V1beta1::ImportInstanceRequest.new
799
+ #
800
+ # # Call the import_instance method.
801
+ # result = client.import_instance request
802
+ #
803
+ # # The returned object is of type Gapic::Operation. You can use it to
804
+ # # check the status of an operation, cancel it, or wait for results.
805
+ # # Here is how to wait for a response.
806
+ # result.wait_until_done! timeout: 60
807
+ # if result.response?
808
+ # p result.response
809
+ # else
810
+ # puts "No response received."
811
+ # end
812
+ #
669
813
  def import_instance request, options = nil
670
814
  raise ::ArgumentError, "request must be provided" if request.nil?
671
815
 
@@ -738,6 +882,29 @@ module Google
738
882
  # @return [::Gapic::Operation]
739
883
  #
740
884
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
885
+ #
886
+ # @example Basic example
887
+ # require "google/cloud/redis/v1beta1"
888
+ #
889
+ # # Create a client object. The client can be reused for multiple calls.
890
+ # client = Google::Cloud::Redis::V1beta1::CloudRedis::Rest::Client.new
891
+ #
892
+ # # Create a request. To set request fields, pass in keyword arguments.
893
+ # request = Google::Cloud::Redis::V1beta1::ExportInstanceRequest.new
894
+ #
895
+ # # Call the export_instance method.
896
+ # result = client.export_instance request
897
+ #
898
+ # # The returned object is of type Gapic::Operation. You can use it to
899
+ # # check the status of an operation, cancel it, or wait for results.
900
+ # # Here is how to wait for a response.
901
+ # result.wait_until_done! timeout: 60
902
+ # if result.response?
903
+ # p result.response
904
+ # else
905
+ # puts "No response received."
906
+ # end
907
+ #
741
908
  def export_instance request, options = nil
742
909
  raise ::ArgumentError, "request must be provided" if request.nil?
743
910
 
@@ -807,6 +974,29 @@ module Google
807
974
  # @return [::Gapic::Operation]
808
975
  #
809
976
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
977
+ #
978
+ # @example Basic example
979
+ # require "google/cloud/redis/v1beta1"
980
+ #
981
+ # # Create a client object. The client can be reused for multiple calls.
982
+ # client = Google::Cloud::Redis::V1beta1::CloudRedis::Rest::Client.new
983
+ #
984
+ # # Create a request. To set request fields, pass in keyword arguments.
985
+ # request = Google::Cloud::Redis::V1beta1::FailoverInstanceRequest.new
986
+ #
987
+ # # Call the failover_instance method.
988
+ # result = client.failover_instance request
989
+ #
990
+ # # The returned object is of type Gapic::Operation. You can use it to
991
+ # # check the status of an operation, cancel it, or wait for results.
992
+ # # Here is how to wait for a response.
993
+ # result.wait_until_done! timeout: 60
994
+ # if result.response?
995
+ # p result.response
996
+ # else
997
+ # puts "No response received."
998
+ # end
999
+ #
810
1000
  def failover_instance request, options = nil
811
1001
  raise ::ArgumentError, "request must be provided" if request.nil?
812
1002
 
@@ -873,6 +1063,29 @@ module Google
873
1063
  # @return [::Gapic::Operation]
874
1064
  #
875
1065
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
1066
+ #
1067
+ # @example Basic example
1068
+ # require "google/cloud/redis/v1beta1"
1069
+ #
1070
+ # # Create a client object. The client can be reused for multiple calls.
1071
+ # client = Google::Cloud::Redis::V1beta1::CloudRedis::Rest::Client.new
1072
+ #
1073
+ # # Create a request. To set request fields, pass in keyword arguments.
1074
+ # request = Google::Cloud::Redis::V1beta1::DeleteInstanceRequest.new
1075
+ #
1076
+ # # Call the delete_instance method.
1077
+ # result = client.delete_instance request
1078
+ #
1079
+ # # The returned object is of type Gapic::Operation. You can use it to
1080
+ # # check the status of an operation, cancel it, or wait for results.
1081
+ # # Here is how to wait for a response.
1082
+ # result.wait_until_done! timeout: 60
1083
+ # if result.response?
1084
+ # p result.response
1085
+ # else
1086
+ # puts "No response received."
1087
+ # end
1088
+ #
876
1089
  def delete_instance request, options = nil
877
1090
  raise ::ArgumentError, "request must be provided" if request.nil?
878
1091
 
@@ -945,6 +1158,29 @@ module Google
945
1158
  # @return [::Gapic::Operation]
946
1159
  #
947
1160
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
1161
+ #
1162
+ # @example Basic example
1163
+ # require "google/cloud/redis/v1beta1"
1164
+ #
1165
+ # # Create a client object. The client can be reused for multiple calls.
1166
+ # client = Google::Cloud::Redis::V1beta1::CloudRedis::Rest::Client.new
1167
+ #
1168
+ # # Create a request. To set request fields, pass in keyword arguments.
1169
+ # request = Google::Cloud::Redis::V1beta1::RescheduleMaintenanceRequest.new
1170
+ #
1171
+ # # Call the reschedule_maintenance method.
1172
+ # result = client.reschedule_maintenance request
1173
+ #
1174
+ # # The returned object is of type Gapic::Operation. You can use it to
1175
+ # # check the status of an operation, cancel it, or wait for results.
1176
+ # # Here is how to wait for a response.
1177
+ # result.wait_until_done! timeout: 60
1178
+ # if result.response?
1179
+ # p result.response
1180
+ # else
1181
+ # puts "No response received."
1182
+ # end
1183
+ #
948
1184
  def reschedule_maintenance request, options = nil
949
1185
  raise ::ArgumentError, "request must be provided" if request.nil?
950
1186
 
@@ -136,6 +136,26 @@ module Google
136
136
  # @return [::Gapic::Operation]
137
137
  #
138
138
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
139
+ #
140
+ # @example Basic example
141
+ # require "google/longrunning"
142
+ #
143
+ # # Create a client object. The client can be reused for multiple calls.
144
+ # client = Google::Longrunning::Operations::Rest::Client.new
145
+ #
146
+ # # Create a request. To set request fields, pass in keyword arguments.
147
+ # request = Google::Longrunning::ListOperationsRequest.new
148
+ #
149
+ # # Call the list_operations method.
150
+ # result = client.list_operations request
151
+ #
152
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
153
+ # # over elements, and API calls will be issued to fetch pages as needed.
154
+ # result.each do |item|
155
+ # # Each element is of type ::Google::Longrunning::Operation.
156
+ # p item
157
+ # end
158
+ #
139
159
  def list_operations request, options = nil
140
160
  raise ::ArgumentError, "request must be provided" if request.nil?
141
161
 
@@ -201,6 +221,29 @@ module Google
201
221
  # @return [::Gapic::Operation]
202
222
  #
203
223
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
224
+ #
225
+ # @example Basic example
226
+ # require "google/longrunning"
227
+ #
228
+ # # Create a client object. The client can be reused for multiple calls.
229
+ # client = Google::Longrunning::Operations::Rest::Client.new
230
+ #
231
+ # # Create a request. To set request fields, pass in keyword arguments.
232
+ # request = Google::Longrunning::GetOperationRequest.new
233
+ #
234
+ # # Call the get_operation method.
235
+ # result = client.get_operation request
236
+ #
237
+ # # The returned object is of type Gapic::Operation. You can use it to
238
+ # # check the status of an operation, cancel it, or wait for results.
239
+ # # Here is how to wait for a response.
240
+ # result.wait_until_done! timeout: 60
241
+ # if result.response?
242
+ # p result.response
243
+ # else
244
+ # puts "No response received."
245
+ # end
246
+ #
204
247
  def get_operation request, options = nil
205
248
  raise ::ArgumentError, "request must be provided" if request.nil?
206
249
 
@@ -267,6 +310,22 @@ module Google
267
310
  # @return [::Google::Protobuf::Empty]
268
311
  #
269
312
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
313
+ #
314
+ # @example Basic example
315
+ # require "google/longrunning"
316
+ #
317
+ # # Create a client object. The client can be reused for multiple calls.
318
+ # client = Google::Longrunning::Operations::Rest::Client.new
319
+ #
320
+ # # Create a request. To set request fields, pass in keyword arguments.
321
+ # request = Google::Longrunning::DeleteOperationRequest.new
322
+ #
323
+ # # Call the delete_operation method.
324
+ # result = client.delete_operation request
325
+ #
326
+ # # The returned object is of type Google::Protobuf::Empty.
327
+ # p result
328
+ #
270
329
  def delete_operation request, options = nil
271
330
  raise ::ArgumentError, "request must be provided" if request.nil?
272
331
 
@@ -338,6 +397,22 @@ module Google
338
397
  # @return [::Google::Protobuf::Empty]
339
398
  #
340
399
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
400
+ #
401
+ # @example Basic example
402
+ # require "google/longrunning"
403
+ #
404
+ # # Create a client object. The client can be reused for multiple calls.
405
+ # client = Google::Longrunning::Operations::Rest::Client.new
406
+ #
407
+ # # Create a request. To set request fields, pass in keyword arguments.
408
+ # request = Google::Longrunning::CancelOperationRequest.new
409
+ #
410
+ # # Call the cancel_operation method.
411
+ # result = client.cancel_operation request
412
+ #
413
+ # # The returned object is of type Google::Protobuf::Empty.
414
+ # p result
415
+ #
341
416
  def cancel_operation request, options = nil
342
417
  raise ::ArgumentError, "request must be provided" if request.nil?
343
418
 
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Redis
23
23
  module V1beta1
24
- VERSION = "0.10.1"
24
+ VERSION = "0.11.0"
25
25
  end
26
26
  end
27
27
  end
@@ -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
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.10.1
4
+ version: 0.11.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-06-06 00:00:00.000000000 Z
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.1
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.19.1
29
+ version: 0.20.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -218,7 +218,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
218
218
  - !ruby/object:Gem::Version
219
219
  version: '0'
220
220
  requirements: []
221
- rubygems_version: 3.4.2
221
+ rubygems_version: 3.4.19
222
222
  signing_key:
223
223
  specification_version: 4
224
224
  summary: Creates and manages Redis instances on the Google Cloud Platform.