aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb
diff options
context:
space:
mode:
Diffstat (limited to 'src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb')
-rw-r--r--src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb88
1 files changed, 0 insertions, 88 deletions
diff --git a/src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb b/src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb
deleted file mode 100644
index b34db57b44..0000000000
--- a/src/ruby/bin/apis/tech/pubsub/proto/pubsub_services.rb
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 2015 gRPC authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# Generated by the protocol buffer compiler. DO NOT EDIT!
-# Source: tech/pubsub/proto/pubsub.proto for package 'tech.pubsub'
-
-require 'grpc'
-require 'google/protobuf/empty'
-require 'tech/pubsub/proto/pubsub'
-
-module Tech
- module Pubsub
- module PublisherService
-
- # TODO: add proto service documentation here
- class Service
-
- include GRPC::GenericService
-
- self.marshal_class_method = :encode
- self.unmarshal_class_method = :decode
- self.service_name = 'tech.pubsub.PublisherService'
-
- rpc :CreateTopic, Topic, Topic
- rpc :Publish, PublishRequest, Google::Protobuf::Empty
- rpc :PublishBatch, PublishBatchRequest, PublishBatchResponse
- rpc :GetTopic, GetTopicRequest, Topic
- rpc :ListTopics, ListTopicsRequest, ListTopicsResponse
- rpc :DeleteTopic, DeleteTopicRequest, Google::Protobuf::Empty
- end
-
- Stub = Service.rpc_stub_class
- end
- module SubscriberService
-
- # TODO: add proto service documentation here
- class Service
-
- include GRPC::GenericService
-
- self.marshal_class_method = :encode
- self.unmarshal_class_method = :decode
- self.service_name = 'tech.pubsub.SubscriberService'
-
- rpc :CreateSubscription, Subscription, Subscription
- rpc :GetSubscription, GetSubscriptionRequest, Subscription
- rpc :ListSubscriptions, ListSubscriptionsRequest, ListSubscriptionsResponse
- rpc :DeleteSubscription, DeleteSubscriptionRequest, Google::Protobuf::Empty
- rpc :TruncateSubscription, TruncateSubscriptionRequest, Google::Protobuf::Empty
- rpc :ModifyPushConfig, ModifyPushConfigRequest, Google::Protobuf::Empty
- rpc :Pull, PullRequest, PullResponse
- rpc :PullBatch, PullBatchRequest, PullBatchResponse
- rpc :ModifyAckDeadline, ModifyAckDeadlineRequest, Google::Protobuf::Empty
- rpc :Acknowledge, AcknowledgeRequest, Google::Protobuf::Empty
- rpc :Nack, NackRequest, Google::Protobuf::Empty
- end
-
- Stub = Service.rpc_stub_class
- end
- module PushEndpointService
-
- # TODO: add proto service documentation here
- class Service
-
- include GRPC::GenericService
-
- self.marshal_class_method = :encode
- self.unmarshal_class_method = :decode
- self.service_name = 'tech.pubsub.PushEndpointService'
-
- rpc :HandlePubsubEvent, PubsubEvent, Google::Protobuf::Empty
- end
-
- Stub = Service.rpc_stub_class
- end
- end
-end