google-cloud-memcache-v1beta2 0.2.3 → 0.2.4

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: 99bae616045ea07c1ca5d3bd0efa0fe3f76254574999707553eeea47433793b6
4
- data.tar.gz: a8b915aac5be7cb46772e36c514326b6ec1a37c663103a47977bab3e1146a840
3
+ metadata.gz: '081eaee20782c52e4b641cfcfd478e2f9ec510998d0df25af39ed24b8ac11fe4'
4
+ data.tar.gz: 20dc8b5bd94521dea2b8124a11d4a640ba11805226131ef9133d1546b05d6ce4
5
5
  SHA512:
6
- metadata.gz: 35c030376951238c76c336d6020a6895c0b7f025190f8b95bd05b1b09da060168da3a2900b85ed8a839b29b43f44fe639352876bb757048e3313b2d9f1c399ff
7
- data.tar.gz: 0252cf66b9e614cb2da87f37438da172c41d61b2c90064b88d2242b7e969d14fe51264b6022eb8be791fb7e902b2caffd9676179abdd78c1504e6eb87c29feea
6
+ metadata.gz: f578f619831f3a2e862caad96c004d6c618b239efacb72d4283b61d0d328c58b4ffdea12f3437aff6b203d97a7a11afab4a2c37645e249986647da192553ad2a
7
+ data.tar.gz: 48f19779f9d5999b5c74f75143d7e6f02ffaf192b593f5c406faf0fe933bfa41c4d3d6a157eae845b881974f746acc88b68c51b9d1db7e0472da83e55f634042
@@ -232,6 +232,27 @@ module Google
232
232
  #
233
233
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
234
234
  #
235
+ # @example Basic example
236
+ # require "google/cloud/memcache/v1beta2"
237
+ #
238
+ # # Create a client object. The client can be reused for multiple calls.
239
+ # client = Google::Cloud::Memcache::V1beta2::CloudMemcache::Client.new
240
+ #
241
+ # # Create a request. To set request fields, pass in keyword arguments.
242
+ # request = Google::Cloud::Memcache::V1beta2::ListInstancesRequest.new
243
+ #
244
+ # # Call the list_instances method.
245
+ # result = client.list_instances request
246
+ #
247
+ # # The returned object is of type Gapic::PagedEnumerable. You can
248
+ # # iterate over all elements by calling #each, and the enumerable
249
+ # # will lazily make API calls to fetch subsequent pages. Other
250
+ # # methods are also available for managing paging directly.
251
+ # result.each do |response|
252
+ # # Each element is of type ::Google::Cloud::Memcache::V1beta2::Instance.
253
+ # p response
254
+ # end
255
+ #
235
256
  def list_instances request, options = nil
236
257
  raise ::ArgumentError, "request must be provided" if request.nil?
237
258
 
@@ -249,9 +270,11 @@ module Google
249
270
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
250
271
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
251
272
 
252
- header_params = {
253
- "parent" => request.parent
254
- }
273
+ header_params = {}
274
+ if request.parent
275
+ header_params["parent"] = request.parent
276
+ end
277
+
255
278
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
256
279
  metadata[:"x-goog-request-params"] ||= request_params_header
257
280
 
@@ -303,6 +326,21 @@ module Google
303
326
  #
304
327
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
305
328
  #
329
+ # @example Basic example
330
+ # require "google/cloud/memcache/v1beta2"
331
+ #
332
+ # # Create a client object. The client can be reused for multiple calls.
333
+ # client = Google::Cloud::Memcache::V1beta2::CloudMemcache::Client.new
334
+ #
335
+ # # Create a request. To set request fields, pass in keyword arguments.
336
+ # request = Google::Cloud::Memcache::V1beta2::GetInstanceRequest.new
337
+ #
338
+ # # Call the get_instance method.
339
+ # result = client.get_instance request
340
+ #
341
+ # # The returned object is of type Google::Cloud::Memcache::V1beta2::Instance.
342
+ # p result
343
+ #
306
344
  def get_instance request, options = nil
307
345
  raise ::ArgumentError, "request must be provided" if request.nil?
308
346
 
@@ -320,9 +358,11 @@ module Google
320
358
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
321
359
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
322
360
 
323
- header_params = {
324
- "name" => request.name
325
- }
361
+ header_params = {}
362
+ if request.name
363
+ header_params["name"] = request.name
364
+ end
365
+
326
366
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
327
367
  metadata[:"x-goog-request-params"] ||= request_params_header
