google-cloud-datastream-v1 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,166 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2022 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Cloud
22
+ module Datastream
23
+ module V1
24
+ module Datastream
25
+ # Path helper methods for the Datastream API.
26
+ module Paths
27
+ ##
28
+ # Create a fully-qualified ConnectionProfile resource string.
29
+ #
30
+ # The resource will be in the following format:
31
+ #
32
+ # `projects/{project}/locations/{location}/connectionProfiles/{connection_profile}`
33
+ #
34
+ # @param project [String]
35
+ # @param location [String]
36
+ # @param connection_profile [String]
37
+ #
38
+ # @return [::String]
39
+ def connection_profile_path project:, location:, connection_profile:
40
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
41
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
42
+
43
+ "projects/#{project}/locations/#{location}/connectionProfiles/#{connection_profile}"
44
+ end
45
+
46
+ ##
47
+ # Create a fully-qualified Location resource string.
48
+ #
49
+ # The resource will be in the following format:
50
+ #
51
+ # `projects/{project}/locations/{location}`
52
+ #
53
+ # @param project [String]
54
+ # @param location [String]
55
+ #
56
+ # @return [::String]
57
+ def location_path project:, location:
58
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
59
+
60
+ "projects/#{project}/locations/#{location}"
61
+ end
62
+
63
+ ##
64
+ # Create a fully-qualified Networks resource string.
65
+ #
66
+ # The resource will be in the following format:
67
+ #
68
+ # `projects/{project}/global/networks/{network}`
69
+ #
70
+ # @param project [String]
71
+ # @param network [String]
72
+ #
73
+ # @return [::String]
74
+ def networks_path project:, network:
75
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
76
+
77
+ "projects/#{project}/global/networks/#{network}"
78
+ end
79
+
80
+ ##
81
+ # Create a fully-qualified PrivateConnection resource string.
82
+ #
83
+ # The resource will be in the following format:
84
+ #
85
+ # `projects/{project}/locations/{location}/privateConnections/{private_connection}`
86
+ #
87
+ # @param project [String]
88
+ # @param location [String]
89
+ # @param private_connection [String]
90
+ #
91
+ # @return [::String]
92
+ def private_connection_path project:, location:, private_connection:
93
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
94
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
95
+
96
+ "projects/#{project}/locations/#{location}/privateConnections/#{private_connection}"
97
+ end
98
+
99
+ ##
100
+ # Create a fully-qualified Route resource string.
101
+ #
102
+ # The resource will be in the following format:
103
+ #
104
+ # `projects/{project}/locations/{location}/privateConnections/{private_connection}/routes/{route}`
105
+ #
106
+ # @param project [String]
107
+ # @param location [String]
108
+ # @param private_connection [String]
109
+ # @param route [String]
110
+ #
111
+ # @return [::String]
112
+ def route_path project:, location:, private_connection:, route:
113
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
114
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
115
+ raise ::ArgumentError, "private_connection cannot contain /" if private_connection.to_s.include? "/"
116
+
117
+ "projects/#{project}/locations/#{location}/privateConnections/#{private_connection}/routes/#{route}"
118
+ end
119
+
120
+ ##
121
+ # Create a fully-qualified Stream resource string.
122
+ #
123
+ # The resource will be in the following format:
124
+ #
125
+ # `projects/{project}/locations/{location}/streams/{stream}`
126
+ #
127
+ # @param project [String]
128
+ # @param location [String]
129
+ # @param stream [String]
130
+ #
131
+ # @return [::String]
132
+ def stream_path project:, location:, stream:
133
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
134
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
135
+
136
+ "projects/#{project}/locations/#{location}/streams/#{stream}"
137
+ end
138
+
139
+ ##
140
+ # Create a fully-qualified StreamObject resource string.
141
+ #
142
+ # The resource will be in the following format:
143
+ #
144
+ # `projects/{project}/locations/{location}/streams/{stream}/objects/{object}`
145
+ #
146
+ # @param project [String]
147
+ # @param location [String]
148
+ # @param stream [String]
149
+ # @param object [String]
150
+ #
151
+ # @return [::String]
152
+ def stream_object_path project:, location:, stream:, object:
153
+ raise ::ArgumentError, "project cannot contain /" if project.to_s.include? "/"
154
+ raise ::ArgumentError, "location cannot contain /" if location.to_s.include? "/"
155
+ raise ::ArgumentError, "stream cannot contain /" if stream.to_s.include? "/"
156
+
157
+ "projects/#{project}/locations/#{location}/streams/#{stream}/objects/#{object}"
158
+ end
159
+
160
+ extend self
161
+ end
162
+ end
163
+ end
164
+ end
165
+ end
166
+ end
@@ -0,0 +1,50 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2022 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+ require "gapic/common"
20
+ require "gapic/config"
21
+ require "gapic/config/method"
22
+
23
+ require "google/cloud/datastream/v1/version"
24
+
25
+ require "google/cloud/datastream/v1/datastream/credentials"
26
+ require "google/cloud/datastream/v1/datastream/paths"
27
+ require "google/cloud/datastream/v1/datastream/operations"
28
+ require "google/cloud/datastream/v1/datastream/client"
29
+
30
+ module Google
31
+ module Cloud
32
+ module Datastream
33
+ module V1
34
+ ##
35
+ # Datastream service
36
+ #
37
+ # To load this service and instantiate a client:
38
+ #
39
+ # require "google/cloud/datastream/v1/datastream"
40
+ # client = ::Google::Cloud::Datastream::V1::Datastream::Client.new
41
+ #
42
+ module Datastream
43
+ end
44
+ end
45
+ end
46
+ end
47
+ end
48
+
49
+ helper_path = ::File.join __dir__, "datastream", "helpers.rb"
50
+ require "google/cloud/datastream/v1/datastream/helpers" if ::File.file? helper_path
@@ -0,0 +1,249 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: google/cloud/datastream/v1/datastream.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'google/api/annotations_pb'
7
+ require 'google/api/client_pb'
8
+ require 'google/api/field_behavior_pb'
9
+ require 'google/api/resource_pb'
10
+ require 'google/cloud/datastream/v1/datastream_resources_pb'
11
+ require 'google/longrunning/operations_pb'
12
+ require 'google/protobuf/field_mask_pb'
13
+ require 'google/protobuf/timestamp_pb'
14
+
15
+ Google::Protobuf::DescriptorPool.generated_pool.build do
16
+ add_file("google/cloud/datastream/v1/datastream.proto", :syntax => :proto3) do
17
+ add_message "google.cloud.datastream.v1.DiscoverConnectionProfileRequest" do
18
+ optional :parent, :string, 1
19
+ oneof :target do
20
+ optional :connection_profile, :message, 200, "google.cloud.datastream.v1.ConnectionProfile"
21
+ optional :connection_profile_name, :string, 201
22
+ end
23
+ oneof :hierarchy do
24
+ optional :full_hierarchy, :bool, 3
25
+ optional :hierarchy_depth, :int32, 4
26
+ end
27
+ oneof :data_object do
28
+ optional :oracle_rdbms, :message, 100, "google.cloud.datastream.v1.OracleRdbms"
29
+ optional :mysql_rdbms, :message, 101, "google.cloud.datastream.v1.MysqlRdbms"
30
+ end
31
+ end
32
+ add_message "google.cloud.datastream.v1.DiscoverConnectionProfileResponse" do
33
+ oneof :data_object do
34
+ optional :oracle_rdbms, :message, 100, "google.cloud.datastream.v1.OracleRdbms"
35
+ optional :mysql_rdbms, :message, 101, "google.cloud.datastream.v1.MysqlRdbms"
36
+ end
37
+ end
38
+ add_message "google.cloud.datastream.v1.FetchStaticIpsRequest" do
39
+ optional :name, :string, 1
40
+ optional :page_size, :int32, 2
41
+ optional :page_token, :string, 3
42
+ end
43
+ add_message "google.cloud.datastream.v1.FetchStaticIpsResponse" do
44
+ repeated :static_ips, :string, 1
45
+ optional :next_page_token, :string, 2
46
+ end
47
+ add_message "google.cloud.datastream.v1.ListConnectionProfilesRequest" do
48
+ optional :parent, :string, 1
49
+ optional :page_size, :int32, 2
50
+ optional :page_token, :string, 3
51
+ optional :filter, :string, 4
52
+ optional :order_by, :string, 5
53
+ end
54
+ add_message "google.cloud.datastream.v1.ListConnectionProfilesResponse" do
55
+ repeated :connection_profiles, :message, 1, "google.cloud.datastream.v1.ConnectionProfile"
56
+ optional :next_page_token, :string, 2
57
+ repeated :unreachable, :string, 3
58
+ end
59
+ add_message "google.cloud.datastream.v1.GetConnectionProfileRequest" do
60
+ optional :name, :string, 1
61
+ end
62
+ add_message "google.cloud.datastream.v1.CreateConnectionProfileRequest" do
63
+ optional :parent, :string, 1
64
+ optional :connection_profile_id, :string, 2
65
+ optional :connection_profile, :message, 3, "google.cloud.datastream.v1.ConnectionProfile"
66
+ optional :request_id, :string, 4
67
+ optional :validate_only, :bool, 5
68
+ optional :force, :bool, 6
69
+ end
70
+ add_message "google.cloud.datastream.v1.UpdateConnectionProfileRequest" do
71
+ optional :update_mask, :message, 1, "google.protobuf.FieldMask"
72
+ optional :connection_profile, :message, 2, "google.cloud.datastream.v1.ConnectionProfile"
73
+ optional :request_id, :string, 3
74
+ optional :validate_only, :bool, 4
75
+ optional :force, :bool, 5
76
+ end
77
+ add_message "google.cloud.datastream.v1.DeleteConnectionProfileRequest" do
78
+ optional :name, :string, 1
79
+ optional :request_id, :string, 2
80
+ end
81
+ add_message "google.cloud.datastream.v1.ListStreamsRequest" do
82
+ optional :parent, :string, 1
83
+ optional :page_size, :int32, 2
84
+ optional :page_token, :string, 3
85
+ optional :filter, :string, 4
86
+ optional :order_by, :string, 5
87
+ end
88
+ add_message "google.cloud.datastream.v1.ListStreamsResponse" do
89
+ repeated :streams, :message, 1, "google.cloud.datastream.v1.Stream"
90
+ optional :next_page_token, :string, 2
91
+ repeated :unreachable, :string, 3
92
+ end
93
+ add_message "google.cloud.datastream.v1.GetStreamRequest" do
94
+ optional :name, :string, 1
95
+ end
96
+ add_message "google.cloud.datastream.v1.CreateStreamRequest" do
97
+ optional :parent, :string, 1
98
+ optional :stream_id, :string, 2
99
+ optional :stream, :message, 3, "google.cloud.datastream.v1.Stream"
100
+ optional :request_id, :string, 4
101
+ optional :validate_only, :bool, 5
102
+ optional :force, :bool, 6
103
+ end
104
+ add_message "google.cloud.datastream.v1.UpdateStreamRequest" do
105
+ optional :update_mask, :message, 1, "google.protobuf.FieldMask"
106
+ optional :stream, :message, 2, "google.cloud.datastream.v1.Stream"
107
+ optional :request_id, :string, 3
108
+ optional :validate_only, :bool, 4
109
+ optional :force, :bool, 5
110
+ end
111
+ add_message "google.cloud.datastream.v1.DeleteStreamRequest" do
112
+ optional :name, :string, 1
113
+ optional :request_id, :string, 2
114
+ end
115
+ add_message "google.cloud.datastream.v1.GetStreamObjectRequest" do
116
+ optional :name, :string, 1
117
+ end
118
+ add_message "google.cloud.datastream.v1.LookupStreamObjectRequest" do
119
+ optional :parent, :string, 1
120
+ optional :source_object_identifier, :message, 2, "google.cloud.datastream.v1.SourceObjectIdentifier"
121
+ end
122
+ add_message "google.cloud.datastream.v1.StartBackfillJobRequest" do
123
+ optional :object, :string, 1
124
+ end
125
+ add_message "google.cloud.datastream.v1.StartBackfillJobResponse" do
126
+ optional :object, :message, 1, "google.cloud.datastream.v1.StreamObject"
127
+ end
128
+ add_message "google.cloud.datastream.v1.StopBackfillJobRequest" do
129
+ optional :object, :string, 1
130
+ end
131
+ add_message "google.cloud.datastream.v1.StopBackfillJobResponse" do
132
+ optional :object, :message, 1, "google.cloud.datastream.v1.StreamObject"
133
+ end
134
+ add_message "google.cloud.datastream.v1.ListStreamObjectsRequest" do
135
+ optional :parent, :string, 1
136
+ optional :page_size, :int32, 2
137
+ optional :page_token, :string, 3
138
+ end
139
+ add_message "google.cloud.datastream.v1.ListStreamObjectsResponse" do
140
+ repeated :stream_objects, :message, 1, "google.cloud.datastream.v1.StreamObject"
141
+ optional :next_page_token, :string, 2
142
+ end
143
+ add_message "google.cloud.datastream.v1.OperationMetadata" do
144
+ optional :create_time, :message, 1, "google.protobuf.Timestamp"
145
+ optional :end_time, :message, 2, "google.protobuf.Timestamp"
146
+ optional :target, :string, 3
147
+ optional :verb, :string, 4
148
+ optional :status_message, :string, 5
149
+ optional :requested_cancellation, :bool, 6
150
+ optional :api_version, :string, 7
151
+ optional :validation_result, :message, 8, "google.cloud.datastream.v1.ValidationResult"
152
+ end
153
+ add_message "google.cloud.datastream.v1.CreatePrivateConnectionRequest" do
154
+ optional :parent, :string, 1
155
+ optional :private_connection_id, :string, 2
156
+ optional :private_connection, :message, 3, "google.cloud.datastream.v1.PrivateConnection"
157
+ optional :request_id, :string, 4
158
+ end
159
+ add_message "google.cloud.datastream.v1.ListPrivateConnectionsRequest" do
160
+ optional :parent, :string, 1
161
+ optional :page_size, :int32, 2
162
+ optional :page_token, :string, 3
163
+ optional :filter, :string, 4
164
+ optional :order_by, :string, 5
165
+ end
166
+ add_message "google.cloud.datastream.v1.ListPrivateConnectionsResponse" do
167
+ repeated :private_connections, :message, 1, "google.cloud.datastream.v1.PrivateConnection"
168
+ optional :next_page_token, :string, 2
169
+ repeated :unreachable, :string, 3
170
+ end
171
+ add_message "google.cloud.datastream.v1.DeletePrivateConnectionRequest" do
172
+ optional :name, :string, 1
173
+ optional :request_id, :string, 2
174
+ optional :force, :bool, 3
175
+ end
176
+ add_message "google.cloud.datastream.v1.GetPrivateConnectionRequest" do
177
+ optional :name, :string, 1
178
+ end
179
+ add_message "google.cloud.datastream.v1.CreateRouteRequest" do
180
+ optional :parent, :string, 1
181
+ optional :route_id, :string, 2
182
+ optional :route, :message, 3, "google.cloud.datastream.v1.Route"
183
+ optional :request_id, :string, 4
184
+ end
185
+ add_message "google.cloud.datastream.v1.ListRoutesRequest" do
186
+ optional :parent, :string, 1
187
+ optional :page_size, :int32, 2
188
+ optional :page_token, :string, 3
189
+ optional :filter, :string, 4
190
+ optional :order_by, :string, 5
191
+ end
192
+ add_message "google.cloud.datastream.v1.ListRoutesResponse" do
193
+ repeated :routes, :message, 1, "google.cloud.datastream.v1.Route"
194
+ optional :next_page_token, :string, 2
195
+ repeated :unreachable, :string, 3
196
+ end
197
+ add_message "google.cloud.datastream.v1.DeleteRouteRequest" do
198
+ optional :name, :string, 1
199
+ optional :request_id, :string, 2
200
+ end
201
+ add_message "google.cloud.datastream.v1.GetRouteRequest" do
202
+ optional :name, :string, 1
203
+ end
204
+ end
205
+ end
206
+
207
+ module Google
208
+ module Cloud
209
+ module Datastream
210
+ module V1
211
+ DiscoverConnectionProfileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.DiscoverConnectionProfileRequest").msgclass
212
+ DiscoverConnectionProfileResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.DiscoverConnectionProfileResponse").msgclass
213
+ FetchStaticIpsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.FetchStaticIpsRequest").msgclass
214
+ FetchStaticIpsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.FetchStaticIpsResponse").msgclass
215
+ ListConnectionProfilesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.ListConnectionProfilesRequest").msgclass
216
+ ListConnectionProfilesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.ListConnectionProfilesResponse").msgclass
217
+ GetConnectionProfileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.GetConnectionProfileRequest").msgclass
218
+ CreateConnectionProfileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.CreateConnectionProfileRequest").msgclass
219
+ UpdateConnectionProfileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.UpdateConnectionProfileRequest").msgclass
220
+ DeleteConnectionProfileRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.DeleteConnectionProfileRequest").msgclass
221
+ ListStreamsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.ListStreamsRequest").msgclass
222
+ ListStreamsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.ListStreamsResponse").msgclass
223
+ GetStreamRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.GetStreamRequest").msgclass
224
+ CreateStreamRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.CreateStreamRequest").msgclass
225
+ UpdateStreamRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.UpdateStreamRequest").msgclass
226
+ DeleteStreamRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.DeleteStreamRequest").msgclass
227
+ GetStreamObjectRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.GetStreamObjectRequest").msgclass
228
+ LookupStreamObjectRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.LookupStreamObjectRequest").msgclass
229
+ StartBackfillJobRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.StartBackfillJobRequest").msgclass
230
+ StartBackfillJobResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.StartBackfillJobResponse").msgclass
231
+ StopBackfillJobRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.StopBackfillJobRequest").msgclass
232
+ StopBackfillJobResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.StopBackfillJobResponse").msgclass
233
+ ListStreamObjectsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.ListStreamObjectsRequest").msgclass
234
+ ListStreamObjectsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.ListStreamObjectsResponse").msgclass
235
+ OperationMetadata = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.OperationMetadata").msgclass
236
+ CreatePrivateConnectionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.CreatePrivateConnectionRequest").msgclass
237
+ ListPrivateConnectionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.ListPrivateConnectionsRequest").msgclass
238
+ ListPrivateConnectionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.ListPrivateConnectionsResponse").msgclass
239
+ DeletePrivateConnectionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.DeletePrivateConnectionRequest").msgclass
240
+ GetPrivateConnectionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.GetPrivateConnectionRequest").msgclass
241
+ CreateRouteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.CreateRouteRequest").msgclass
242
+ ListRoutesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.ListRoutesRequest").msgclass
243
+ ListRoutesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.ListRoutesResponse").msgclass
244
+ DeleteRouteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.DeleteRouteRequest").msgclass
245
+ GetRouteRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.datastream.v1.GetRouteRequest").msgclass
246
+ end
247
+ end
248
+ end
249
+ end