google-cloud-datastream-v1alpha1 0.2.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 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/rest"
20
+ require "gapic/config"
21
+ require "gapic/config/method"
22
+
23
+ require "google/cloud/datastream/v1alpha1/version"
24
+
25
+ require "google/cloud/datastream/v1alpha1/datastream/credentials"
26
+ require "google/cloud/datastream/v1alpha1/datastream/paths"
27
+ require "google/cloud/datastream/v1alpha1/datastream/rest/operations"
28
+ require "google/cloud/datastream/v1alpha1/datastream/rest/client"
29
+
30
+ module Google
31
+ module Cloud
32
+ module Datastream
33
+ module V1alpha1
34
+ ##
35
+ # Datastream service
36
+ #
37
+ # To load this service and instantiate a REST client:
38
+ #
39
+ # require "google/cloud/datastream/v1alpha1/datastream/rest"
40
+ # client = ::Google::Cloud::Datastream::V1alpha1::Datastream::Rest::Client.new
41
+ #
42
+ module Datastream
43
+ # Client for the REST transport
44
+ module Rest
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
51
+
52
+ helper_path = ::File.join __dir__, "rest", "helpers.rb"
53
+ require "google/cloud/datastream/v1alpha1/datastream/rest/helpers" if ::File.file? helper_path
@@ -26,6 +26,7 @@ require "google/cloud/datastream/v1alpha1/datastream/credentials"
26
26
  require "google/cloud/datastream/v1alpha1/datastream/paths"
27
27
  require "google/cloud/datastream/v1alpha1/datastream/operations"
28
28
  require "google/cloud/datastream/v1alpha1/datastream/client"
29
+ require "google/cloud/datastream/v1alpha1/datastream/rest"
29
30
 
30
31
  module Google
31
32
  module Cloud
@@ -34,11 +35,16 @@ module Google
34
35
  ##
35
36
  # Datastream service
36
37
  #
37
- # To load this service and instantiate a client:
38
+ # @example Load this service and instantiate a gRPC client
38
39
  #
39
40
  # require "google/cloud/datastream/v1alpha1/datastream"
40
41
  # client = ::Google::Cloud::Datastream::V1alpha1::Datastream::Client.new
41
42
  #
43
+ # @example Load this service and instantiate a REST client
44
+ #
45
+ # require "google/cloud/datastream/v1alpha1/datastream/rest"
46
+ # client = ::Google::Cloud::Datastream::V1alpha1::Datastream::Rest::Client.new
47
+ #
42
48
  module Datastream
43
49
  end
44
50
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: google/cloud/datastream/v1alpha1/datastream.proto
3
4
 
@@ -12,170 +13,34 @@ require 'google/longrunning/operations_pb'
12
13
  require 'google/protobuf/field_mask_pb'
13
14
  require 'google/protobuf/timestamp_pb'
14
15
 