328
368
 
@@ -386,6 +426,28 @@ module Google
386
426
  #
387
427
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
388
428
  #
429
+ # @example Basic example
430
+ # require "google/cloud/memcache/v1beta2"
431
+ #
432
+ # # Create a client object. The client can be reused for multiple calls.
433
+ # client = Google::Cloud::Memcache::V1beta2::CloudMemcache::Client.new
434
+ #
435
+ # # Create a request. To set request fields, pass in keyword arguments.
436
+ # request = Google::Cloud::Memcache::V1beta2::CreateInstanceRequest.new
437
+ #
438
+ # # Call the create_instance method.
439
+ # result = client.create_instance request
440
+ #
441
+ # # The returned object is of type Gapic::Operation. You can use this
442
+ # # object to check the status of an operation, cancel it, or wait
443
+ # # for results. Here is how to block until completion:
444
+ # result.wait_until_done! timeout: 60
445
+ # if result.response?
446
+ # p result.response
447
+ # else
448
+ # puts "Error!"
449
+ # end
450
+ #
389
451
  def create_instance request, options = nil
390
452
  raise ::ArgumentError, "request must be provided" if request.nil?
391
453
 
@@ -403,9 +465,11 @@ module Google
403
465
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
404
466
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
405
467
 
406
- header_params = {
407
- "parent" => request.parent
408
- }
468
+ header_params = {}
469
+ if request.parent
470
+ header_params["parent"] = request.parent
471
+ end
472
+
409
473
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
410
474
  metadata[:"x-goog-request-params"] ||= request_params_header
411
475
 
@@ -459,6 +523,28 @@ module Google
459
523
  #
460
524
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
461
525
  #
526
+ # @example Basic example
527
+ # require "google/cloud/memcache/v1beta2"
528
+ #
529
+ # # Create a client object. The client can be reused for multiple calls.
530
+ # client = Google::Cloud::Memcache::V1beta2::CloudMemcache::Client.new
531
+ #
532
+ # # Create a request. To set request fields, pass in keyword arguments.
533
+ # request = Google::Cloud::Memcache::V1beta2::UpdateInstanceRequest.new
534
+ #
535
+ # # Call the update_instance method.
536
+ # result = client.update_instance request
537
+ #
538
+ # # The returned object is of type Gapic::Operation. You can use this
539
+ # # object to check the status of an operation, cancel it, or wait
540
+ # # for results. Here is how to block until completion:
541
+ # result.wait_until_done! timeout: 60
542
+ # if result.response?
543
+ # p result.response
544
+ # else
545
+ # puts "Error!"
546
+ # end
547
+ #
462
548
  def update_instance request, options = nil
463
549
  raise ::ArgumentError, "request must be provided" if request.nil?
464
550
 
@@ -476,9 +562,11 @@ module Google
476
562
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
477
563
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
478
564
 
479
- header_params = {
480
- "resource.name" => request.resource.name
481
- }
565
+ header_params = {}
566
+ if request.resource&.name
567
+ header_params["resource.name"] = request.resource.name
568
+ end
569
+
482
570
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
483
571
  metadata[:"x-goog-request-params"] ||= request_params_header
484
572
 
@@ -536,6 +624,28 @@ module Google
536
624
  #
537
625
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
538
626
  #
627
+ # @example Basic example
628
+ # require "google/cloud/memcache/v1beta2"
629
+ #
630
+ # # Create a client object. The client can be reused for multiple calls.
631
+ # client = Google::Cloud::Memcache::V1beta2::CloudMemcache::Client.new
632
+ #
633
+ # # Create a request. To set request fields, pass in keyword arguments.
634
+ # request = Google::Cloud::Memcache::V1beta2::UpdateParametersRequest.new
635
+ #
636
+ # # Call the update_parameters method.
637
+ # result = client.update_parameters request
638
+ #
639
+ # # The returned object is of type Gapic::Operation. You can use this
640
+ # # object to check the status of an operation, cancel it, or wait
641
+ # # for results. Here is how to block until completion:
642
+ # result.wait_until_done! timeout: 60
643
+ # if result.response?
644
+ # p result.response
645
+ # else
646
+ # puts "Error!"
647
+ # end
648
+ #
539
649
  def update_parameters request, options = nil
540
650
  raise ::ArgumentError, "request must be provided" if request.nil?
