google-cloud-netapp-v1 0.1.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/cloud/netapp/v1/active_directory_pb.rb +1 -1
  3. data/lib/google/cloud/netapp/v1/backup_pb.rb +57 -0
  4. data/lib/google/cloud/netapp/v1/backup_policy_pb.rb +56 -0
  5. data/lib/google/cloud/netapp/v1/backup_vault_pb.rb +56 -0
  6. data/lib/google/cloud/netapp/v1/bindings_override.rb +102 -0
  7. data/lib/google/cloud/netapp/v1/cloud_netapp_service_pb.rb +4 -1
  8. data/lib/google/cloud/netapp/v1/cloud_netapp_service_services_pb.rb +33 -0
  9. data/lib/google/cloud/netapp/v1/kms_pb.rb +1 -1
  10. data/lib/google/cloud/netapp/v1/netapp/client.rb +1742 -120
  11. data/lib/google/cloud/netapp/v1/netapp/operations.rb +10 -1
  12. data/lib/google/cloud/netapp/v1/netapp/paths.rb +59 -0
  13. data/lib/google/cloud/netapp/v1/netapp/rest/client.rb +2314 -40
  14. data/lib/google/cloud/netapp/v1/netapp/rest/operations.rb +80 -5
  15. data/lib/google/cloud/netapp/v1/netapp/rest/service_stub.rb +891 -0
  16. data/lib/google/cloud/netapp/v1/netapp/rest.rb +1 -0
  17. data/lib/google/cloud/netapp/v1/replication_pb.rb +1 -1
  18. data/lib/google/cloud/netapp/v1/rest.rb +1 -0
  19. data/lib/google/cloud/netapp/v1/snapshot_pb.rb +1 -1
  20. data/lib/google/cloud/netapp/v1/storage_pool_pb.rb +1 -1
  21. data/lib/google/cloud/netapp/v1/version.rb +1 -1
  22. data/lib/google/cloud/netapp/v1/volume_pb.rb +3 -1
  23. data/proto_docs/google/api/client.rb +13 -0
  24. data/proto_docs/google/api/field_behavior.rb +14 -0
  25. data/proto_docs/google/cloud/netapp/v1/active_directory.rb +2 -2
  26. data/proto_docs/google/cloud/netapp/v1/backup.rb +231 -0
  27. data/proto_docs/google/cloud/netapp/v1/backup_policy.rb +190 -0
  28. data/proto_docs/google/cloud/netapp/v1/backup_vault.rb +177 -0
  29. data/proto_docs/google/cloud/netapp/v1/common.rb +3 -0
  30. data/proto_docs/google/cloud/netapp/v1/kms.rb +8 -2
  31. data/proto_docs/google/cloud/netapp/v1/replication.rb +2 -2
  32. data/proto_docs/google/cloud/netapp/v1/snapshot.rb +3 -2
  33. data/proto_docs/google/cloud/netapp/v1/storage_pool.rb +10 -3
  34. data/proto_docs/google/cloud/netapp/v1/volume.rb +43 -2
  35. metadata +12 -5
@@ -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
 
@@ -715,9 +790,9 @@ module Google
715
790
  transcoder = Gapic::Rest::GrpcTranscoder.new
716
791
  .with_bindings(
717
792
  uri_method: :get,
718
- uri_template: "/v1/{name}",
793
+ uri_template: "/v1/{name}/operations",
719
794
  matches: [
720
- ["name", %r{^operations/?$}, false]
795
+ ["name", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
721
796
  ]
722
797
  )
723
798
  transcoder.transcode request_pb
@@ -738,7 +813,7 @@ module Google
738
813
  uri_method: :get,
739
814
  uri_template: "/v1/{name}",
740
815
  matches: [
741
- ["name", %r{^operations(?:/.*)?$}, true]
816
+ ["name", %r{^projects/[^/]+/locations/[^/]+/operations/[^/]+/?$}, false]
742
817
  ]
743
818
  )
744
819
  transcoder.transcode request_pb
@@ -759,7 +834,7 @@ module Google
759
834
  uri_method: :delete,
760
835
  uri_template: "/v1/{name}",
761
836
  matches: [
762
- ["name", %r{^operations(?:/.*)?$}, true]
837
+ ["name", %r{^projects/[^/]+/locations/[^/]+/operations/[^/]+/?$}, false]
763
838
  ]
764
839
  )
765
840
  transcoder.transcode request_pb
@@ -781,7 +856,7 @@ module Google
781
856
  uri_template: "/v1/{name}:cancel",
782
857
  body: "*",
783
858
  matches: [
784
- ["name", %r{^operations(?:/.*)?$}, true]
859
+ ["name", %r{^projects/[^/]+/locations/[^/]+/operations/[^/]+/?$}, false]
785
860
  ]
786
861
  )
787
862
  transcoder.transcode request_pb