15
- Google::Protobuf::DescriptorPool.generated_pool.build do
16
- add_file("google/cloud/datastream/v1alpha1/datastream.proto", :syntax => :proto3) do
17
- add_message "google.cloud.datastream.v1alpha1.DiscoverConnectionProfileRequest" do
18
- optional :parent, :string, 1
19
- oneof :target do
20
- optional :connection_profile, :message, 200, "google.cloud.datastream.v1alpha1.ConnectionProfile"
21
- optional :connection_profile_name, :string, 201
22
- end
23
- oneof :depth do
24
- optional :recursive, :bool, 3
25
- optional :recursion_depth, :int32, 4
26
- end
27
- oneof :data_object do
28
- optional :oracle_rdbms, :message, 100, "google.cloud.datastream.v1alpha1.OracleRdbms"
29
- optional :mysql_rdbms, :message, 101, "google.cloud.datastream.v1alpha1.MysqlRdbms"
30
- end
31
- end
32
- add_message "google.cloud.datastream.v1alpha1.DiscoverConnectionProfileResponse" do
33
- oneof :data_object do
34
- optional :oracle_rdbms, :message, 100, "google.cloud.datastream.v1alpha1.OracleRdbms"
35
- optional :mysql_rdbms, :message, 101, "google.cloud.datastream.v1alpha1.MysqlRdbms"
36
- end
37
- end
38
- add_message "google.cloud.datastream.v1alpha1.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.v1alpha1.FetchStaticIpsResponse" do
44
- repeated :static_ips, :string, 1
45
- optional :next_page_token, :string, 2
46
- end
47
- add_message "google.cloud.datastream.v1alpha1.FetchErrorsRequest" do
48
- optional :stream, :string, 1
49
- end
50
- add_message "google.cloud.datastream.v1alpha1.FetchErrorsResponse" do
51
- repeated :errors, :message, 1, "google.cloud.datastream.v1alpha1.Error"
52
- end
53
- add_message "google.cloud.datastream.v1alpha1.ListConnectionProfilesRequest" do
54
- optional :parent, :string, 1
55
- optional :page_size, :int32, 2
56
- optional :page_token, :string, 3
57
- optional :filter, :string, 4
58
- optional :order_by, :string, 5
59
- end
60
- add_message "google.cloud.datastream.v1alpha1.ListConnectionProfilesResponse" do
61
- repeated :connection_profiles, :message, 1, "google.cloud.datastream.v1alpha1.ConnectionProfile"
62
- optional :next_page_token, :string, 2
63
- repeated :unreachable, :string, 3
64
- end
65
- add_message "google.cloud.datastream.v1alpha1.GetConnectionProfileRequest" do
66
- optional :name, :string, 1
67
- end
68
- add_message "google.cloud.datastream.v1alpha1.CreateConnectionProfileRequest" do
69
- optional :parent, :string, 1
70
- optional :connection_profile_id, :string, 2
71
- optional :connection_profile, :message, 3, "google.cloud.datastream.v1alpha1.ConnectionProfile"
72
- optional :request_id, :string, 4
73
- end
74
- add_message "google.cloud.datastream.v1alpha1.UpdateConnectionProfileRequest" do
75
- optional :update_mask, :message, 1, "google.protobuf.FieldMask"
76
- optional :connection_profile, :message, 2, "google.cloud.datastream.v1alpha1.ConnectionProfile"
77
- optional :request_id, :string, 3
78
- end
79
- add_message "google.cloud.datastream.v1alpha1.DeleteConnectionProfileRequest" do
80
- optional :name, :string, 1
81
- optional :request_id, :string, 2
82
- end
83
- add_message "google.cloud.datastream.v1alpha1.ListStreamsRequest" do
84
- optional :parent, :string, 1
85
- optional :page_size, :int32, 2
86
- optional :page_token, :string, 3
87
- optional :filter, :string, 4
88
- optional :order_by, :string, 5
89
- end
90
- add_message "google.cloud.datastream.v1alpha1.ListStreamsResponse" do
91
- repeated :streams, :message, 1, "google.cloud.datastream.v1alpha1.Stream"
92
- optional :next_page_token, :string, 2
93
- repeated :unreachable, :string, 3
94
- end
95
- add_message "google.cloud.datastream.v1alpha1.GetStreamRequest" do
96
- optional :name, :string, 1
97
- end
98
- add_message "google.cloud.datastream.v1alpha1.CreateStreamRequest" do
99
- optional :parent, :string, 1
100
- optional :stream_id, :string, 2
101
- optional :stream, :message, 3, "google.cloud.datastream.v1alpha1.Stream"
102
- optional :request_id, :string, 4
103
- optional :validate_only, :bool, 5
104
- optional :force, :bool, 6
105
- end
106
- add_message "google.cloud.datastream.v1alpha1.UpdateStreamRequest" do
107
- optional :update_mask, :message, 1, "google.protobuf.FieldMask"
108
- optional :stream, :message, 2, "google.cloud.datastream.v1alpha1.Stream"
109
- optional :request_id, :string, 3
110
- optional :validate_only, :bool, 4
111
- optional :force, :bool, 5
112
- end
113
- add_message "google.cloud.datastream.v1alpha1.DeleteStreamRequest" do
114
- optional :name, :string, 1
115
- optional :request_id, :string, 2
116
- end
117
- add_message "google.cloud.datastream.v1alpha1.OperationMetadata" do
118
- optional :create_time, :message, 1, "google.protobuf.Timestamp"
119
- optional :end_time, :message, 2, "google.protobuf.Timestamp"
120
- optional :target, :string, 3
121
- optional :verb, :string, 4
122
- optional :status_message, :string, 5
123
- optional :requested_cancellation, :bool, 6
124
- optional :api_version, :string, 7
125
- optional :validation_result, :message, 8, "google.cloud.datastream.v1alpha1.ValidationResult"
126
- end
127
- add_message "google.cloud.datastream.v1alpha1.CreatePrivateConnectionRequest" do
128
- optional :parent, :string, 1
129
- optional :private_connection_id, :string, 2
130
- optional :private_connection, :message, 3, "google.cloud.datastream.v1alpha1.PrivateConnection"
131
- optional :request_id, :string, 4
132
- end
133
- add_message "google.cloud.datastream.v1alpha1.ListPrivateConnectionsRequest" do
134
- optional :parent, :string, 1
135
- optional :page_size, :int32, 2
136
- optional :page_token, :string, 3
137
- optional :filter, :string, 4
138
- optional :order_by, :string, 5
139
- end
140
- add_message "google.cloud.datastream.v1alpha1.ListPrivateConnectionsResponse" do
141
- repeated :private_connections, :message, 1, "google.cloud.datastream.v1alpha1.PrivateConnection"
142
- optional :next_page_token, :string, 2
143
- repeated :unreachable, :string, 3
144
- end
145
- add_message "google.cloud.datastream.v1alpha1.DeletePrivateConnectionRequest" do
146
- optional :name, :string, 1
147
- optional :request_id, :string, 2
148
- optional :force, :bool, 3
149
- end
150
- add_message "google.cloud.datastream.v1alpha1.GetPrivateConnectionRequest" do
151
- optional :name, :string, 1
152
- end
153
- add_message "google.cloud.datastream.v1alpha1.CreateRouteRequest" do
154
- optional :parent, :string, 1
155
- optional :route_id, :string, 2
156
- optional :route, :message, 3, "google.cloud.datastream.v1alpha1.Route"
157
- optional :request_id, :string, 4
158
- end
159
- add_message "google.cloud.datastream.v1alpha1.ListRoutesRequest" 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.v1alpha1.ListRoutesResponse" do
167
- repeated :routes, :message, 1, "google.cloud.datastream.v1alpha1.Route"
168
- optional :next_page_token, :string, 2
169
- repeated :unreachable, :string, 3
170
- end
171
- add_message "google.cloud.datastream.v1alpha1.DeleteRouteRequest" do
172
- optional :name, :string, 1
173
- optional :request_id, :string, 2
174
- end
175
- add_message "google.cloud.datastream.v1alpha1.GetRouteRequest" do
176
- optional :name, :string, 1
16
+
17
+ descriptor_data = "\n1google/cloud/datastream/v1alpha1/datastream.proto\x12 google.cloud.datastream.v1alpha1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a;google/cloud/datastream/v1alpha1/datastream_resources.proto\x1a#google/longrunning/operations.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xbd\x03\n DiscoverConnectionProfileRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+datastream.googleapis.com/ConnectionProfile\x12R\n\x12\x63onnection_profile\x18\xc8\x01 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.ConnectionProfileH\x00\x12\"\n\x17\x63onnection_profile_name\x18\xc9\x01 \x01(\tH\x00\x12\x13\n\trecursive\x18\x03 \x01(\x08H\x01\x12\x19\n\x0frecursion_depth\x18\x04 \x01(\x05H\x01\x12\x45\n\x0coracle_rdbms\x18\x64 \x01(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleRdbmsH\x02\x12\x43\n\x0bmysql_rdbms\x18\x65 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlRdbmsH\x02\x42\x08\n\x06targetB\x07\n\x05\x64\x65pthB\r\n\x0b\x64\x61ta_object\"\xbe\x01\n!DiscoverConnectionProfileResponse\x12\x45\n\x0coracle_rdbms\x18\x64 \x01(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleRdbmsH\x00\x12\x43\n\x0bmysql_rdbms\x18\x65 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlRdbmsH\x00\x42\r\n\x0b\x64\x61ta_object\"w\n\x15\x46\x65tchStaticIpsRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"E\n\x16\x46\x65tchStaticIpsResponse\x12\x12\n\nstatic_ips\x18\x01 \x03(\t\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"K\n\x12\x46\x65tchErrorsRequest\x12\x35\n\x06stream\x18\x01 \x01(\tB%\xfa\x41\"\n datastream.googleapis.com/Stream\"N\n\x13\x46\x65tchErrorsResponse\x12\x37\n\x06\x65rrors\x18\x01 \x03(\x0b\x32\'.google.cloud.datastream.v1alpha1.Error\"\xad\x01\n\x1dListConnectionProfilesRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+datastream.googleapis.com/ConnectionProfile\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\xa0\x01\n\x1eListConnectionProfilesResponse\x12P\n\x13\x63onnection_profiles\x18\x01 \x03(\x0b\x32\x33.google.cloud.datastream.v1alpha1.ConnectionProfile\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"`\n\x1bGetConnectionProfileRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+datastream.googleapis.com/ConnectionProfile\"\xf8\x01\n\x1e\x43reateConnectionProfileRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+datastream.googleapis.com/ConnectionProfile\x12\"\n\x15\x63onnection_profile_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12T\n\x12\x63onnection_profile\x18\x03 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.ConnectionProfileB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xc5\x01\n\x1eUpdateConnectionProfileRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12T\n\x12\x63onnection_profile\x18\x02 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.ConnectionProfileB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"|\n\x1e\x44\x65leteConnectionProfileRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+datastream.googleapis.com/ConnectionProfile\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x97\x01\n\x12ListStreamsRequest\x12\x38\n\x06parent\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\x12 datastream.googleapis.com/Stream\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"~\n\x13ListStreamsResponse\x12\x39\n\x07streams\x18\x01 \x03(\x0b\x32(.google.cloud.datastream.v1alpha1.Stream\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"J\n\x10GetStreamRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n datastream.googleapis.com/Stream\"\xef\x01\n\x13\x43reateStreamRequest\x12\x38\n\x06parent\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\x12 datastream.googleapis.com/Stream\x12\x16\n\tstream_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12=\n\x06stream\x18\x03 \x01(\x0b\x32(.google.cloud.datastream.v1alpha1.StreamB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\x12\x12\n\x05\x66orce\x18\x06 \x01(\x08\x42\x03\xe0\x41\x01\"\xd3\x01\n\x13UpdateStreamRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12=\n\x06stream\x18\x02 \x01(\x0b\x32(.google.cloud.datastream.v1alpha1.StreamB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x12\n\x05\x66orce\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"f\n\x13\x44\x65leteStreamRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n datastream.googleapis.com/Stream\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xd4\x02\n\x11OperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04verb\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0estatus_message\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12#\n\x16requested_cancellation\x18\x06 \x01(\x08\x42\x03\xe0\x41\x03\x12\x18\n\x0b\x61pi_version\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12R\n\x11validation_result\x18\x08 \x01(\x0b\x32\x32.google.cloud.datastream.v1alpha1.ValidationResultB\x03\xe0\x41\x03\"\xf8\x01\n\x1e\x43reatePrivateConnectionRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+datastream.googleapis.com/PrivateConnection\x12\"\n\x15private_connection_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12T\n\x12private_connection\x18\x03 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.PrivateConnectionB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xad\x01\n\x1dListPrivateConnectionsRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+datastream.googleapis.com/PrivateConnection\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"\xa0\x01\n\x1eListPrivateConnectionsResponse\x12P\n\x13private_connections\x18\x01 \x03(\x0b\x32\x33.google.cloud.datastream.v1alpha1.PrivateConnection\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\x90\x01\n\x1e\x44\x65letePrivateConnectionRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+datastream.googleapis.com/PrivateConnection\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x12\n\x05\x66orce\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"`\n\x1bGetPrivateConnectionRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+datastream.googleapis.com/PrivateConnection\"\xba\x01\n\x12\x43reateRouteRequest\x12\x37\n\x06parent\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\x12\x1f\x64\x61tastream.googleapis.com/Route\x12\x15\n\x08route_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12;\n\x05route\x18\x03 \x01(\x0b\x32\'.google.cloud.datastream.v1alpha1.RouteB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x95\x01\n\x11ListRoutesRequest\x12\x37\n\x06parent\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\x12\x1f\x64\x61tastream.googleapis.com/Route\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"{\n\x12ListRoutesResponse\x12\x37\n\x06routes\x18\x01 \x03(\x0b\x32\'.google.cloud.datastream.v1alpha1.Route\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"d\n\x12\x44\x65leteRouteRequest\x12\x35\n\x04name\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1f\x64\x61tastream.googleapis.com/Route\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"H\n\x0fGetRouteRequest\x12\x35\n\x04name\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1f\x64\x61tastream.googleapis.com/Route2\x8a\'\n\nDatastream\x12\xea\x01\n\x16ListConnectionProfiles\x12?.google.cloud.datastream.v1alpha1.ListConnectionProfilesRequest\x1a@.google.cloud.datastream.v1alpha1.ListConnectionProfilesResponse\"M\x82\xd3\xe4\x93\x02>\x12</v1alpha1/{parent=projects/*/locations/*}/connectionProfiles\xda\x41\x06parent\x12\xd7\x01\n\x14GetConnectionProfile\x12=.google.cloud.datastream.v1alpha1.GetConnectionProfileRequest\x1a\x33.google.cloud.datastream.v1alpha1.ConnectionProfile\"K\x82\xd3\xe4\x93\x02>\x12</v1alpha1/{name=projects/*/locations/*/connectionProfiles/*}\xda\x41\x04name\x12\xb0\x02\n\x17\x43reateConnectionProfile\x12@.google.cloud.datastream.v1alpha1.CreateConnectionProfileRequest\x1a\x1d.google.longrunning.Operation\"\xb3\x01\x82\xd3\xe4\x93\x02R\"</v1alpha1/{parent=projects/*/locations/*}/connectionProfiles:\x12\x63onnection_profile\xda\x41/parent,connection_profile,connection_profile_id\xca\x41&\n\x11\x43onnectionProfile\x12\x11OperationMetadata\x12\xb2\x02\n\x17UpdateConnectionProfile\x12@.google.cloud.datastream.v1alpha1.UpdateConnectionProfileRequest\x1a\x1d.google.longrunning.Operation\"\xb5\x01\x82\xd3\xe4\x93\x02\x65\x32O/v1alpha1/{connection_profile.name=projects/*/locations/*/connectionProfiles/*}:\x12\x63onnection_profile\xda\x41\x1e\x63onnection_profile,update_mask\xca\x41&\n\x11\x43onnectionProfile\x12\x11OperationMetadata\x12\xf4\x01\n\x17\x44\x65leteConnectionProfile\x12@.google.cloud.datastream.v1alpha1.DeleteConnectionProfileRequest\x1a\x1d.google.longrunning.Operation\"x\x82\xd3\xe4\x93\x02>*</v1alpha1/{name=projects/*/locations/*/connectionProfiles/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xf6\x01\n\x19\x44iscoverConnectionProfile\x12\x42.google.cloud.datastream.v1alpha1.DiscoverConnectionProfileRequest\x1a\x43.google.cloud.datastream.v1alpha1.DiscoverConnectionProfileResponse\"P\x82\xd3\xe4\x93\x02J\"E/v1alpha1/{parent=projects/*/locations/*}/connectionProfiles:discover:\x01*\x12\xbe\x01\n\x0bListStreams\x12\x34.google.cloud.datastream.v1alpha1.ListStreamsRequest\x1a\x35.google.cloud.datastream.v1alpha1.ListStreamsResponse\"B\x82\xd3\xe4\x93\x02\x33\x12\x31/v1alpha1/{parent=projects/*/locations/*}/streams\xda\x41\x06parent\x12\xab\x01\n\tGetStream\x12\x32.google.cloud.datastream.v1alpha1.GetStreamRequest\x1a(.google.cloud.datastream.v1alpha1.Stream\"@\x82\xd3\xe4\x93\x02\x33\x12\x31/v1alpha1/{name=projects/*/locations/*/streams/*}\xda\x41\x04name\x12\xdf\x01\n\x0c\x43reateStream\x12\x35.google.cloud.datastream.v1alpha1.CreateStreamRequest\x1a\x1d.google.longrunning.Operation\"y\x82\xd3\xe4\x93\x02;\"1/v1alpha1/{parent=projects/*/locations/*}/streams:\x06stream\xda\x41\x17parent,stream,stream_id\xca\x41\x1b\n\x06Stream\x12\x11OperationMetadata\x12\xe1\x01\n\x0cUpdateStream\x12\x35.google.cloud.datastream.v1alpha1.UpdateStreamRequest\x1a\x1d.google.longrunning.Operation\"{\x82\xd3\xe4\x93\x02\x42\x32\x38/v1alpha1/{stream.name=projects/*/locations/*/streams/*}:\x06stream\xda\x41\x12stream,update_mask\xca\x41\x1b\n\x06Stream\x12\x11OperationMetadata\x12\xd3\x01\n\x0c\x44\x65leteStream\x12\x35.google.cloud.datastream.v1alpha1.DeleteStreamRequest\x1a\x1d.google.longrunning.Operation\"m\x82\xd3\xe4\x93\x02\x33*1/v1alpha1/{name=projects/*/locations/*/streams/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xd9\x01\n\x0b\x46\x65tchErrors\x12\x34.google.cloud.datastream.v1alpha1.FetchErrorsRequest\x1a\x1d.google.longrunning.Operation\"u\x82\xd3\xe4\x93\x02\x44\"?/v1alpha1/{stream=projects/*/locations/*/streams/*}:fetchErrors:\x01*\xca\x41(\n\x13\x46\x65tchErrorsResponse\x12\x11OperationMetadata\x12\xca\x01\n\x0e\x46\x65tchStaticIps\x12\x37.google.cloud.datastream.v1alpha1.FetchStaticIpsRequest\x1a\x38.google.cloud.datastream.v1alpha1.FetchStaticIpsResponse\"E\x82\xd3\xe4\x93\x02\x38\x12\x36/v1alpha1/{name=projects/*/locations/*}:fetchStaticIps\xda\x41\x04name\x12\xb0\x02\n\x17\x43reatePrivateConnection\x12@.google.cloud.datastream.v1alpha1.CreatePrivateConnectionRequest\x1a\x1d.google.longrunning.Operation\"\xb3\x01\x82\xd3\xe4\x93\x02R\"</v1alpha1/{parent=projects/*/locations/*}/privateConnections:\x12private_connection\xda\x41/parent,private_connection,private_connection_id\xca\x41&\n\x11PrivateConnection\x12\x11OperationMetadata\x12\xd7\x01\n\x14GetPrivateConnection\x12=.google.cloud.datastream.v1alpha1.GetPrivateConnectionRequest\x1a\x33.google.cloud.datastream.v1alpha1.PrivateConnection\"K\x82\xd3\xe4\x93\x02>\x12</v1alpha1/{name=projects/*/locations/*/privateConnections/*}\xda\x41\x04name\x12\xea\x01\n\x16ListPrivateConnections\x12?.google.cloud.datastream.v1alpha1.ListPrivateConnectionsRequest\x1a@.google.cloud.datastream.v1alpha1.ListPrivateConnectionsResponse\"M\x82\xd3\xe4\x93\x02>\x12</v1alpha1/{parent=projects/*/locations/*}/privateConnections\xda\x41\x06parent\x12\xf4\x01\n\x17\x44\x65letePrivateConnection\x12@.google.cloud.datastream.v1alpha1.DeletePrivateConnectionRequest\x1a\x1d.google.longrunning.Operation\"x\x82\xd3\xe4\x93\x02>*</v1alpha1/{name=projects/*/locations/*/privateConnections/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xee\x01\n\x0b\x43reateRoute\x12\x34.google.cloud.datastream.v1alpha1.CreateRouteRequest\x1a\x1d.google.longrunning.Operation\"\x89\x01\x82\xd3\xe4\x93\x02N\"E/v1alpha1/{parent=projects/*/locations/*/privateConnections/*}/routes:\x05route\xda\x41\x15parent,route,route_id\xca\x41\x1a\n\x05Route\x12\x11OperationMetadata\x12\xbc\x01\n\x08GetRoute\x12\x31.google.cloud.datastream.v1alpha1.GetRouteRequest\x1a\'.google.cloud.datastream.v1alpha1.Route\"T\x82\xd3\xe4\x93\x02G\x12\x45/v1alpha1/{name=projects/*/locations/*/privateConnections/*/routes/*}\xda\x41\x04name\x12\xcf\x01\n\nListRoutes\x12\x33.google.cloud.datastream.v1alpha1.ListRoutesRequest\x1a\x34.google.cloud.datastream.v1alpha1.ListRoutesResponse\"V\x82\xd3\xe4\x93\x02G\x12\x45/v1alpha1/{parent=projects/*/locations/*/privateConnections/*}/routes\xda\x41\x06parent\x12\xe6\x01\n\x0b\x44\x65leteRoute\x12\x34.google.cloud.datastream.v1alpha1.DeleteRouteRequest\x1a\x1d.google.longrunning.Operation\"\x81\x01\x82\xd3\xe4\x93\x02G*E/v1alpha1/{name=projects/*/locations/*/privateConnections/*/routes/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x1aM\xca\x41\x19\x64\x61tastream.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xf7\x01\n$com.google.cloud.datastream.v1alpha1B\x1b\x43loudDatastreamServiceProtoP\x01ZDcloud.google.com/go/datastream/apiv1alpha1/datastreampb;datastreampb\xaa\x02 Google.Cloud.Datastream.V1Alpha1\xca\x02 Google\\Cloud\\Datastream\\V1alpha1\xea\x02#Google::Cloud::Datastream::V1alpha1b\x06proto3"
18
+
19
+ pool = Google::Protobuf::DescriptorPool.generated_pool
20
+
21
+ begin
22
+ pool.add_serialized_file(descriptor_data)
23
+ rescue TypeError => e
24
+ # Compatibility code: will be removed in the next major version.
25
+ require 'google/protobuf/descriptor_pb'
26
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
27
+ parsed.clear_dependency
28
+ serialized = parsed.class.encode(parsed)
29
+ file = pool.add_serialized_file(serialized)
30
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
31
+ imports = [
32
+ ["google.cloud.datastream.v1alpha1.ConnectionProfile", "google/cloud/datastream/v1alpha1/datastream_resources.proto"],
33
+ ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
34
+ ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
35
+ ]
36
+ imports.each do |type_name, expected_filename|
37
+ import_file = pool.lookup(type_name).file_descriptor
38
+ if import_file.name != expected_filename
39
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
177
40
  end
178
41
  end
42
+ warn "Each proto file must use a consistent fully-qualified name."
43
+ warn "This will become an error in the next major version."
179
44
  end
180
45
 
181
46
  module Google
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: google/cloud/datastream/v1alpha1/datastream_resources.proto
3
4
 
@@ -7,261 +8,34 @@ require 'google/api/field_behavior_pb'
7
8
  require 'google/api/resource_pb'
8
9
  require 'google/protobuf/duration_pb'
9
10
  require 'google/protobuf/timestamp_pb'
10
- require 'google/api/annotations_pb'
11
11
 
12
- Google::Protobuf::DescriptorPool.generated_pool.build do
13
- add_file("google/cloud/datastream/v1alpha1/datastream_resources.proto", :syntax => :proto3) do
14
- add_message "google.cloud.datastream.v1alpha1.OracleProfile" do
15
- optional :hostname, :string, 1
16
- optional :port, :int32, 2
17
- optional :username, :string, 3
18
- optional :password, :string, 4
19
- optional :database_service, :string, 5
20
- map :connection_attributes, :string, :string, 6
21
- end
22
- add_message "google.cloud.datastream.v1alpha1.MysqlProfile" do
23
- optional :hostname, :string, 1
24
- optional :port, :int32, 2
25
- optional :username, :string, 3
26
- optional :password, :string, 4
27
- optional :ssl_config, :message, 5, "google.cloud.datastream.v1alpha1.MysqlSslConfig"
28
- end
29
- add_message "google.cloud.datastream.v1alpha1.GcsProfile" do
30
- optional :bucket_name, :string, 1
31
- optional :root_path, :string, 2
32
- end
33
- add_message "google.cloud.datastream.v1alpha1.NoConnectivitySettings" do
34
- end
35
- add_message "google.cloud.datastream.v1alpha1.StaticServiceIpConnectivity" do
36
- end
37
- add_message "google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivity" do
38
- optional :hostname, :string, 1
39
- optional :username, :string, 2
40
- optional :port, :int32, 3
41
- oneof :authentication_method do
42
- optional :password, :string, 100
43
- optional :private_key, :string, 101
44
- end
45
- end
46
- add_message "google.cloud.datastream.v1alpha1.VpcPeeringConfig" do
47
- optional :vpc_name, :string, 1
48
- optional :subnet, :string, 2
49
- end
50
- add_message "google.cloud.datastream.v1alpha1.PrivateConnection" do
51
- optional :name, :string, 1
52
- optional :create_time, :message, 2, "google.protobuf.Timestamp"
53
- optional :update_time, :message, 3, "google.protobuf.Timestamp"
54
- map :labels, :string, :string, 4
55
- optional :display_name, :string, 5
56
- optional :state, :enum, 6, "google.cloud.datastream.v1alpha1.PrivateConnection.State"
57
- optional :error, :message, 7, "google.cloud.datastream.v1alpha1.Error"
58
- optional :vpc_peering_config, :message, 100, "google.cloud.datastream.v1alpha1.VpcPeeringConfig"
59
- end
60
- add_enum "google.cloud.datastream.v1alpha1.PrivateConnection.State" do
61
- value :STATE_UNSPECIFIED, 0
62
- value :CREATING, 1
63
- value :CREATED, 2
64
- value :FAILED, 3
65
- end
66
- add_message "google.cloud.datastream.v1alpha1.PrivateConnectivity" do
67
- optional :private_connection_name, :string, 1
68
- end
69
- add_message "google.cloud.datastream.v1alpha1.Route" do
70
- optional :name, :string, 1
71
- optional :create_time, :message, 2, "google.protobuf.Timestamp"
72
- optional :update_time, :message, 3, "google.protobuf.Timestamp"
73
- map :labels, :string, :string, 4
74
- optional :display_name, :string, 5
75
- optional :destination_address, :string, 6
76
- optional :destination_port, :int32, 7
77
- end
78
- add_message "google.cloud.datastream.v1alpha1.MysqlSslConfig" do
79
- optional :client_key, :string, 11
80
- optional :client_key_set, :bool, 12
81
- optional :client_certificate, :string, 13
82
- optional :client_certificate_set, :bool, 14
83
- optional :ca_certificate, :string, 15
84
- optional :ca_certificate_set, :bool, 16
85
- end
86
- add_message "google.cloud.datastream.v1alpha1.ConnectionProfile" do
87
- optional :name, :string, 1
88
- optional :create_time, :message, 2, "google.protobuf.Timestamp"
89
- optional :update_time, :message, 3, "google.protobuf.Timestamp"
90
- map :labels, :string, :string, 4
91
- optional :display_name, :string, 5
92
- oneof :profile do
93
- optional :oracle_profile, :message, 100, "google.cloud.datastream.v1alpha1.OracleProfile"
94
- optional :gcs_profile, :message, 101, "google.cloud.datastream.v1alpha1.GcsProfile"
95
- optional :mysql_profile, :message, 102, "google.cloud.datastream.v1alpha1.MysqlProfile"
96
- end
97
- oneof :connectivity do
98
- optional :no_connectivity, :message, 200, "google.cloud.datastream.v1alpha1.NoConnectivitySettings"
99
- optional :static_service_ip_connectivity, :message, 201, "google.cloud.datastream.v1alpha1.StaticServiceIpConnectivity"
100
- optional :forward_ssh_connectivity, :message, 202, "google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivity"
101
- optional :private_connectivity, :message, 203, "google.cloud.datastream.v1alpha1.PrivateConnectivity"
102
- end
103
- end
104
- add_message "google.cloud.datastream.v1alpha1.OracleColumn" do
105
- optional :column_name, :string, 1
106
- optional :data_type, :string, 2
107
- optional :length, :int32, 3
108
- optional :precision, :int32, 4
109
- optional :scale, :int32, 5
110
- optional :encoding, :string, 6
111
- optional :primary_key, :bool, 7
112
- optional :nullable, :bool, 8
113
- optional :ordinal_position, :int32, 9
114
- end
115
- add_message "google.cloud.datastream.v1alpha1.OracleTable" do
116
- optional :table_name, :string, 1
117
- repeated :oracle_columns, :message, 2, "google.cloud.datastream.v1alpha1.OracleColumn"
118
- end
119
- add_message "google.cloud.datastream.v1alpha1.OracleSchema" do
120
- optional :schema_name, :string, 1
121
- repeated :oracle_tables, :message, 2, "google.cloud.datastream.v1alpha1.OracleTable"
122
- end
123
- add_message "google.cloud.datastream.v1alpha1.OracleRdbms" do
124
- repeated :oracle_schemas, :message, 1, "google.cloud.datastream.v1alpha1.OracleSchema"
125
- end
126
- add_message "google.cloud.datastream.v1alpha1.OracleSourceConfig" do
127
- optional :allowlist, :message, 1, "google.cloud.datastream.v1alpha1.OracleRdbms"
128
- optional :rejectlist, :message, 2, "google.cloud.datastream.v1alpha1.OracleRdbms"
129
- end
130
- add_message "google.cloud.datastream.v1alpha1.MysqlColumn" do
131
- optional :column_name, :string, 1
132
- optional :data_type, :string, 2
133
- optional :length, :int32, 3
134
- optional :collation, :string, 4
135
- optional :primary_key, :bool, 5
136
- optional :nullable, :bool, 6
137
- optional :ordinal_position, :int32, 7
138
- end
139
- add_message "google.cloud.datastream.v1alpha1.MysqlTable" do
140
- optional :table_name, :string, 1
141
- repeated :mysql_columns, :message, 2, "google.cloud.datastream.v1alpha1.MysqlColumn"
142
- end
143
- add_message "google.cloud.datastream.v1alpha1.MysqlDatabase" do
144
- optional :database_name, :string, 1
145
- repeated :mysql_tables, :message, 2, "google.cloud.datastream.v1alpha1.MysqlTable"
146
- end
147
- add_message "google.cloud.datastream.v1alpha1.MysqlRdbms" do
148
- repeated :mysql_databases, :message, 1, "google.cloud.datastream.v1alpha1.MysqlDatabase"
149
- end
150
- add_message "google.cloud.datastream.v1alpha1.MysqlSourceConfig" do
151
- optional :allowlist, :message, 1, "google.cloud.datastream.v1alpha1.MysqlRdbms"
152
- optional :rejectlist, :message, 2, "google.cloud.datastream.v1alpha1.MysqlRdbms"
153
- end
154
- add_message "google.cloud.datastream.v1alpha1.SourceConfig" do
155
- optional :source_connection_profile_name, :string, 1
156
- oneof :source_stream_config do
157
- optional :oracle_source_config, :message, 100, "google.cloud.datastream.v1alpha1.OracleSourceConfig"
158
- optional :mysql_source_config, :message, 101, "google.cloud.datastream.v1alpha1.MysqlSourceConfig"
159
- end
160
- end
161
- add_message "google.cloud.datastream.v1alpha1.AvroFileFormat" do
162
- end
163
- add_message "google.cloud.datastream.v1alpha1.JsonFileFormat" do
164
- optional :schema_file_format, :enum, 1, "google.cloud.datastream.v1alpha1.SchemaFileFormat"
165
- optional :compression, :enum, 2, "google.cloud.datastream.v1alpha1.JsonFileFormat.JsonCompression"
166
- end
167
- add_enum "google.cloud.datastream.v1alpha1.JsonFileFormat.JsonCompression" do
168
- value :JSON_COMPRESSION_UNSPECIFIED, 0
169
- value :NO_COMPRESSION, 1
170
- value :GZIP, 2
171
- end
172
- add_message "google.cloud.datastream.v1alpha1.GcsDestinationConfig" do
173
- optional :path, :string, 1
174
- optional :gcs_file_format, :enum, 2, "google.cloud.datastream.v1alpha1.GcsFileFormat"
175
- optional :file_rotation_mb, :int32, 3
176
- optional :file_rotation_interval, :message, 4, "google.protobuf.Duration"
177
- oneof :file_format do
178
- optional :avro_file_format, :message, 100, "google.cloud.datastream.v1alpha1.AvroFileFormat"
179
- optional :json_file_format, :message, 101, "google.cloud.datastream.v1alpha1.JsonFileFormat"
180
- end
181
- end
182
- add_message "google.cloud.datastream.v1alpha1.DestinationConfig" do
183
- optional :destination_connection_profile_name, :string, 1
184
- oneof :destination_stream_config do
185
- optional :gcs_destination_config, :message, 100, "google.cloud.datastream.v1alpha1.GcsDestinationConfig"
186
- end
187
- end
188
- add_message "google.cloud.datastream.v1alpha1.Stream" do
189
- optional :name, :string, 1
190
- optional :create_time, :message, 2, "google.protobuf.Timestamp"
191
- optional :update_time, :message, 3, "google.protobuf.Timestamp"
192
- map :labels, :string, :string, 4
193
- optional :display_name, :string, 5
194
- optional :source_config, :message, 6, "google.cloud.datastream.v1alpha1.SourceConfig"
195
- optional :destination_config, :message, 7, "google.cloud.datastream.v1alpha1.DestinationConfig"
196
- optional :state, :enum, 8, "google.cloud.datastream.v1alpha1.Stream.State"
197
- repeated :errors, :message, 9, "google.cloud.datastream.v1alpha1.Error"
198
- oneof :backfill_strategy do
199
- optional :backfill_all, :message, 101, "google.cloud.datastream.v1alpha1.Stream.BackfillAllStrategy"
200
- optional :backfill_none, :message, 102, "google.cloud.datastream.v1alpha1.Stream.BackfillNoneStrategy"
201
- end
202
- end
203
- add_message "google.cloud.datastream.v1alpha1.Stream.BackfillAllStrategy" do
204
- oneof :excluded_objects do
205
- optional :oracle_excluded_objects, :message, 1, "google.cloud.datastream.v1alpha1.OracleRdbms"
206
- optional :mysql_excluded_objects, :message, 2, "google.cloud.datastream.v1alpha1.MysqlRdbms"
207
- end
208
- end
209
- add_message "google.cloud.datastream.v1alpha1.Stream.BackfillNoneStrategy" do
210
- end
211
- add_enum "google.cloud.datastream.v1alpha1.Stream.State" do
212
- value :STATE_UNSPECIFIED, 0
213
- value :CREATED, 1
214
- value :RUNNING, 2
215
- value :PAUSED, 3
216
- value :MAINTENANCE, 4
217
- value :FAILED, 5
218
- value :FAILED_PERMANENTLY, 6
219
- value :STARTING, 7
220
- value :DRAINING, 8
221
- end
222
- add_message "google.cloud.datastream.v1alpha1.Error" do
223
- optional :reason, :string, 1
224
- optional :error_uuid, :string, 2
225
- optional :message, :string, 3
226
- optional :error_time, :message, 4, "google.protobuf.Timestamp"
227
- map :details, :string, :string, 5
228
- end
229
- add_message "google.cloud.datastream.v1alpha1.ValidationResult" do
230
- repeated :validations, :message, 1, "google.cloud.datastream.v1alpha1.Validation"
231
- end
232
- add_message "google.cloud.datastream.v1alpha1.Validation" do
233
- optional :description, :string, 1
234
- optional :status, :enum, 2, "google.cloud.datastream.v1alpha1.Validation.Status"
235
- repeated :message, :message, 3, "google.cloud.datastream.v1alpha1.ValidationMessage"
236
- optional :code, :string, 4
237
- end
238
- add_enum "google.cloud.datastream.v1alpha1.Validation.Status" do
239
- value :STATUS_UNSPECIFIED, 0
240
- value :NOT_EXECUTED, 1
241
- value :FAILED, 2
242
- value :PASSED, 3
243
- end
244
- add_message "google.cloud.datastream.v1alpha1.ValidationMessage" do
245
- optional :message, :string, 1
246
- optional :level, :enum, 2, "google.cloud.datastream.v1alpha1.ValidationMessage.Level"
247
- map :metadata, :string, :string, 3
248
- optional :code, :string, 4
249
- end
250
- add_enum "google.cloud.datastream.v1alpha1.ValidationMessage.Level" do
251
- value :LEVEL_UNSPECIFIED, 0
252
- value :WARNING, 1
253
- value :ERROR, 2
254
- end
255
- add_enum "google.cloud.datastream.v1alpha1.GcsFileFormat" do
256
- value :GCS_FILE_FORMAT_UNSPECIFIED, 0
257
- value :AVRO, 1
258
- end
259
- add_enum "google.cloud.datastream.v1alpha1.SchemaFileFormat" do
260
- value :SCHEMA_FILE_FORMAT_UNSPECIFIED, 0
261
- value :NO_SCHEMA_FILE, 1
262
- value :AVRO_SCHEMA_FILE, 2
12
+
13
+ descriptor_data = "\n;google/cloud/datastream/v1alpha1/datastream_resources.proto\x12 google.cloud.datastream.v1alpha1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xa8\x02\n\rOracleProfile\x12\x15\n\x08hostname\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04port\x18\x02 \x01(\x05\x12\x15\n\x08username\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08password\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x1d\n\x10\x64\x61tabase_service\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12h\n\x15\x63onnection_attributes\x18\x06 \x03(\x0b\x32I.google.cloud.datastream.v1alpha1.OracleProfile.ConnectionAttributesEntry\x1a;\n\x19\x43onnectionAttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xaa\x01\n\x0cMysqlProfile\x12\x15\n\x08hostname\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04port\x18\x02 \x01(\x05\x12\x15\n\x08username\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x18\n\x08password\x18\x04 \x01(\tB\x06\xe0\x41\x02\xe0\x41\x04\x12\x44\n\nssl_config\x18\x05 \x01(\x0b\x32\x30.google.cloud.datastream.v1alpha1.MysqlSslConfig\"9\n\nGcsProfile\x12\x18\n\x0b\x62ucket_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\troot_path\x18\x02 \x01(\t\"\x18\n\x16NoConnectivitySettings\"\x1d\n\x1bStaticServiceIpConnectivity\"\xa8\x01\n\x1c\x46orwardSshTunnelConnectivity\x12\x15\n\x08hostname\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08username\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04port\x18\x03 \x01(\x05\x12\x17\n\x08password\x18\x64 \x01(\tB\x03\xe0\x41\x04H\x00\x12\x1a\n\x0bprivate_key\x18\x65 \x01(\tB\x03\xe0\x41\x04H\x00\x42\x17\n\x15\x61uthentication_method\">\n\x10VpcPeeringConfig\x12\x15\n\x08vpc_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x06subnet\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\xd4\x05\n\x11PrivateConnection\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x06labels\x18\x04 \x03(\x0b\x32?.google.cloud.datastream.v1alpha1.PrivateConnection.LabelsEntry\x12\x19\n\x0c\x64isplay_name\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12M\n\x05state\x18\x06 \x01(\x0e\x32\x39.google.cloud.datastream.v1alpha1.PrivateConnection.StateB\x03\xe0\x41\x03\x12;\n\x05\x65rror\x18\x07 \x01(\x0b\x32\'.google.cloud.datastream.v1alpha1.ErrorB\x03\xe0\x41\x03\x12N\n\x12vpc_peering_config\x18\x64 \x01(\x0b\x32\x32.google.cloud.datastream.v1alpha1.VpcPeeringConfig\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"E\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\x0b\n\x07\x43REATED\x10\x02\x12\n\n\x06\x46\x41ILED\x10\x03:\x81\x01\xea\x41~\n+datastream.googleapis.com/PrivateConnection\x12Oprojects/{project}/locations/{location}/privateConnections/{private_connection}\";\n\x13PrivateConnectivity\x12$\n\x17private_connection_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\"\xd9\x03\n\x05Route\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x43\n\x06labels\x18\x04 \x03(\x0b\x32\x33.google.cloud.datastream.v1alpha1.Route.LabelsEntry\x12\x19\n\x0c\x64isplay_name\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12 \n\x13\x64\x65stination_address\x18\x06 \x01(\tB\x03\xe0\x41\x02\x12\x18\n\x10\x64\x65stination_port\x18\x07 \x01(\x05\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x85\x01\xea\x41\x81\x01\n\x1f\x64\x61tastream.googleapis.com/Route\x12^projects/{project}/locations/{location}/privateConnections/{private_connection}/routes/{route}\"\xca\x01\n\x0eMysqlSslConfig\x12\x17\n\nclient_key\x18\x0b \x01(\tB\x03\xe0\x41\x04\x12\x1b\n\x0e\x63lient_key_set\x18\x0c \x01(\x08\x42\x03\xe0\x41\x03\x12\x1f\n\x12\x63lient_certificate\x18\r \x01(\tB\x03\xe0\x41\x04\x12#\n\x16\x63lient_certificate_set\x18\x0e \x01(\x08\x42\x03\xe0\x41\x03\x12\x1b\n\x0e\x63\x61_certificate\x18\x0f \x01(\tB\x03\xe0\x41\x04\x12\x1f\n\x12\x63\x61_certificate_set\x18\x10 \x01(\x08\x42\x03\xe0\x41\x03\"\xa2\x08\n\x11\x43onnectionProfile\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x06labels\x18\x04 \x03(\x0b\x32?.google.cloud.datastream.v1alpha1.ConnectionProfile.LabelsEntry\x12\x19\n\x0c\x64isplay_name\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12I\n\x0eoracle_profile\x18\x64 \x01(\x0b\x32/.google.cloud.datastream.v1alpha1.OracleProfileH\x00\x12\x43\n\x0bgcs_profile\x18\x65 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.GcsProfileH\x00\x12G\n\rmysql_profile\x18\x66 \x01(\x0b\x32..google.cloud.datastream.v1alpha1.MysqlProfileH\x00\x12T\n\x0fno_connectivity\x18\xc8\x01 \x01(\x0b\x32\x38.google.cloud.datastream.v1alpha1.NoConnectivitySettingsH\x01\x12h\n\x1estatic_service_ip_connectivity\x18\xc9\x01 \x01(\x0b\x32=.google.cloud.datastream.v1alpha1.StaticServiceIpConnectivityH\x01\x12\x63\n\x18\x66orward_ssh_connectivity\x18\xca\x01 \x01(\x0b\x32>.google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivityH\x01\x12V\n\x14private_connectivity\x18\xcb\x01 \x01(\x0b\x32\x35.google.cloud.datastream.v1alpha1.PrivateConnectivityH\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x81\x01\xea\x41~\n+datastream.googleapis.com/ConnectionProfile\x12Oprojects/{project}/locations/{location}/connectionProfiles/{connection_profile}B\t\n\x07profileB\x0e\n\x0c\x63onnectivity\"\xbb\x01\n\x0cOracleColumn\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x11\n\tdata_type\x18\x02 \x01(\t\x12\x0e\n\x06length\x18\x03 \x01(\x05\x12\x11\n\tprecision\x18\x04 \x01(\x05\x12\r\n\x05scale\x18\x05 \x01(\x05\x12\x10\n\x08\x65ncoding\x18\x06 \x01(\t\x12\x13\n\x0bprimary_key\x18\x07 \x01(\x08\x12\x10\n\x08nullable\x18\x08 \x01(\x08\x12\x18\n\x10ordinal_position\x18\t \x01(\x05\"i\n\x0bOracleTable\x12\x12\n\ntable_name\x18\x01 \x01(\t\x12\x46\n\x0eoracle_columns\x18\x02 \x03(\x0b\x32..google.cloud.datastream.v1alpha1.OracleColumn\"i\n\x0cOracleSchema\x12\x13\n\x0bschema_name\x18\x01 \x01(\t\x12\x44\n\roracle_tables\x18\x02 \x03(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleTable\"U\n\x0bOracleRdbms\x12\x46\n\x0eoracle_schemas\x18\x01 \x03(\x0b\x32..google.cloud.datastream.v1alpha1.OracleSchema\"\x99\x01\n\x12OracleSourceConfig\x12@\n\tallowlist\x18\x01 \x01(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleRdbms\x12\x41\n\nrejectlist\x18\x02 \x01(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleRdbms\"\x99\x01\n\x0bMysqlColumn\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x11\n\tdata_type\x18\x02 \x01(\t\x12\x0e\n\x06length\x18\x03 \x01(\x05\x12\x11\n\tcollation\x18\x04 \x01(\t\x12\x13\n\x0bprimary_key\x18\x05 \x01(\x08\x12\x10\n\x08nullable\x18\x06 \x01(\x08\x12\x18\n\x10ordinal_position\x18\x07 \x01(\x05\"f\n\nMysqlTable\x12\x12\n\ntable_name\x18\x01 \x01(\t\x12\x44\n\rmysql_columns\x18\x02 \x03(\x0b\x32-.google.cloud.datastream.v1alpha1.MysqlColumn\"j\n\rMysqlDatabase\x12\x15\n\rdatabase_name\x18\x01 \x01(\t\x12\x42\n\x0cmysql_tables\x18\x02 \x03(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlTable\"V\n\nMysqlRdbms\x12H\n\x0fmysql_databases\x18\x01 \x03(\x0b\x32/.google.cloud.datastream.v1alpha1.MysqlDatabase\"\x96\x01\n\x11MysqlSourceConfig\x12?\n\tallowlist\x18\x01 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlRdbms\x12@\n\nrejectlist\x18\x02 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlRdbms\"\xfd\x01\n\x0cSourceConfig\x12+\n\x1esource_connection_profile_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12T\n\x14oracle_source_config\x18\x64 \x01(\x0b\x32\x34.google.cloud.datastream.v1alpha1.OracleSourceConfigH\x00\x12R\n\x13mysql_source_config\x18\x65 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.MysqlSourceConfigH\x00\x42\x16\n\x14source_stream_config\"\x10\n\x0e\x41vroFileFormat\"\x8a\x02\n\x0eJsonFileFormat\x12N\n\x12schema_file_format\x18\x01 \x01(\x0e\x32\x32.google.cloud.datastream.v1alpha1.SchemaFileFormat\x12U\n\x0b\x63ompression\x18\x02 \x01(\x0e\x32@.google.cloud.datastream.v1alpha1.JsonFileFormat.JsonCompression\"Q\n\x0fJsonCompression\x12 \n\x1cJSON_COMPRESSION_UNSPECIFIED\x10\x00\x12\x12\n\x0eNO_COMPRESSION\x10\x01\x12\x08\n\x04GZIP\x10\x02\"\xf2\x02\n\x14GcsDestinationConfig\x12\x0c\n\x04path\x18\x01 \x01(\t\x12L\n\x0fgcs_file_format\x18\x02 \x01(\x0e\x32/.google.cloud.datastream.v1alpha1.GcsFileFormatB\x02\x18\x01\x12\x18\n\x10\x66ile_rotation_mb\x18\x03 \x01(\x05\x12\x39\n\x16\x66ile_rotation_interval\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\x12L\n\x10\x61vro_file_format\x18\x64 \x01(\x0b\x32\x30.google.cloud.datastream.v1alpha1.AvroFileFormatH\x00\x12L\n\x10json_file_format\x18\x65 \x01(\x0b\x32\x30.google.cloud.datastream.v1alpha1.JsonFileFormatH\x00\x42\r\n\x0b\x66ile_format\"\xbc\x01\n\x11\x44\x65stinationConfig\x12\x30\n#destination_connection_profile_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12X\n\x16gcs_destination_config\x18\x64 \x01(\x0b\x32\x36.google.cloud.datastream.v1alpha1.GcsDestinationConfigH\x00\x42\x1b\n\x19\x64\x65stination_stream_config\"\xd8\t\n\x06Stream\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x44\n\x06labels\x18\x04 \x03(\x0b\x32\x34.google.cloud.datastream.v1alpha1.Stream.LabelsEntry\x12\x19\n\x0c\x64isplay_name\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12J\n\rsource_config\x18\x06 \x01(\x0b\x32..google.cloud.datastream.v1alpha1.SourceConfigB\x03\xe0\x41\x02\x12T\n\x12\x64\x65stination_config\x18\x07 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.DestinationConfigB\x03\xe0\x41\x02\x12=\n\x05state\x18\x08 \x01(\x0e\x32..google.cloud.datastream.v1alpha1.Stream.State\x12T\n\x0c\x62\x61\x63kfill_all\x18\x65 \x01(\x0b\x32<.google.cloud.datastream.v1alpha1.Stream.BackfillAllStrategyH\x00\x12V\n\rbackfill_none\x18\x66 \x01(\x0b\x32=.google.cloud.datastream.v1alpha1.Stream.BackfillNoneStrategyH\x00\x12<\n\x06\x65rrors\x18\t \x03(\x0b\x32\'.google.cloud.datastream.v1alpha1.ErrorB\x03\xe0\x41\x03\x1a\xcb\x01\n\x13\x42\x61\x63kfillAllStrategy\x12P\n\x17oracle_excluded_objects\x18\x01 \x01(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleRdbmsH\x00\x12N\n\x16mysql_excluded_objects\x18\x02 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlRdbmsH\x00\x42\x12\n\x10\x65xcluded_objects\x1a\x16\n\x14\x42\x61\x63kfillNoneStrategy\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x95\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x43REATED\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\n\n\x06PAUSED\x10\x03\x12\x0f\n\x0bMAINTENANCE\x10\x04\x12\n\n\x06\x46\x41ILED\x10\x05\x12\x16\n\x12\x46\x41ILED_PERMANENTLY\x10\x06\x12\x0c\n\x08STARTING\x10\x07\x12\x0c\n\x08\x44RAINING\x10\x08:_\xea\x41\\\n datastream.googleapis.com/Stream\x12\x38projects/{project}/locations/{location}/streams/{stream}B\x13\n\x11\x62\x61\x63kfill_strategy\"\xe3\x01\n\x05\x45rror\x12\x0e\n\x06reason\x18\x01 \x01(\t\x12\x12\n\nerror_uuid\x18\x02 \x01(\t\x12\x0f\n\x07message\x18\x03 \x01(\t\x12.\n\nerror_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x45\n\x07\x64\x65tails\x18\x05 \x03(\x0b\x32\x34.google.cloud.datastream.v1alpha1.Error.DetailsEntry\x1a.\n\x0c\x44\x65tailsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"U\n\x10ValidationResult\x12\x41\n\x0bvalidations\x18\x01 \x03(\x0b\x32,.google.cloud.datastream.v1alpha1.Validation\"\x86\x02\n\nValidation\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\x12\x43\n\x06status\x18\x02 \x01(\x0e\x32\x33.google.cloud.datastream.v1alpha1.Validation.Status\x12\x44\n\x07message\x18\x03 \x03(\x0b\x32\x33.google.cloud.datastream.v1alpha1.ValidationMessage\x12\x0c\n\x04\x63ode\x18\x04 \x01(\t\"J\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x10\n\x0cNOT_EXECUTED\x10\x01\x12\n\n\x06\x46\x41ILED\x10\x02\x12\n\n\x06PASSED\x10\x03\"\xba\x02\n\x11ValidationMessage\x12\x0f\n\x07message\x18\x01 \x01(\t\x12H\n\x05level\x18\x02 \x01(\x0e\x32\x39.google.cloud.datastream.v1alpha1.ValidationMessage.Level\x12S\n\x08metadata\x18\x03 \x03(\x0b\x32\x41.google.cloud.datastream.v1alpha1.ValidationMessage.MetadataEntry\x12\x0c\n\x04\x63ode\x18\x04 \x01(\t\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"6\n\x05Level\x12\x15\n\x11LEVEL_UNSPECIFIED\x10\x00\x12\x0b\n\x07WARNING\x10\x01\x12\t\n\x05\x45RROR\x10\x02*>\n\rGcsFileFormat\x12\x1f\n\x1bGCS_FILE_FORMAT_UNSPECIFIED\x10\x00\x12\x08\n\x04\x41VRO\x10\x01\x1a\x02\x18\x01*`\n\x10SchemaFileFormat\x12\"\n\x1eSCHEMA_FILE_FORMAT_UNSPECIFIED\x10\x00\x12\x12\n\x0eNO_SCHEMA_FILE\x10\x01\x12\x14\n\x10\x41VRO_SCHEMA_FILE\x10\x02\x42\xf9\x01\n$com.google.cloud.datastream.v1alpha1B\x1d\x43loudDatastreamResourcesProtoP\x01ZDcloud.google.com/go/datastream/apiv1alpha1/datastreampb;datastreampb\xaa\x02 Google.Cloud.Datastream.V1Alpha1\xca\x02 Google\\Cloud\\Datastream\\V1alpha1\xea\x02#Google::Cloud::Datastream::V1alpha1b\x06proto3"
14
+
15
+ pool = Google::Protobuf::DescriptorPool.generated_pool
16
+
17
+ begin
18
+ pool.add_serialized_file(descriptor_data)
19
+ rescue TypeError => e
20
+ # Compatibility code: will be removed in the next major version.
21
+ require 'google/protobuf/descriptor_pb'
22
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
23
+ parsed.clear_dependency
24
+ serialized = parsed.class.encode(parsed)
25
+ file = pool.add_serialized_file(serialized)
26
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
27
+ imports = [
28
+ ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
29
+ ["google.protobuf.Duration", "google/protobuf/duration.proto"],
30
+ ]
31
+ imports.each do |type_name, expected_filename|
32
+ import_file = pool.lookup(type_name).file_descriptor
33
+ if import_file.name != expected_filename
34
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
263
35
  end
264
36
  end
37
+ warn "Each proto file must use a consistent fully-qualified name."
38
+ warn "This will become an error in the next major version."
265
39
  end
266
40
 
267
41
  module Google