541
651
 
@@ -553,9 +663,11 @@ module Google
553
663
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
554
664
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
555
665
 
556
- header_params = {
557
- "name" => request.name
558
- }
666
+ header_params = {}
667
+ if request.name
668
+ header_params["name"] = request.name
669
+ end
670
+
559
671
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
560
672
  metadata[:"x-goog-request-params"] ||= request_params_header
561
673
 
@@ -607,6 +719,28 @@ module Google
607
719
  #
608
720
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
609
721
  #
722
+ # @example Basic example
723
+ # require "google/cloud/memcache/v1beta2"
724
+ #
725
+ # # Create a client object. The client can be reused for multiple calls.
726
+ # client = Google::Cloud::Memcache::V1beta2::CloudMemcache::Client.new
727
+ #
728
+ # # Create a request. To set request fields, pass in keyword arguments.
729
+ # request = Google::Cloud::Memcache::V1beta2::DeleteInstanceRequest.new
730
+ #
731
+ # # Call the delete_instance method.
732
+ # result = client.delete_instance request
733
+ #
734
+ # # The returned object is of type Gapic::Operation. You can use this
735
+ # # object to check the status of an operation, cancel it, or wait
736
+ # # for results. Here is how to block until completion:
737
+ # result.wait_until_done! timeout: 60
738
+ # if result.response?
739
+ # p result.response
740
+ # else
741
+ # puts "Error!"
742
+ # end
743
+ #
610
744
  def delete_instance request, options = nil
611
745
  raise ::ArgumentError, "request must be provided" if request.nil?
612
746
 
@@ -624,9 +758,11 @@ module Google
624
758
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
625
759
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
626
760
 
627
- header_params = {
628
- "name" => request.name
629
- }
761
+ header_params = {}
762
+ if request.name
763
+ header_params["name"] = request.name
764
+ end
765
+
630
766
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
631
767
  metadata[:"x-goog-request-params"] ||= request_params_header
632
768
 
@@ -684,6 +820,28 @@ module Google
684
820
  #
685
821
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
686
822
  #
823
+ # @example Basic example
824
+ # require "google/cloud/memcache/v1beta2"
825
+ #
826
+ # # Create a client object. The client can be reused for multiple calls.
827
+ # client = Google::Cloud::Memcache::V1beta2::CloudMemcache::Client.new
828
+ #
829
+ # # Create a request. To set request fields, pass in keyword arguments.
830
+ # request = Google::Cloud::Memcache::V1beta2::ApplyParametersRequest.new
831
+ #
832
+ # # Call the apply_parameters method.
833
+ # result = client.apply_parameters request
834
+ #
835
+ # # The returned object is of type Gapic::Operation. You can use this
836
+ # # object to check the status of an operation, cancel it, or wait
837
+ # # for results. Here is how to block until completion:
838
+ # result.wait_until_done! timeout: 60
839
+ # if result.response?
840
+ # p result.response
841
+ # else
842
+ # puts "Error!"
843
+ # end
844
+ #
687
845
  def apply_parameters request, options = nil
688
846
  raise ::ArgumentError, "request must be provided" if request.nil?
689
847
 
@@ -701,9 +859,11 @@ module Google
701
859
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
702
860
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
703
861
 
704
- header_params = {
705
- "name" => request.name
706
- }
862
+ header_params = {}
863
+ if request.name
864
+ header_params["name"] = request.name
865
+ end
866
+
707
867
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
708
868
  metadata[:"x-goog-request-params"] ||= request_params_header
709
869
 
@@ -761,6 +921,28 @@ module Google
761
921
  #
762
922
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
763
923
  #
924
+ # @example Basic example
925
+ # require "google/cloud/memcache/v1beta2"
926
+ #
927
+ # # Create a client object. The client can be reused for multiple calls.
928
+ # client = Google::Cloud::Memcache::V1beta2::CloudMemcache::Client.new
929
+ #
930
+ # # Create a request. To set request fields, pass in keyword arguments.
931
+ # request = Google::Cloud::Memcache::V1beta2::ApplySoftwareUpdateRequest.new
932
+ #
933
+ # # Call the apply_software_update method.
934
+ # result = client.apply_software_update request
935
+ #
936
+ # # The returned object is of type Gapic::Operation. You can use this
937
+ # # object to check the status of an operation, cancel it, or wait
938
+ # # for results. Here is how to block until completion:
939
+ # result.wait_until_done! timeout: 60
940
+ # if result.response?
941
+ # p result.response
942
+ # else
943
+ # puts "Error!"
944
+ # end
945
+ #
764
946
  def apply_software_update request, options = nil
