1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 package connectors
22
23 import (
24 reflect "reflect"
25 sync "sync"
26
27 _ "google.golang.org/genproto/googleapis/api/annotations"
28 protoreflect "google.golang.org/protobuf/reflect/protoreflect"
29 protoimpl "google.golang.org/protobuf/runtime/protoimpl"
30 timestamppb "google.golang.org/protobuf/types/known/timestamppb"
31 )
32
33 const (
34
35 _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
36
37 _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
38 )
39
40
41 type Connector struct {
42 state protoimpl.MessageState
43 sizeCache protoimpl.SizeCache
44 unknownFields protoimpl.UnknownFields
45
46
47
48
49
50 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
51
52 CreateTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
53
54 UpdateTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
55
56
57
58 Labels map[string]string `protobuf:"bytes,4,rep,name=labels,proto3" json:"labels,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
59
60 DocumentationUri string `protobuf:"bytes,6,opt,name=documentation_uri,json=documentationUri,proto3" json:"documentation_uri,omitempty"`
61
62 ExternalUri string `protobuf:"bytes,7,opt,name=external_uri,json=externalUri,proto3" json:"external_uri,omitempty"`
63
64 Description string `protobuf:"bytes,8,opt,name=description,proto3" json:"description,omitempty"`
65
66 WebAssetsLocation string `protobuf:"bytes,9,opt,name=web_assets_location,json=webAssetsLocation,proto3" json:"web_assets_location,omitempty"`
67
68 DisplayName string `protobuf:"bytes,10,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
69
70 LaunchStage LaunchStage `protobuf:"varint,11,opt,name=launch_stage,json=launchStage,proto3,enum=google.cloud.connectors.v1.LaunchStage" json:"launch_stage,omitempty"`
71 }
72
73 func (x *Connector) Reset() {
74 *x = Connector{}
75 if protoimpl.UnsafeEnabled {
76 mi := &file_google_cloud_connectors_v1_connector_proto_msgTypes[0]
77 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
78 ms.StoreMessageInfo(mi)
79 }
80 }
81
82 func (x *Connector) String() string {
83 return protoimpl.X.MessageStringOf(x)
84 }
85
86 func (*Connector) ProtoMessage() {}
87
88 func (x *Connector) ProtoReflect() protoreflect.Message {
89 mi := &file_google_cloud_connectors_v1_connector_proto_msgTypes[0]
90 if protoimpl.UnsafeEnabled && x != nil {
91 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
92 if ms.LoadMessageInfo() == nil {
93 ms.StoreMessageInfo(mi)
94 }
95 return ms
96 }
97 return mi.MessageOf(x)
98 }
99
100
101 func (*Connector) Descriptor() ([]byte, []int) {
102 return file_google_cloud_connectors_v1_connector_proto_rawDescGZIP(), []int{0}
103 }
104
105 func (x *Connector) GetName() string {
106 if x != nil {
107 return x.Name
108 }
109 return ""
110 }
111
112 func (x *Connector) GetCreateTime() *timestamppb.Timestamp {
113 if x != nil {
114 return x.CreateTime
115 }
116 return nil
117 }
118
119 func (x *Connector) GetUpdateTime() *timestamppb.Timestamp {
120 if x != nil {
121 return x.UpdateTime
122 }
123 return nil
124 }
125
126 func (x *Connector) GetLabels() map[string]string {
127 if x != nil {
128 return x.Labels
129 }
130 return nil
131 }
132
133 func (x *Connector) GetDocumentationUri() string {
134 if x != nil {
135 return x.DocumentationUri
136 }
137 return ""
138 }
139
140 func (x *Connector) GetExternalUri() string {
141 if x != nil {
142 return x.ExternalUri
143 }
144 return ""
145 }
146
147 func (x *Connector) GetDescription() string {
148 if x != nil {
149 return x.Description
150 }
151 return ""
152 }
153
154 func (x *Connector) GetWebAssetsLocation() string {
155 if x != nil {
156 return x.WebAssetsLocation
157 }
158 return ""
159 }
160
161 func (x *Connector) GetDisplayName() string {
162 if x != nil {
163 return x.DisplayName
164 }
165 return ""
166 }
167
168 func (x *Connector) GetLaunchStage() LaunchStage {
169 if x != nil {
170 return x.LaunchStage
171 }
172 return LaunchStage_LAUNCH_STAGE_UNSPECIFIED
173 }
174
175
176 type GetConnectorRequest struct {
177 state protoimpl.MessageState
178 sizeCache protoimpl.SizeCache
179 unknownFields protoimpl.UnknownFields
180
181
182
183
184 Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
185 }
186
187 func (x *GetConnectorRequest) Reset() {
188 *x = GetConnectorRequest{}
189 if protoimpl.UnsafeEnabled {
190 mi := &file_google_cloud_connectors_v1_connector_proto_msgTypes[1]
191 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
192 ms.StoreMessageInfo(mi)
193 }
194 }
195
196 func (x *GetConnectorRequest) String() string {
197 return protoimpl.X.MessageStringOf(x)
198 }
199
200 func (*GetConnectorRequest) ProtoMessage() {}
201
202 func (x *GetConnectorRequest) ProtoReflect() protoreflect.Message {
203 mi := &file_google_cloud_connectors_v1_connector_proto_msgTypes[1]
204 if protoimpl.UnsafeEnabled && x != nil {
205 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
206 if ms.LoadMessageInfo() == nil {
207 ms.StoreMessageInfo(mi)
208 }
209 return ms
210 }
211 return mi.MessageOf(x)
212 }
213
214
215 func (*GetConnectorRequest) Descriptor() ([]byte, []int) {
216 return file_google_cloud_connectors_v1_connector_proto_rawDescGZIP(), []int{1}
217 }
218
219 func (x *GetConnectorRequest) GetName() string {
220 if x != nil {
221 return x.Name
222 }
223 return ""
224 }
225
226
227 type ListConnectorsRequest struct {
228 state protoimpl.MessageState
229 sizeCache protoimpl.SizeCache
230 unknownFields protoimpl.UnknownFields
231
232
233
234
235 Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
236
237 PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
238
239 PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
240 }
241
242 func (x *ListConnectorsRequest) Reset() {
243 *x = ListConnectorsRequest{}
244 if protoimpl.UnsafeEnabled {
245 mi := &file_google_cloud_connectors_v1_connector_proto_msgTypes[2]
246 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
247 ms.StoreMessageInfo(mi)
248 }
249 }
250
251 func (x *ListConnectorsRequest) String() string {
252 return protoimpl.X.MessageStringOf(x)
253 }
254
255 func (*ListConnectorsRequest) ProtoMessage() {}
256
257 func (x *ListConnectorsRequest) ProtoReflect() protoreflect.Message {
258 mi := &file_google_cloud_connectors_v1_connector_proto_msgTypes[2]
259 if protoimpl.UnsafeEnabled && x != nil {
260 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
261 if ms.LoadMessageInfo() == nil {
262 ms.StoreMessageInfo(mi)
263 }
264 return ms
265 }
266 return mi.MessageOf(x)
267 }
268
269
270 func (*ListConnectorsRequest) Descriptor() ([]byte, []int) {
271 return file_google_cloud_connectors_v1_connector_proto_rawDescGZIP(), []int{2}
272 }
273
274 func (x *ListConnectorsRequest) GetParent() string {
275 if x != nil {
276 return x.Parent
277 }
278 return ""
279 }
280
281 func (x *ListConnectorsRequest) GetPageSize() int32 {
282 if x != nil {
283 return x.PageSize
284 }
285 return 0
286 }
287
288 func (x *ListConnectorsRequest) GetPageToken() string {
289 if x != nil {
290 return x.PageToken
291 }
292 return ""
293 }
294
295
296 type ListConnectorsResponse struct {
297 state protoimpl.MessageState
298 sizeCache protoimpl.SizeCache
299 unknownFields protoimpl.UnknownFields
300
301
302 Connectors []*Connector `protobuf:"bytes,1,rep,name=connectors,proto3" json:"connectors,omitempty"`
303
304 NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
305
306 Unreachable []string `protobuf:"bytes,3,rep,name=unreachable,proto3" json:"unreachable,omitempty"`
307 }
308
309 func (x *ListConnectorsResponse) Reset() {
310 *x = ListConnectorsResponse{}
311 if protoimpl.UnsafeEnabled {
312 mi := &file_google_cloud_connectors_v1_connector_proto_msgTypes[3]
313 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
314 ms.StoreMessageInfo(mi)
315 }
316 }
317
318 func (x *ListConnectorsResponse) String() string {
319 return protoimpl.X.MessageStringOf(x)
320 }
321
322 func (*ListConnectorsResponse) ProtoMessage() {}
323
324 func (x *ListConnectorsResponse) ProtoReflect() protoreflect.Message {
325 mi := &file_google_cloud_connectors_v1_connector_proto_msgTypes[3]
326 if protoimpl.UnsafeEnabled && x != nil {
327 ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
328 if ms.LoadMessageInfo() == nil {
329 ms.StoreMessageInfo(mi)
330 }
331 return ms
332 }
333 return mi.MessageOf(x)
334 }
335
336
337 func (*ListConnectorsResponse) Descriptor() ([]byte, []int) {
338 return file_google_cloud_connectors_v1_connector_proto_rawDescGZIP(), []int{3}
339 }
340
341 func (x *ListConnectorsResponse) GetConnectors() []*Connector {
342 if x != nil {
343 return x.Connectors
344 }
345 return nil
346 }
347
348 func (x *ListConnectorsResponse) GetNextPageToken() string {
349 if x != nil {
350 return x.NextPageToken
351 }
352 return ""
353 }
354
355 func (x *ListConnectorsResponse) GetUnreachable() []string {
356 if x != nil {
357 return x.Unreachable
358 }
359 return nil
360 }
361
362 var File_google_cloud_connectors_v1_connector_proto protoreflect.FileDescriptor
363
364 var file_google_cloud_connectors_v1_connector_proto_rawDesc = []byte{
365 0x0a, 0x2a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2f, 0x63,
366 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x31, 0x2f, 0x63, 0x6f, 0x6e,
367 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1a, 0x67, 0x6f,
368 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63, 0x6f, 0x6e, 0x6e, 0x65,
369 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2e, 0x76, 0x31, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
370 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76,
371 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
372 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70,
373 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x27, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x63, 0x6c, 0x6f,
374 0x75, 0x64, 0x2f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x31,
375 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67,
376 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74,
377 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe1,
378 0x05, 0x0a, 0x09, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x12, 0x17, 0x0a, 0x04,
379 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52,
380 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x40, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f,
381 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
382 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
383 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65,
384 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x40, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74,
385 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
386 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
387 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x75,
388 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x4e, 0x0a, 0x06, 0x6c, 0x61, 0x62,
389 0x65, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
390 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
391 0x6f, 0x72, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72,
392 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x03, 0xe0, 0x41,
393 0x03, 0x52, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x30, 0x0a, 0x11, 0x64, 0x6f, 0x63,
394 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x06,
395 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x10, 0x64, 0x6f, 0x63, 0x75, 0x6d,
396 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x72, 0x69, 0x12, 0x26, 0x0a, 0x0c, 0x65,
397 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x07, 0x20, 0x01, 0x28,
398 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
399 0x55, 0x72, 0x69, 0x12, 0x25, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
400 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x64,
401 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x33, 0x0a, 0x13, 0x77, 0x65,
402 0x62, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
403 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x11, 0x77, 0x65,
404 0x62, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
405 0x26, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
406 0x0a, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70,
407 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x4f, 0x0a, 0x0c, 0x6c, 0x61, 0x75, 0x6e, 0x63,
408 0x68, 0x5f, 0x73, 0x74, 0x61, 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e,
409 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63, 0x6f, 0x6e,
410 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x61, 0x75, 0x6e, 0x63,
411 0x68, 0x53, 0x74, 0x61, 0x67, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0b, 0x6c, 0x61, 0x75,
412 0x6e, 0x63, 0x68, 0x53, 0x74, 0x61, 0x67, 0x65, 0x1a, 0x39, 0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65,
413 0x6c, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
414 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
415 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
416 0x02, 0x38, 0x01, 0x3a, 0x7d, 0xea, 0x41, 0x7a, 0x0a, 0x23, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63,
417 0x74, 0x6f, 0x72, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e,
418 0x63, 0x6f, 0x6d, 0x2f, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x12, 0x53, 0x70,
419 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
420 0x7d, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x6c, 0x6f, 0x63,
421 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x7d, 0x2f, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x73,
422 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x7d, 0x2f, 0x63, 0x6f, 0x6e, 0x6e,
423 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f,
424 0x72, 0x7d, 0x22, 0x56, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74,
425 0x6f, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3f, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
426 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x25, 0x0a,
427 0x23, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
428 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x43, 0x6f, 0x6e, 0x6e, 0x65,
429 0x63, 0x74, 0x6f, 0x72, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x97, 0x01, 0x0a, 0x15, 0x4c,
430 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x52, 0x65, 0x71,
431 0x75, 0x65, 0x73, 0x74, 0x12, 0x42, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x01,
432 0x20, 0x01, 0x28, 0x09, 0x42, 0x2a, 0xe0, 0x41, 0x02, 0xfa, 0x41, 0x24, 0x0a, 0x22, 0x63, 0x6f,
433 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
434 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72,
435 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65,
436 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67,
437 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f,
438 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65, 0x54,
439 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0xa9, 0x01, 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e,
440 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
441 0x45, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x18, 0x01, 0x20,
442 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63, 0x6c, 0x6f,
443 0x75, 0x64, 0x2e, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2e, 0x76, 0x31,
444 0x2e, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x6e,
445 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x6e, 0x65, 0x78, 0x74, 0x5f, 0x70,
446 0x61, 0x67, 0x65, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
447 0x0d, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x20,
448 0x0a, 0x0b, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x63, 0x68, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x03, 0x20,
449 0x03, 0x28, 0x09, 0x52, 0x0b, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x63, 0x68, 0x61, 0x62, 0x6c, 0x65,
450 0x42, 0x78, 0x0a, 0x1e, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x63,
451 0x6c, 0x6f, 0x75, 0x64, 0x2e, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2e,
452 0x76, 0x31, 0x42, 0x0e, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f,
453 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
454 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
455 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x63, 0x6c, 0x6f, 0x75,
456 0x64, 0x2f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x31, 0x3b,
457 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
458 0x6f, 0x33,
459 }
460
461 var (
462 file_google_cloud_connectors_v1_connector_proto_rawDescOnce sync.Once
463 file_google_cloud_connectors_v1_connector_proto_rawDescData = file_google_cloud_connectors_v1_connector_proto_rawDesc
464 )
465
466 func file_google_cloud_connectors_v1_connector_proto_rawDescGZIP() []byte {
467 file_google_cloud_connectors_v1_connector_proto_rawDescOnce.Do(func() {
468 file_google_cloud_connectors_v1_connector_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_cloud_connectors_v1_connector_proto_rawDescData)
469 })
470 return file_google_cloud_connectors_v1_connector_proto_rawDescData
471 }
472
473 var file_google_cloud_connectors_v1_connector_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
474 var file_google_cloud_connectors_v1_connector_proto_goTypes = []interface{}{
475 (*Connector)(nil),
476 (*GetConnectorRequest)(nil),
477 (*ListConnectorsRequest)(nil),
478 (*ListConnectorsResponse)(nil),
479 nil,
480 (*timestamppb.Timestamp)(nil),
481 (LaunchStage)(0),
482 }
483 var file_google_cloud_connectors_v1_connector_proto_depIdxs = []int32{
484 5,
485 5,
486 4,
487 6,
488 0,
489 5,
490 5,
491 5,
492 5,
493 0,
494 }
495
496 func init() { file_google_cloud_connectors_v1_connector_proto_init() }
497 func file_google_cloud_connectors_v1_connector_proto_init() {
498 if File_google_cloud_connectors_v1_connector_proto != nil {
499 return
500 }
501 file_google_cloud_connectors_v1_common_proto_init()
502 if !protoimpl.UnsafeEnabled {
503 file_google_cloud_connectors_v1_connector_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
504 switch v := v.(*Connector); i {
505 case 0:
506 return &v.state
507 case 1:
508 return &v.sizeCache
509 case 2:
510 return &v.unknownFields
511 default:
512 return nil
513 }
514 }
515 file_google_cloud_connectors_v1_connector_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
516 switch v := v.(*GetConnectorRequest); i {
517 case 0:
518 return &v.state
519 case 1:
520 return &v.sizeCache
521 case 2:
522 return &v.unknownFields
523 default:
524 return nil
525 }
526 }
527 file_google_cloud_connectors_v1_connector_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
528 switch v := v.(*ListConnectorsRequest); i {
529 case 0:
530 return &v.state
531 case 1:
532 return &v.sizeCache
533 case 2:
534 return &v.unknownFields
535 default:
536 return nil
537 }
538 }
539 file_google_cloud_connectors_v1_connector_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
540 switch v := v.(*ListConnectorsResponse); i {
541 case 0:
542 return &v.state
543 case 1:
544 return &v.sizeCache
545 case 2:
546 return &v.unknownFields
547 default:
548 return nil
549 }
550 }
551 }
552 type x struct{}
553 out := protoimpl.TypeBuilder{
554 File: protoimpl.DescBuilder{
555 GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
556 RawDescriptor: file_google_cloud_connectors_v1_connector_proto_rawDesc,
557 NumEnums: 0,
558 NumMessages: 5,
559 NumExtensions: 0,
560 NumServices: 0,
561 },
562 GoTypes: file_google_cloud_connectors_v1_connector_proto_goTypes,
563 DependencyIndexes: file_google_cloud_connectors_v1_connector_proto_depIdxs,
564 MessageInfos: file_google_cloud_connectors_v1_connector_proto_msgTypes,
565 }.Build()
566 File_google_cloud_connectors_v1_connector_proto = out.File
567 file_google_cloud_connectors_v1_connector_proto_rawDesc = nil
568 file_google_cloud_connectors_v1_connector_proto_goTypes = nil
569 file_google_cloud_connectors_v1_connector_proto_depIdxs = nil
570 }
571
View as plain text