lib/google/cloud/netapp/v1/netapp/rest/service_stub.rb in google-cloud-netapp-v1-1.1.1 vs lib/google/cloud/netapp/v1/netapp/rest/service_stub.rb in google-cloud-netapp-v1-1.2.0

- old
+ new

@@ -250,10 +250,48 @@ yield result, operation if block_given? result end ## + # Baseline implementation for the switch_active_replica_zone REST call + # + # @param request_pb [::Google::Cloud::NetApp::V1::SwitchActiveReplicaZoneRequest] + # A request object representing the call parameters. Required. + # @param options [::Gapic::CallOptions] + # Overrides the default settings for this call, e.g, timeout, retries etc. Optional. + # + # @yield [result, operation] Access the result along with the TransportOperation object + # @yieldparam result [::Google::Longrunning::Operation] + # @yieldparam operation [::Gapic::Rest::TransportOperation] + # + # @return [::Google::Longrunning::Operation] + # A result object deserialized from the server's reply + def switch_active_replica_zone request_pb, options = nil + raise ::ArgumentError, "request must be provided" if request_pb.nil? + + verb, uri, query_string_params, body = ServiceStub.transcode_switch_active_replica_zone_request request_pb + query_string_params = if query_string_params.any? + query_string_params.to_h { |p| p.split "=", 2 } + else + {} + end + + response = @client_stub.make_http_request( + verb, + uri: uri, + body: body || "", + params: query_string_params, + options: options + ) + operation = ::Gapic::Rest::TransportOperation.new response + result = ::Google::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true + + yield result, operation if block_given? + result + end + + ## # Baseline implementation for the list_volumes REST call # # @param request_pb [::Google::Cloud::NetApp::V1::ListVolumesRequest] # A request object representing the call parameters. Required. # @param options [::Gapic::CallOptions] @@ -2097,9 +2135,31 @@ def self.transcode_delete_storage_pool_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :delete, uri_template: "/v1/{name}", + matches: [ + ["name", %r{^projects/[^/]+/locations/[^/]+/storagePools/[^/]+/?$}, false] + ] + ) + transcoder.transcode request_pb + end + + ## + # @private + # + # GRPC transcoding helper method for the switch_active_replica_zone REST call + # + # @param request_pb [::Google::Cloud::NetApp::V1::SwitchActiveReplicaZoneRequest] + # A request object representing the call parameters. Required. + # @return [Array(String, [String, nil], Hash{String => String})] + # Uri, Body, Query string parameters + def self.transcode_switch_active_replica_zone_request request_pb + transcoder = Gapic::Rest::GrpcTranscoder.new + .with_bindings( + uri_method: :post, + uri_template: "/v1/{name}:switch", + body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/storagePools/[^/]+/?$}, false] ] ) transcoder.transcode request_pb