765
947
  raise ::ArgumentError, "request must be provided" if request.nil?
766
948
 
@@ -778,9 +960,11 @@ module Google
778
960
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
779
961
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
780
962
 
781
- header_params = {
782
- "instance" => request.instance
783
- }
963
+ header_params = {}
964
+ if request.instance
965
+ header_params["instance"] = request.instance
966
+ end
967
+
784
968
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
785
969
  metadata[:"x-goog-request-params"] ||= request_params_header
786
970
 
@@ -143,6 +143,27 @@ module Google
143
143
  #
144
144
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
145
145
  #
146
+ # @example Basic example
147
+ # require "google/longrunning"
148
+ #
149
+ # # Create a client object. The client can be reused for multiple calls.
150
+ # client = Google::Longrunning::Operations::Client.new
151
+ #
152
+ # # Create a request. To set request fields, pass in keyword arguments.
153
+ # request = Google::Longrunning::ListOperationsRequest.new
154
+ #
155
+ # # Call the list_operations method.
156
+ # result = client.list_operations request
157
+ #
158
+ # # The returned object is of type Gapic::PagedEnumerable. You can
159
+ # # iterate over all elements by calling #each, and the enumerable
160
+ # # will lazily make API calls to fetch subsequent pages. Other
161
+ # # methods are also available for managing paging directly.
162
+ # result.each do |response|
163
+ # # Each element is of type ::Google::Longrunning::Operation.
164
+ # p response
165
+ # end
166
+ #
146
167
  def list_operations request, options = nil
147
168
  raise ::ArgumentError, "request must be provided" if request.nil?
148
169
 
@@ -160,9 +181,11 @@ module Google
160
181
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
161
182
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
162
183
 
163
- header_params = {
164
- "name" => request.name
165
- }
184
+ header_params = {}
185
+ if request.name
186
+ header_params["name"] = request.name
187
+ end
188
+
166
189
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
167
190
  metadata[:"x-goog-request-params"] ||= request_params_header
168
191
 
@@ -215,6 +238,28 @@ module Google
215
238
  #
216
239
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
217
240
  #
241
+ # @example Basic example
242
+ # require "google/longrunning"
243
+ #
244
+ # # Create a client object. The client can be reused for multiple calls.
245
+ # client = Google::Longrunning::Operations::Client.new
246
+ #
247
+ # # Create a request. To set request fields, pass in keyword arguments.
248
+ # request = Google::Longrunning::GetOperationRequest.new
249
+ #
250
+ # # Call the get_operation method.
251
+ # result = client.get_operation request
252
+ #
253
+ # # The returned object is of type Gapic::Operation. You can use this
254
+ # # object to check the status of an operation, cancel it, or wait
255
+ # # for results. Here is how to block until completion:
256
+ # result.wait_until_done! timeout: 60
257
+ # if result.response?
258
+ # p result.response
259
+ # else
260
+ # puts "Error!"
261
+ # end
262
+ #
218
263
  def get_operation request, options = nil
219
264
  raise ::ArgumentError, "request must be provided" if request.nil?
220
265
 
@@ -232,9 +277,11 @@ module Google
232
277
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
233
278
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
234
279
 
235
- header_params = {
236
- "name" => request.name
237
- }
280
+ header_params = {}
281
+ if request.name
282
+ header_params["name"] = request.name
283
+ end
284
+
238
285
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
239
286
  metadata[:"x-goog-request-params"] ||= request_params_header
240
287
 
@@ -287,6 +334,21 @@ module Google
287
334
  #
288
335
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
289
336
  #
337
+ # @example Basic example
338
+ # require "google/longrunning"
339
+ #
340
+ # # Create a client object. The client can be reused for multiple calls.
341
+ # client = Google::Longrunning::Operations::Client.new
342
+ #
343
+ # # Create a request. To set request fields, pass in keyword arguments.
344
+ # request = Google::Longrunning::DeleteOperationRequest.new
345
+ #
346
+ # # Call the delete_operation method.
347
+ # result = client.delete_operation request
348
+ #
349
+ # # The returned object is of type Google::Protobuf::Empty.
350
+ # p result
351
+ #
290
352
  def delete_operation request, options = nil
