Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/public-api/go/experimental/v1/dummy.pb.go
2501 views
1
// Copyright (c) 2025 Gitpod GmbH. All rights reserved.
2
// Licensed under the GNU Affero General Public License (AGPL).
3
// See License.AGPL.txt in the project root for license information.
4
5
// Code generated by protoc-gen-go. DO NOT EDIT.
6
// versions:
7
// protoc-gen-go v1.28.1
8
// protoc (unknown)
9
// source: gitpod/experimental/v1/dummy.proto
10
11
package v1
12
13
import (
14
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
15
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
16
reflect "reflect"
17
sync "sync"
18
)
19
20
const (
21
// Verify that this generated code is sufficiently up-to-date.
22
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
23
// Verify that runtime/protoimpl is sufficiently up-to-date.
24
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
25
)
26
27
type SayHelloRequest struct {
28
state protoimpl.MessageState
29
sizeCache protoimpl.SizeCache
30
unknownFields protoimpl.UnknownFields
31
}
32
33
func (x *SayHelloRequest) Reset() {
34
*x = SayHelloRequest{}
35
if protoimpl.UnsafeEnabled {
36
mi := &file_gitpod_experimental_v1_dummy_proto_msgTypes[0]
37
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
38
ms.StoreMessageInfo(mi)
39
}
40
}
41
42
func (x *SayHelloRequest) String() string {
43
return protoimpl.X.MessageStringOf(x)
44
}
45
46
func (*SayHelloRequest) ProtoMessage() {}
47
48
func (x *SayHelloRequest) ProtoReflect() protoreflect.Message {
49
mi := &file_gitpod_experimental_v1_dummy_proto_msgTypes[0]
50
if protoimpl.UnsafeEnabled && x != nil {
51
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
52
if ms.LoadMessageInfo() == nil {
53
ms.StoreMessageInfo(mi)
54
}
55
return ms
56
}
57
return mi.MessageOf(x)
58
}
59
60
// Deprecated: Use SayHelloRequest.ProtoReflect.Descriptor instead.
61
func (*SayHelloRequest) Descriptor() ([]byte, []int) {
62
return file_gitpod_experimental_v1_dummy_proto_rawDescGZIP(), []int{0}
63
}
64
65
type SayHelloResponse struct {
66
state protoimpl.MessageState
67
sizeCache protoimpl.SizeCache
68
unknownFields protoimpl.UnknownFields
69
70
Reply string `protobuf:"bytes,1,opt,name=reply,proto3" json:"reply,omitempty"`
71
}
72
73
func (x *SayHelloResponse) Reset() {
74
*x = SayHelloResponse{}
75
if protoimpl.UnsafeEnabled {
76
mi := &file_gitpod_experimental_v1_dummy_proto_msgTypes[1]
77
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
78
ms.StoreMessageInfo(mi)
79
}
80
}
81
82
func (x *SayHelloResponse) String() string {
83
return protoimpl.X.MessageStringOf(x)
84
}
85
86
func (*SayHelloResponse) ProtoMessage() {}
87
88
func (x *SayHelloResponse) ProtoReflect() protoreflect.Message {
89
mi := &file_gitpod_experimental_v1_dummy_proto_msgTypes[1]
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
// Deprecated: Use SayHelloResponse.ProtoReflect.Descriptor instead.
101
func (*SayHelloResponse) Descriptor() ([]byte, []int) {
102
return file_gitpod_experimental_v1_dummy_proto_rawDescGZIP(), []int{1}
103
}
104
105
func (x *SayHelloResponse) GetReply() string {
106
if x != nil {
107
return x.Reply
108
}
109
return ""
110
}
111
112
type LotsOfRepliesRequest struct {
113
state protoimpl.MessageState
114
sizeCache protoimpl.SizeCache
115
unknownFields protoimpl.UnknownFields
116
117
PreviousCount int32 `protobuf:"varint,1,opt,name=previous_count,json=previousCount,proto3" json:"previous_count,omitempty"`
118
}
119
120
func (x *LotsOfRepliesRequest) Reset() {
121
*x = LotsOfRepliesRequest{}
122
if protoimpl.UnsafeEnabled {
123
mi := &file_gitpod_experimental_v1_dummy_proto_msgTypes[2]
124
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
125
ms.StoreMessageInfo(mi)
126
}
127
}
128
129
func (x *LotsOfRepliesRequest) String() string {
130
return protoimpl.X.MessageStringOf(x)
131
}
132
133
func (*LotsOfRepliesRequest) ProtoMessage() {}
134
135
func (x *LotsOfRepliesRequest) ProtoReflect() protoreflect.Message {
136
mi := &file_gitpod_experimental_v1_dummy_proto_msgTypes[2]
137
if protoimpl.UnsafeEnabled && x != nil {
138
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
139
if ms.LoadMessageInfo() == nil {
140
ms.StoreMessageInfo(mi)
141
}
142
return ms
143
}
144
return mi.MessageOf(x)
145
}
146
147
// Deprecated: Use LotsOfRepliesRequest.ProtoReflect.Descriptor instead.
148
func (*LotsOfRepliesRequest) Descriptor() ([]byte, []int) {
149
return file_gitpod_experimental_v1_dummy_proto_rawDescGZIP(), []int{2}
150
}
151
152
func (x *LotsOfRepliesRequest) GetPreviousCount() int32 {
153
if x != nil {
154
return x.PreviousCount
155
}
156
return 0
157
}
158
159
type LotsOfRepliesResponse struct {
160
state protoimpl.MessageState
161
sizeCache protoimpl.SizeCache
162
unknownFields protoimpl.UnknownFields
163
164
Reply string `protobuf:"bytes,1,opt,name=reply,proto3" json:"reply,omitempty"`
165
Count int32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
166
}
167
168
func (x *LotsOfRepliesResponse) Reset() {
169
*x = LotsOfRepliesResponse{}
170
if protoimpl.UnsafeEnabled {
171
mi := &file_gitpod_experimental_v1_dummy_proto_msgTypes[3]
172
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
173
ms.StoreMessageInfo(mi)
174
}
175
}
176
177
func (x *LotsOfRepliesResponse) String() string {
178
return protoimpl.X.MessageStringOf(x)
179
}
180
181
func (*LotsOfRepliesResponse) ProtoMessage() {}
182
183
func (x *LotsOfRepliesResponse) ProtoReflect() protoreflect.Message {
184
mi := &file_gitpod_experimental_v1_dummy_proto_msgTypes[3]
185
if protoimpl.UnsafeEnabled && x != nil {
186
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
187
if ms.LoadMessageInfo() == nil {
188
ms.StoreMessageInfo(mi)
189
}
190
return ms
191
}
192
return mi.MessageOf(x)
193
}
194
195
// Deprecated: Use LotsOfRepliesResponse.ProtoReflect.Descriptor instead.
196
func (*LotsOfRepliesResponse) Descriptor() ([]byte, []int) {
197
return file_gitpod_experimental_v1_dummy_proto_rawDescGZIP(), []int{3}
198
}
199
200
func (x *LotsOfRepliesResponse) GetReply() string {
201
if x != nil {
202
return x.Reply
203
}
204
return ""
205
}
206
207
func (x *LotsOfRepliesResponse) GetCount() int32 {
208
if x != nil {
209
return x.Count
210
}
211
return 0
212
}
213
214
var File_gitpod_experimental_v1_dummy_proto protoreflect.FileDescriptor
215
216
var file_gitpod_experimental_v1_dummy_proto_rawDesc = []byte{
217
0x0a, 0x22, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d,
218
0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2f, 0x76, 0x31, 0x2f, 0x64, 0x75, 0x6d, 0x6d, 0x79, 0x2e, 0x70,
219
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x16, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70,
220
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x22, 0x11, 0x0a, 0x0f,
221
0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22,
222
0x28, 0x0a, 0x10, 0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f,
223
0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01,
224
0x28, 0x09, 0x52, 0x05, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x3d, 0x0a, 0x14, 0x4c, 0x6f, 0x74,
225
0x73, 0x4f, 0x66, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
226
0x74, 0x12, 0x25, 0x0a, 0x0e, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x63, 0x6f,
227
0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x70, 0x72, 0x65, 0x76, 0x69,
228
0x6f, 0x75, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x43, 0x0a, 0x15, 0x4c, 0x6f, 0x74, 0x73,
229
0x4f, 0x66, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
230
0x65, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
231
0x52, 0x05, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
232
0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x32, 0xdd, 0x01,
233
0x0a, 0x0c, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5d,
234
0x0a, 0x08, 0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x12, 0x27, 0x2e, 0x67, 0x69, 0x74,
235
0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c,
236
0x2e, 0x76, 0x31, 0x2e, 0x53, 0x61, 0x79, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x71, 0x75,
237
0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70,
238
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x61, 0x79,
239
0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6e, 0x0a,
240
0x0d, 0x4c, 0x6f, 0x74, 0x73, 0x4f, 0x66, 0x52, 0x65, 0x70, 0x6c, 0x69, 0x65, 0x73, 0x12, 0x2c,
241
0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65,
242
0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x74, 0x73, 0x4f, 0x66, 0x52, 0x65,
243
0x70, 0x6c, 0x69, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d, 0x2e, 0x67,
244
0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,
245
0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x74, 0x73, 0x4f, 0x66, 0x52, 0x65, 0x70, 0x6c,
246
0x69, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x30, 0x01, 0x42, 0x6b, 0x0a,
247
0x23, 0x69, 0x6f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x70, 0x75, 0x62, 0x6c, 0x69,
248
0x63, 0x61, 0x70, 0x69, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61,
249
0x6c, 0x2e, 0x76, 0x31, 0x5a, 0x44, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d,
250
0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2d, 0x69, 0x6f, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f,
251
0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x70, 0x75, 0x62,
252
0x6c, 0x69, 0x63, 0x2d, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x6f, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72,
253
0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2f, 0x76, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
254
0x6f, 0x33,
255
}
256
257
var (
258
file_gitpod_experimental_v1_dummy_proto_rawDescOnce sync.Once
259
file_gitpod_experimental_v1_dummy_proto_rawDescData = file_gitpod_experimental_v1_dummy_proto_rawDesc
260
)
261
262
func file_gitpod_experimental_v1_dummy_proto_rawDescGZIP() []byte {
263
file_gitpod_experimental_v1_dummy_proto_rawDescOnce.Do(func() {
264
file_gitpod_experimental_v1_dummy_proto_rawDescData = protoimpl.X.CompressGZIP(file_gitpod_experimental_v1_dummy_proto_rawDescData)
265
})
266
return file_gitpod_experimental_v1_dummy_proto_rawDescData
267
}
268
269
var file_gitpod_experimental_v1_dummy_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
270
var file_gitpod_experimental_v1_dummy_proto_goTypes = []interface{}{
271
(*SayHelloRequest)(nil), // 0: gitpod.experimental.v1.SayHelloRequest
272
(*SayHelloResponse)(nil), // 1: gitpod.experimental.v1.SayHelloResponse
273
(*LotsOfRepliesRequest)(nil), // 2: gitpod.experimental.v1.LotsOfRepliesRequest
274
(*LotsOfRepliesResponse)(nil), // 3: gitpod.experimental.v1.LotsOfRepliesResponse
275
}
276
var file_gitpod_experimental_v1_dummy_proto_depIdxs = []int32{
277
0, // 0: gitpod.experimental.v1.HelloService.SayHello:input_type -> gitpod.experimental.v1.SayHelloRequest
278
2, // 1: gitpod.experimental.v1.HelloService.LotsOfReplies:input_type -> gitpod.experimental.v1.LotsOfRepliesRequest
279
1, // 2: gitpod.experimental.v1.HelloService.SayHello:output_type -> gitpod.experimental.v1.SayHelloResponse
280
3, // 3: gitpod.experimental.v1.HelloService.LotsOfReplies:output_type -> gitpod.experimental.v1.LotsOfRepliesResponse
281
2, // [2:4] is the sub-list for method output_type
282
0, // [0:2] is the sub-list for method input_type
283
0, // [0:0] is the sub-list for extension type_name
284
0, // [0:0] is the sub-list for extension extendee
285
0, // [0:0] is the sub-list for field type_name
286
}
287
288
func init() { file_gitpod_experimental_v1_dummy_proto_init() }
289
func file_gitpod_experimental_v1_dummy_proto_init() {
290
if File_gitpod_experimental_v1_dummy_proto != nil {
291
return
292
}
293
if !protoimpl.UnsafeEnabled {
294
file_gitpod_experimental_v1_dummy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
295
switch v := v.(*SayHelloRequest); i {
296
case 0:
297
return &v.state
298
case 1:
299
return &v.sizeCache
300
case 2:
301
return &v.unknownFields
302
default:
303
return nil
304
}
305
}
306
file_gitpod_experimental_v1_dummy_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
307
switch v := v.(*SayHelloResponse); i {
308
case 0:
309
return &v.state
310
case 1:
311
return &v.sizeCache
312
case 2:
313
return &v.unknownFields
314
default:
315
return nil
316
}
317
}
318
file_gitpod_experimental_v1_dummy_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
319
switch v := v.(*LotsOfRepliesRequest); i {
320
case 0:
321
return &v.state
322
case 1:
323
return &v.sizeCache
324
case 2:
325
return &v.unknownFields
326
default:
327
return nil
328
}
329
}
330
file_gitpod_experimental_v1_dummy_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
331
switch v := v.(*LotsOfRepliesResponse); i {
332
case 0:
333
return &v.state
334
case 1:
335
return &v.sizeCache
336
case 2:
337
return &v.unknownFields
338
default:
339
return nil
340
}
341
}
342
}
343
type x struct{}
344
out := protoimpl.TypeBuilder{
345
File: protoimpl.DescBuilder{
346
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
347
RawDescriptor: file_gitpod_experimental_v1_dummy_proto_rawDesc,
348
NumEnums: 0,
349
NumMessages: 4,
350
NumExtensions: 0,
351
NumServices: 1,
352
},
353
GoTypes: file_gitpod_experimental_v1_dummy_proto_goTypes,
354
DependencyIndexes: file_gitpod_experimental_v1_dummy_proto_depIdxs,
355
MessageInfos: file_gitpod_experimental_v1_dummy_proto_msgTypes,
356
}.Build()
357
File_gitpod_experimental_v1_dummy_proto = out.File
358
file_gitpod_experimental_v1_dummy_proto_rawDesc = nil
359
file_gitpod_experimental_v1_dummy_proto_goTypes = nil
360
file_gitpod_experimental_v1_dummy_proto_depIdxs = nil
361
}
362
363