291
353
  raise ::ArgumentError, "request must be provided" if request.nil?
292
354
 
@@ -304,9 +366,11 @@ module Google
304
366
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
305
367
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
306
368
 
307
- header_params = {
308
- "name" => request.name
309
- }
369
+ header_params = {}
370
+ if request.name
371
+ header_params["name"] = request.name
372
+ end
373
+
310
374
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
311
375
  metadata[:"x-goog-request-params"] ||= request_params_header
312
376
 
@@ -364,6 +428,21 @@ module Google
364
428
  #
365
429
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
366
430
  #
431
+ # @example Basic example
432
+ # require "google/longrunning"
433
+ #
434
+ # # Create a client object. The client can be reused for multiple calls.
435
+ # client = Google::Longrunning::Operations::Client.new
436
+ #
437
+ # # Create a request. To set request fields, pass in keyword arguments.
438
+ # request = Google::Longrunning::CancelOperationRequest.new
439
+ #
440
+ # # Call the cancel_operation method.
441
+ # result = client.cancel_operation request
442
+ #
443
+ # # The returned object is of type Google::Protobuf::Empty.
444
+ # p result
445
+ #
367
446
  def cancel_operation request, options = nil
368
447
  raise ::ArgumentError, "request must be provided" if request.nil?
369
448
 
@@ -381,9 +460,11 @@ module Google
381
460
  gapic_version: ::Google::Cloud::Memcache::V1beta2::VERSION
382
461
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
383
462
 
384
- header_params = {
385
- "name" => request.name
386
- }
463
+ header_params = {}
464
+ if request.name
465
+ header_params["name"] = request.name
466
+ end
467
+
387
468
  request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
388
469
  metadata[:"x-goog-request-params"] ||= request_params_header
389
470
 
@@ -444,6 +525,28 @@ module Google
444
525
  #
445
526
  # @raise [::Google::Cloud::Error] if the RPC is aborted.
446
527
  #
528
+ # @example Basic example
529
+ # require "google/longrunning"
530
+ #
531
+ # # Create a client object. The client can be reused for multiple calls.
532
+ # client = Google::Longrunning::Operations::Client.new
533
+ #
534
+ # # Create a request. To set request fields, pass in keyword arguments.
535
+ # request = Google::Longrunning::WaitOperationRequest.new
536
+ #
537
+ # # Call the wait_operation method.
538
+ # result = client.wait_operation request
539
+ #
540
+ # # The returned object is of type Gapic::Operation. You can use this
541
+ # # object to check the status of an operation, cancel it, or wait
542
+ # # for results. Here is how to block until completion:
543
+ # result.wait_until_done! timeout: 60
544
+ # if result.response?
545
+ # p result.response
546
+ # else
547
+ # puts "Error!"
548
+ # end
549
+ #
447
550
  def wait_operation request, options = nil
448
551
  raise ::ArgumentError, "request must be provided" if request.nil?
449
552
 
@@ -1,8 +1,6 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/cloud/memcache/v1beta2/cloud_memcache.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/annotations_pb'
7
5
  require 'google/api/client_pb'
8
6
  require 'google/api/field_behavior_pb'
@@ -10,6 +8,8 @@ require 'google/api/resource_pb'
10
8
  require 'google/longrunning/operations_pb'
11
9
  require 'google/protobuf/field_mask_pb'
12
10
  require 'google/protobuf/timestamp_pb'
11
+ require 'google/protobuf'
12
+
13
13
  Google::Protobuf::DescriptorPool.generated_pool.build do
14
14
  add_file("google/cloud/memcache/v1beta2/cloud_memcache.proto", :syntax => :proto3) do
15
15
  add_message "google.cloud.memcache.v1beta2.Instance" do
@@ -41,7 +41,7 @@ module Google
41
41
  # * `projects/my-memcached-project/locations/us-central1/instances/my-memcached`
42
42
  class Service
43
43
 
44
- include GRPC::GenericService
44
+ include ::GRPC::GenericService
45
45
 
46
46
  self.marshal_class_method = :encode
47
47
  self.unmarshal_class_method = :decode
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Memcache
23
23
  module V1beta2
24
- VERSION = "0.2.3"
24
+ VERSION = "0.2.4"
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-memcache-v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
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-08-11 00:00:00.000000000 Z
11
+ date: 2021-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common