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/teams.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/teams.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
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
17
reflect "reflect"
18
sync "sync"
19
)
20
21
const (
22
// Verify that this generated code is sufficiently up-to-date.
23
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
24
// Verify that runtime/protoimpl is sufficiently up-to-date.
25
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
26
)
27
28
type TeamRole int32
29
30
const (
31
// TEAM_ROLE_UNKNOWN is the unkwnon state.
32
TeamRole_TEAM_ROLE_UNSPECIFIED TeamRole = 0
33
// TEAM_ROLE_OWNER is the owner of the team.
34
// A team can have multiple owners, but there must always be at least one owner.
35
TeamRole_TEAM_ROLE_OWNER TeamRole = 1
36
// TEAM_ROLE_MEMBER is a regular member of a team.
37
TeamRole_TEAM_ROLE_MEMBER TeamRole = 2
38
)
39
40
// Enum value maps for TeamRole.
41
var (
42
TeamRole_name = map[int32]string{
43
0: "TEAM_ROLE_UNSPECIFIED",
44
1: "TEAM_ROLE_OWNER",
45
2: "TEAM_ROLE_MEMBER",
46
}
47
TeamRole_value = map[string]int32{
48
"TEAM_ROLE_UNSPECIFIED": 0,
49
"TEAM_ROLE_OWNER": 1,
50
"TEAM_ROLE_MEMBER": 2,
51
}
52
)
53
54
func (x TeamRole) Enum() *TeamRole {
55
p := new(TeamRole)
56
*p = x
57
return p
58
}
59
60
func (x TeamRole) String() string {
61
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
62
}
63
64
func (TeamRole) Descriptor() protoreflect.EnumDescriptor {
65
return file_gitpod_experimental_v1_teams_proto_enumTypes[0].Descriptor()
66
}
67
68
func (TeamRole) Type() protoreflect.EnumType {
69
return &file_gitpod_experimental_v1_teams_proto_enumTypes[0]
70
}
71
72
func (x TeamRole) Number() protoreflect.EnumNumber {
73
return protoreflect.EnumNumber(x)
74
}
75
76
// Deprecated: Use TeamRole.Descriptor instead.
77
func (TeamRole) EnumDescriptor() ([]byte, []int) {
78
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{0}
79
}
80
81
type Team struct {
82
state protoimpl.MessageState
83
sizeCache protoimpl.SizeCache
84
unknownFields protoimpl.UnknownFields
85
86
// id is a UUID of the Team
87
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
88
// name is the name of the Team
89
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
90
// slug is the slug of the Team
91
Slug string `protobuf:"bytes,3,opt,name=slug,proto3" json:"slug,omitempty"`
92
// members are the team members of this Team
93
Members []*TeamMember `protobuf:"bytes,4,rep,name=members,proto3" json:"members,omitempty"`
94
// team_invitation is the team invitation.
95
TeamInvitation *TeamInvitation `protobuf:"bytes,5,opt,name=team_invitation,json=teamInvitation,proto3" json:"team_invitation,omitempty"`
96
}
97
98
func (x *Team) Reset() {
99
*x = Team{}
100
if protoimpl.UnsafeEnabled {
101
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[0]
102
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
103
ms.StoreMessageInfo(mi)
104
}
105
}
106
107
func (x *Team) String() string {
108
return protoimpl.X.MessageStringOf(x)
109
}
110
111
func (*Team) ProtoMessage() {}
112
113
func (x *Team) ProtoReflect() protoreflect.Message {
114
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[0]
115
if protoimpl.UnsafeEnabled && x != nil {
116
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
117
if ms.LoadMessageInfo() == nil {
118
ms.StoreMessageInfo(mi)
119
}
120
return ms
121
}
122
return mi.MessageOf(x)
123
}
124
125
// Deprecated: Use Team.ProtoReflect.Descriptor instead.
126
func (*Team) Descriptor() ([]byte, []int) {
127
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{0}
128
}
129
130
func (x *Team) GetId() string {
131
if x != nil {
132
return x.Id
133
}
134
return ""
135
}
136
137
func (x *Team) GetName() string {
138
if x != nil {
139
return x.Name
140
}
141
return ""
142
}
143
144
func (x *Team) GetSlug() string {
145
if x != nil {
146
return x.Slug
147
}
148
return ""
149
}
150
151
func (x *Team) GetMembers() []*TeamMember {
152
if x != nil {
153
return x.Members
154
}
155
return nil
156
}
157
158
func (x *Team) GetTeamInvitation() *TeamInvitation {
159
if x != nil {
160
return x.TeamInvitation
161
}
162
return nil
163
}
164
165
type TeamMember struct {
166
state protoimpl.MessageState
167
sizeCache protoimpl.SizeCache
168
unknownFields protoimpl.UnknownFields
169
170
// user_id is the identifier of the user
171
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
172
// role is the role this member is assigned
173
Role TeamRole `protobuf:"varint,2,opt,name=role,proto3,enum=gitpod.experimental.v1.TeamRole" json:"role,omitempty"`
174
// member_since is the timestamp when the member joined the team
175
MemberSince *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=member_since,json=memberSince,proto3" json:"member_since,omitempty"`
176
// avatar_url is the URL for the TeamMember
177
AvatarUrl string `protobuf:"bytes,4,opt,name=avatar_url,json=avatarUrl,proto3" json:"avatar_url,omitempty"`
178
// full_name is the name of the TeamMember
179
FullName string `protobuf:"bytes,5,opt,name=full_name,json=fullName,proto3" json:"full_name,omitempty"`
180
// primary_email is the primary email of the TeamMember
181
PrimaryEmail string `protobuf:"bytes,6,opt,name=primary_email,json=primaryEmail,proto3" json:"primary_email,omitempty"`
182
// owned_by_organization indicates if the TeamMember is owned by the organization
183
OwnedByOrganization bool `protobuf:"varint,7,opt,name=owned_by_organization,json=ownedByOrganization,proto3" json:"owned_by_organization,omitempty"`
184
}
185
186
func (x *TeamMember) Reset() {
187
*x = TeamMember{}
188
if protoimpl.UnsafeEnabled {
189
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[1]
190
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
191
ms.StoreMessageInfo(mi)
192
}
193
}
194
195
func (x *TeamMember) String() string {
196
return protoimpl.X.MessageStringOf(x)
197
}
198
199
func (*TeamMember) ProtoMessage() {}
200
201
func (x *TeamMember) ProtoReflect() protoreflect.Message {
202
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[1]
203
if protoimpl.UnsafeEnabled && x != nil {
204
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
205
if ms.LoadMessageInfo() == nil {
206
ms.StoreMessageInfo(mi)
207
}
208
return ms
209
}
210
return mi.MessageOf(x)
211
}
212
213
// Deprecated: Use TeamMember.ProtoReflect.Descriptor instead.
214
func (*TeamMember) Descriptor() ([]byte, []int) {
215
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{1}
216
}
217
218
func (x *TeamMember) GetUserId() string {
219
if x != nil {
220
return x.UserId
221
}
222
return ""
223
}
224
225
func (x *TeamMember) GetRole() TeamRole {
226
if x != nil {
227
return x.Role
228
}
229
return TeamRole_TEAM_ROLE_UNSPECIFIED
230
}
231
232
func (x *TeamMember) GetMemberSince() *timestamppb.Timestamp {
233
if x != nil {
234
return x.MemberSince
235
}
236
return nil
237
}
238
239
func (x *TeamMember) GetAvatarUrl() string {
240
if x != nil {
241
return x.AvatarUrl
242
}
243
return ""
244
}
245
246
func (x *TeamMember) GetFullName() string {
247
if x != nil {
248
return x.FullName
249
}
250
return ""
251
}
252
253
func (x *TeamMember) GetPrimaryEmail() string {
254
if x != nil {
255
return x.PrimaryEmail
256
}
257
return ""
258
}
259
260
func (x *TeamMember) GetOwnedByOrganization() bool {
261
if x != nil {
262
return x.OwnedByOrganization
263
}
264
return false
265
}
266
267
type TeamInvitation struct {
268
state protoimpl.MessageState
269
sizeCache protoimpl.SizeCache
270
unknownFields protoimpl.UnknownFields
271
272
// id is the invitation ID.
273
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
274
}
275
276
func (x *TeamInvitation) Reset() {
277
*x = TeamInvitation{}
278
if protoimpl.UnsafeEnabled {
279
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[2]
280
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
281
ms.StoreMessageInfo(mi)
282
}
283
}
284
285
func (x *TeamInvitation) String() string {
286
return protoimpl.X.MessageStringOf(x)
287
}
288
289
func (*TeamInvitation) ProtoMessage() {}
290
291
func (x *TeamInvitation) ProtoReflect() protoreflect.Message {
292
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[2]
293
if protoimpl.UnsafeEnabled && x != nil {
294
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
295
if ms.LoadMessageInfo() == nil {
296
ms.StoreMessageInfo(mi)
297
}
298
return ms
299
}
300
return mi.MessageOf(x)
301
}
302
303
// Deprecated: Use TeamInvitation.ProtoReflect.Descriptor instead.
304
func (*TeamInvitation) Descriptor() ([]byte, []int) {
305
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{2}
306
}
307
308
func (x *TeamInvitation) GetId() string {
309
if x != nil {
310
return x.Id
311
}
312
return ""
313
}
314
315
type CreateTeamRequest struct {
316
state protoimpl.MessageState
317
sizeCache protoimpl.SizeCache
318
unknownFields protoimpl.UnknownFields
319
320
// name is the team name
321
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
322
}
323
324
func (x *CreateTeamRequest) Reset() {
325
*x = CreateTeamRequest{}
326
if protoimpl.UnsafeEnabled {
327
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[3]
328
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
329
ms.StoreMessageInfo(mi)
330
}
331
}
332
333
func (x *CreateTeamRequest) String() string {
334
return protoimpl.X.MessageStringOf(x)
335
}
336
337
func (*CreateTeamRequest) ProtoMessage() {}
338
339
func (x *CreateTeamRequest) ProtoReflect() protoreflect.Message {
340
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[3]
341
if protoimpl.UnsafeEnabled && x != nil {
342
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
343
if ms.LoadMessageInfo() == nil {
344
ms.StoreMessageInfo(mi)
345
}
346
return ms
347
}
348
return mi.MessageOf(x)
349
}
350
351
// Deprecated: Use CreateTeamRequest.ProtoReflect.Descriptor instead.
352
func (*CreateTeamRequest) Descriptor() ([]byte, []int) {
353
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{3}
354
}
355
356
func (x *CreateTeamRequest) GetName() string {
357
if x != nil {
358
return x.Name
359
}
360
return ""
361
}
362
363
type CreateTeamResponse struct {
364
state protoimpl.MessageState
365
sizeCache protoimpl.SizeCache
366
unknownFields protoimpl.UnknownFields
367
368
Team *Team `protobuf:"bytes,1,opt,name=team,proto3" json:"team,omitempty"`
369
}
370
371
func (x *CreateTeamResponse) Reset() {
372
*x = CreateTeamResponse{}
373
if protoimpl.UnsafeEnabled {
374
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[4]
375
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
376
ms.StoreMessageInfo(mi)
377
}
378
}
379
380
func (x *CreateTeamResponse) String() string {
381
return protoimpl.X.MessageStringOf(x)
382
}
383
384
func (*CreateTeamResponse) ProtoMessage() {}
385
386
func (x *CreateTeamResponse) ProtoReflect() protoreflect.Message {
387
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[4]
388
if protoimpl.UnsafeEnabled && x != nil {
389
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
390
if ms.LoadMessageInfo() == nil {
391
ms.StoreMessageInfo(mi)
392
}
393
return ms
394
}
395
return mi.MessageOf(x)
396
}
397
398
// Deprecated: Use CreateTeamResponse.ProtoReflect.Descriptor instead.
399
func (*CreateTeamResponse) Descriptor() ([]byte, []int) {
400
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{4}
401
}
402
403
func (x *CreateTeamResponse) GetTeam() *Team {
404
if x != nil {
405
return x.Team
406
}
407
return nil
408
}
409
410
type GetTeamRequest struct {
411
state protoimpl.MessageState
412
sizeCache protoimpl.SizeCache
413
unknownFields protoimpl.UnknownFields
414
415
// team_id is the unique identifier of the Team to retreive.
416
TeamId string `protobuf:"bytes,1,opt,name=team_id,json=teamId,proto3" json:"team_id,omitempty"`
417
}
418
419
func (x *GetTeamRequest) Reset() {
420
*x = GetTeamRequest{}
421
if protoimpl.UnsafeEnabled {
422
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[5]
423
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
424
ms.StoreMessageInfo(mi)
425
}
426
}
427
428
func (x *GetTeamRequest) String() string {
429
return protoimpl.X.MessageStringOf(x)
430
}
431
432
func (*GetTeamRequest) ProtoMessage() {}
433
434
func (x *GetTeamRequest) ProtoReflect() protoreflect.Message {
435
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[5]
436
if protoimpl.UnsafeEnabled && x != nil {
437
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
438
if ms.LoadMessageInfo() == nil {
439
ms.StoreMessageInfo(mi)
440
}
441
return ms
442
}
443
return mi.MessageOf(x)
444
}
445
446
// Deprecated: Use GetTeamRequest.ProtoReflect.Descriptor instead.
447
func (*GetTeamRequest) Descriptor() ([]byte, []int) {
448
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{5}
449
}
450
451
func (x *GetTeamRequest) GetTeamId() string {
452
if x != nil {
453
return x.TeamId
454
}
455
return ""
456
}
457
458
type GetTeamResponse struct {
459
state protoimpl.MessageState
460
sizeCache protoimpl.SizeCache
461
unknownFields protoimpl.UnknownFields
462
463
Team *Team `protobuf:"bytes,1,opt,name=team,proto3" json:"team,omitempty"`
464
}
465
466
func (x *GetTeamResponse) Reset() {
467
*x = GetTeamResponse{}
468
if protoimpl.UnsafeEnabled {
469
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[6]
470
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
471
ms.StoreMessageInfo(mi)
472
}
473
}
474
475
func (x *GetTeamResponse) String() string {
476
return protoimpl.X.MessageStringOf(x)
477
}
478
479
func (*GetTeamResponse) ProtoMessage() {}
480
481
func (x *GetTeamResponse) ProtoReflect() protoreflect.Message {
482
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[6]
483
if protoimpl.UnsafeEnabled && x != nil {
484
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
485
if ms.LoadMessageInfo() == nil {
486
ms.StoreMessageInfo(mi)
487
}
488
return ms
489
}
490
return mi.MessageOf(x)
491
}
492
493
// Deprecated: Use GetTeamResponse.ProtoReflect.Descriptor instead.
494
func (*GetTeamResponse) Descriptor() ([]byte, []int) {
495
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{6}
496
}
497
498
func (x *GetTeamResponse) GetTeam() *Team {
499
if x != nil {
500
return x.Team
501
}
502
return nil
503
}
504
505
type ListTeamsRequest struct {
506
state protoimpl.MessageState
507
sizeCache protoimpl.SizeCache
508
unknownFields protoimpl.UnknownFields
509
}
510
511
func (x *ListTeamsRequest) Reset() {
512
*x = ListTeamsRequest{}
513
if protoimpl.UnsafeEnabled {
514
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[7]
515
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
516
ms.StoreMessageInfo(mi)
517
}
518
}
519
520
func (x *ListTeamsRequest) String() string {
521
return protoimpl.X.MessageStringOf(x)
522
}
523
524
func (*ListTeamsRequest) ProtoMessage() {}
525
526
func (x *ListTeamsRequest) ProtoReflect() protoreflect.Message {
527
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[7]
528
if protoimpl.UnsafeEnabled && x != nil {
529
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
530
if ms.LoadMessageInfo() == nil {
531
ms.StoreMessageInfo(mi)
532
}
533
return ms
534
}
535
return mi.MessageOf(x)
536
}
537
538
// Deprecated: Use ListTeamsRequest.ProtoReflect.Descriptor instead.
539
func (*ListTeamsRequest) Descriptor() ([]byte, []int) {
540
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{7}
541
}
542
543
type ListTeamsResponse struct {
544
state protoimpl.MessageState
545
sizeCache protoimpl.SizeCache
546
unknownFields protoimpl.UnknownFields
547
548
Teams []*Team `protobuf:"bytes,1,rep,name=teams,proto3" json:"teams,omitempty"`
549
}
550
551
func (x *ListTeamsResponse) Reset() {
552
*x = ListTeamsResponse{}
553
if protoimpl.UnsafeEnabled {
554
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[8]
555
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
556
ms.StoreMessageInfo(mi)
557
}
558
}
559
560
func (x *ListTeamsResponse) String() string {
561
return protoimpl.X.MessageStringOf(x)
562
}
563
564
func (*ListTeamsResponse) ProtoMessage() {}
565
566
func (x *ListTeamsResponse) ProtoReflect() protoreflect.Message {
567
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[8]
568
if protoimpl.UnsafeEnabled && x != nil {
569
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
570
if ms.LoadMessageInfo() == nil {
571
ms.StoreMessageInfo(mi)
572
}
573
return ms
574
}
575
return mi.MessageOf(x)
576
}
577
578
// Deprecated: Use ListTeamsResponse.ProtoReflect.Descriptor instead.
579
func (*ListTeamsResponse) Descriptor() ([]byte, []int) {
580
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{8}
581
}
582
583
func (x *ListTeamsResponse) GetTeams() []*Team {
584
if x != nil {
585
return x.Teams
586
}
587
return nil
588
}
589
590
type DeleteTeamRequest struct {
591
state protoimpl.MessageState
592
sizeCache protoimpl.SizeCache
593
unknownFields protoimpl.UnknownFields
594
595
// team_id is the ID of the team to delete
596
TeamId string `protobuf:"bytes,1,opt,name=team_id,json=teamId,proto3" json:"team_id,omitempty"`
597
}
598
599
func (x *DeleteTeamRequest) Reset() {
600
*x = DeleteTeamRequest{}
601
if protoimpl.UnsafeEnabled {
602
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[9]
603
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
604
ms.StoreMessageInfo(mi)
605
}
606
}
607
608
func (x *DeleteTeamRequest) String() string {
609
return protoimpl.X.MessageStringOf(x)
610
}
611
612
func (*DeleteTeamRequest) ProtoMessage() {}
613
614
func (x *DeleteTeamRequest) ProtoReflect() protoreflect.Message {
615
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[9]
616
if protoimpl.UnsafeEnabled && x != nil {
617
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
618
if ms.LoadMessageInfo() == nil {
619
ms.StoreMessageInfo(mi)
620
}
621
return ms
622
}
623
return mi.MessageOf(x)
624
}
625
626
// Deprecated: Use DeleteTeamRequest.ProtoReflect.Descriptor instead.
627
func (*DeleteTeamRequest) Descriptor() ([]byte, []int) {
628
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{9}
629
}
630
631
func (x *DeleteTeamRequest) GetTeamId() string {
632
if x != nil {
633
return x.TeamId
634
}
635
return ""
636
}
637
638
type DeleteTeamResponse struct {
639
state protoimpl.MessageState
640
sizeCache protoimpl.SizeCache
641
unknownFields protoimpl.UnknownFields
642
}
643
644
func (x *DeleteTeamResponse) Reset() {
645
*x = DeleteTeamResponse{}
646
if protoimpl.UnsafeEnabled {
647
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[10]
648
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
649
ms.StoreMessageInfo(mi)
650
}
651
}
652
653
func (x *DeleteTeamResponse) String() string {
654
return protoimpl.X.MessageStringOf(x)
655
}
656
657
func (*DeleteTeamResponse) ProtoMessage() {}
658
659
func (x *DeleteTeamResponse) ProtoReflect() protoreflect.Message {
660
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[10]
661
if protoimpl.UnsafeEnabled && x != nil {
662
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
663
if ms.LoadMessageInfo() == nil {
664
ms.StoreMessageInfo(mi)
665
}
666
return ms
667
}
668
return mi.MessageOf(x)
669
}
670
671
// Deprecated: Use DeleteTeamResponse.ProtoReflect.Descriptor instead.
672
func (*DeleteTeamResponse) Descriptor() ([]byte, []int) {
673
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{10}
674
}
675
676
type GetTeamInvitationRequest struct {
677
state protoimpl.MessageState
678
sizeCache protoimpl.SizeCache
679
unknownFields protoimpl.UnknownFields
680
681
TeamId string `protobuf:"bytes,1,opt,name=team_id,json=teamId,proto3" json:"team_id,omitempty"`
682
}
683
684
func (x *GetTeamInvitationRequest) Reset() {
685
*x = GetTeamInvitationRequest{}
686
if protoimpl.UnsafeEnabled {
687
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[11]
688
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
689
ms.StoreMessageInfo(mi)
690
}
691
}
692
693
func (x *GetTeamInvitationRequest) String() string {
694
return protoimpl.X.MessageStringOf(x)
695
}
696
697
func (*GetTeamInvitationRequest) ProtoMessage() {}
698
699
func (x *GetTeamInvitationRequest) ProtoReflect() protoreflect.Message {
700
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[11]
701
if protoimpl.UnsafeEnabled && x != nil {
702
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
703
if ms.LoadMessageInfo() == nil {
704
ms.StoreMessageInfo(mi)
705
}
706
return ms
707
}
708
return mi.MessageOf(x)
709
}
710
711
// Deprecated: Use GetTeamInvitationRequest.ProtoReflect.Descriptor instead.
712
func (*GetTeamInvitationRequest) Descriptor() ([]byte, []int) {
713
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{11}
714
}
715
716
func (x *GetTeamInvitationRequest) GetTeamId() string {
717
if x != nil {
718
return x.TeamId
719
}
720
return ""
721
}
722
723
type GetTeamInvitationResponse struct {
724
state protoimpl.MessageState
725
sizeCache protoimpl.SizeCache
726
unknownFields protoimpl.UnknownFields
727
728
// team_invitation is the invitation for the team.
729
TeamInvitation *TeamInvitation `protobuf:"bytes,1,opt,name=team_invitation,json=teamInvitation,proto3" json:"team_invitation,omitempty"`
730
}
731
732
func (x *GetTeamInvitationResponse) Reset() {
733
*x = GetTeamInvitationResponse{}
734
if protoimpl.UnsafeEnabled {
735
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[12]
736
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
737
ms.StoreMessageInfo(mi)
738
}
739
}
740
741
func (x *GetTeamInvitationResponse) String() string {
742
return protoimpl.X.MessageStringOf(x)
743
}
744
745
func (*GetTeamInvitationResponse) ProtoMessage() {}
746
747
func (x *GetTeamInvitationResponse) ProtoReflect() protoreflect.Message {
748
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[12]
749
if protoimpl.UnsafeEnabled && x != nil {
750
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
751
if ms.LoadMessageInfo() == nil {
752
ms.StoreMessageInfo(mi)
753
}
754
return ms
755
}
756
return mi.MessageOf(x)
757
}
758
759
// Deprecated: Use GetTeamInvitationResponse.ProtoReflect.Descriptor instead.
760
func (*GetTeamInvitationResponse) Descriptor() ([]byte, []int) {
761
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{12}
762
}
763
764
func (x *GetTeamInvitationResponse) GetTeamInvitation() *TeamInvitation {
765
if x != nil {
766
return x.TeamInvitation
767
}
768
return nil
769
}
770
771
type JoinTeamRequest struct {
772
state protoimpl.MessageState
773
sizeCache protoimpl.SizeCache
774
unknownFields protoimpl.UnknownFields
775
776
// invitation_id is the invitation ID for a Team
777
InvitationId string `protobuf:"bytes,1,opt,name=invitation_id,json=invitationId,proto3" json:"invitation_id,omitempty"`
778
}
779
780
func (x *JoinTeamRequest) Reset() {
781
*x = JoinTeamRequest{}
782
if protoimpl.UnsafeEnabled {
783
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[13]
784
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
785
ms.StoreMessageInfo(mi)
786
}
787
}
788
789
func (x *JoinTeamRequest) String() string {
790
return protoimpl.X.MessageStringOf(x)
791
}
792
793
func (*JoinTeamRequest) ProtoMessage() {}
794
795
func (x *JoinTeamRequest) ProtoReflect() protoreflect.Message {
796
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[13]
797
if protoimpl.UnsafeEnabled && x != nil {
798
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
799
if ms.LoadMessageInfo() == nil {
800
ms.StoreMessageInfo(mi)
801
}
802
return ms
803
}
804
return mi.MessageOf(x)
805
}
806
807
// Deprecated: Use JoinTeamRequest.ProtoReflect.Descriptor instead.
808
func (*JoinTeamRequest) Descriptor() ([]byte, []int) {
809
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{13}
810
}
811
812
func (x *JoinTeamRequest) GetInvitationId() string {
813
if x != nil {
814
return x.InvitationId
815
}
816
return ""
817
}
818
819
type JoinTeamResponse struct {
820
state protoimpl.MessageState
821
sizeCache protoimpl.SizeCache
822
unknownFields protoimpl.UnknownFields
823
824
// team is the team the user has just joined
825
Team *Team `protobuf:"bytes,1,opt,name=team,proto3" json:"team,omitempty"`
826
}
827
828
func (x *JoinTeamResponse) Reset() {
829
*x = JoinTeamResponse{}
830
if protoimpl.UnsafeEnabled {
831
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[14]
832
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
833
ms.StoreMessageInfo(mi)
834
}
835
}
836
837
func (x *JoinTeamResponse) String() string {
838
return protoimpl.X.MessageStringOf(x)
839
}
840
841
func (*JoinTeamResponse) ProtoMessage() {}
842
843
func (x *JoinTeamResponse) ProtoReflect() protoreflect.Message {
844
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[14]
845
if protoimpl.UnsafeEnabled && x != nil {
846
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
847
if ms.LoadMessageInfo() == nil {
848
ms.StoreMessageInfo(mi)
849
}
850
return ms
851
}
852
return mi.MessageOf(x)
853
}
854
855
// Deprecated: Use JoinTeamResponse.ProtoReflect.Descriptor instead.
856
func (*JoinTeamResponse) Descriptor() ([]byte, []int) {
857
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{14}
858
}
859
860
func (x *JoinTeamResponse) GetTeam() *Team {
861
if x != nil {
862
return x.Team
863
}
864
return nil
865
}
866
867
type ResetTeamInvitationRequest struct {
868
state protoimpl.MessageState
869
sizeCache protoimpl.SizeCache
870
unknownFields protoimpl.UnknownFields
871
872
TeamId string `protobuf:"bytes,1,opt,name=team_id,json=teamId,proto3" json:"team_id,omitempty"`
873
}
874
875
func (x *ResetTeamInvitationRequest) Reset() {
876
*x = ResetTeamInvitationRequest{}
877
if protoimpl.UnsafeEnabled {
878
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[15]
879
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
880
ms.StoreMessageInfo(mi)
881
}
882
}
883
884
func (x *ResetTeamInvitationRequest) String() string {
885
return protoimpl.X.MessageStringOf(x)
886
}
887
888
func (*ResetTeamInvitationRequest) ProtoMessage() {}
889
890
func (x *ResetTeamInvitationRequest) ProtoReflect() protoreflect.Message {
891
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[15]
892
if protoimpl.UnsafeEnabled && x != nil {
893
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
894
if ms.LoadMessageInfo() == nil {
895
ms.StoreMessageInfo(mi)
896
}
897
return ms
898
}
899
return mi.MessageOf(x)
900
}
901
902
// Deprecated: Use ResetTeamInvitationRequest.ProtoReflect.Descriptor instead.
903
func (*ResetTeamInvitationRequest) Descriptor() ([]byte, []int) {
904
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{15}
905
}
906
907
func (x *ResetTeamInvitationRequest) GetTeamId() string {
908
if x != nil {
909
return x.TeamId
910
}
911
return ""
912
}
913
914
type ResetTeamInvitationResponse struct {
915
state protoimpl.MessageState
916
sizeCache protoimpl.SizeCache
917
unknownFields protoimpl.UnknownFields
918
919
// team_invitation is the new invitation for the team.
920
TeamInvitation *TeamInvitation `protobuf:"bytes,1,opt,name=team_invitation,json=teamInvitation,proto3" json:"team_invitation,omitempty"`
921
}
922
923
func (x *ResetTeamInvitationResponse) Reset() {
924
*x = ResetTeamInvitationResponse{}
925
if protoimpl.UnsafeEnabled {
926
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[16]
927
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
928
ms.StoreMessageInfo(mi)
929
}
930
}
931
932
func (x *ResetTeamInvitationResponse) String() string {
933
return protoimpl.X.MessageStringOf(x)
934
}
935
936
func (*ResetTeamInvitationResponse) ProtoMessage() {}
937
938
func (x *ResetTeamInvitationResponse) ProtoReflect() protoreflect.Message {
939
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[16]
940
if protoimpl.UnsafeEnabled && x != nil {
941
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
942
if ms.LoadMessageInfo() == nil {
943
ms.StoreMessageInfo(mi)
944
}
945
return ms
946
}
947
return mi.MessageOf(x)
948
}
949
950
// Deprecated: Use ResetTeamInvitationResponse.ProtoReflect.Descriptor instead.
951
func (*ResetTeamInvitationResponse) Descriptor() ([]byte, []int) {
952
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{16}
953
}
954
955
func (x *ResetTeamInvitationResponse) GetTeamInvitation() *TeamInvitation {
956
if x != nil {
957
return x.TeamInvitation
958
}
959
return nil
960
}
961
962
type ListTeamMembersRequest struct {
963
state protoimpl.MessageState
964
sizeCache protoimpl.SizeCache
965
unknownFields protoimpl.UnknownFields
966
967
// team_id is the ID of the team that contains the members to list
968
TeamId string `protobuf:"bytes,1,opt,name=team_id,json=teamId,proto3" json:"team_id,omitempty"`
969
}
970
971
func (x *ListTeamMembersRequest) Reset() {
972
*x = ListTeamMembersRequest{}
973
if protoimpl.UnsafeEnabled {
974
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[17]
975
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
976
ms.StoreMessageInfo(mi)
977
}
978
}
979
980
func (x *ListTeamMembersRequest) String() string {
981
return protoimpl.X.MessageStringOf(x)
982
}
983
984
func (*ListTeamMembersRequest) ProtoMessage() {}
985
986
func (x *ListTeamMembersRequest) ProtoReflect() protoreflect.Message {
987
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[17]
988
if protoimpl.UnsafeEnabled && x != nil {
989
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
990
if ms.LoadMessageInfo() == nil {
991
ms.StoreMessageInfo(mi)
992
}
993
return ms
994
}
995
return mi.MessageOf(x)
996
}
997
998
// Deprecated: Use ListTeamMembersRequest.ProtoReflect.Descriptor instead.
999
func (*ListTeamMembersRequest) Descriptor() ([]byte, []int) {
1000
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{17}
1001
}
1002
1003
func (x *ListTeamMembersRequest) GetTeamId() string {
1004
if x != nil {
1005
return x.TeamId
1006
}
1007
return ""
1008
}
1009
1010
type ListTeamMembersResponse struct {
1011
state protoimpl.MessageState
1012
sizeCache protoimpl.SizeCache
1013
unknownFields protoimpl.UnknownFields
1014
1015
// members are the team members of this Team
1016
Members []*TeamMember `protobuf:"bytes,1,rep,name=members,proto3" json:"members,omitempty"`
1017
}
1018
1019
func (x *ListTeamMembersResponse) Reset() {
1020
*x = ListTeamMembersResponse{}
1021
if protoimpl.UnsafeEnabled {
1022
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[18]
1023
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1024
ms.StoreMessageInfo(mi)
1025
}
1026
}
1027
1028
func (x *ListTeamMembersResponse) String() string {
1029
return protoimpl.X.MessageStringOf(x)
1030
}
1031
1032
func (*ListTeamMembersResponse) ProtoMessage() {}
1033
1034
func (x *ListTeamMembersResponse) ProtoReflect() protoreflect.Message {
1035
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[18]
1036
if protoimpl.UnsafeEnabled && x != nil {
1037
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1038
if ms.LoadMessageInfo() == nil {
1039
ms.StoreMessageInfo(mi)
1040
}
1041
return ms
1042
}
1043
return mi.MessageOf(x)
1044
}
1045
1046
// Deprecated: Use ListTeamMembersResponse.ProtoReflect.Descriptor instead.
1047
func (*ListTeamMembersResponse) Descriptor() ([]byte, []int) {
1048
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{18}
1049
}
1050
1051
func (x *ListTeamMembersResponse) GetMembers() []*TeamMember {
1052
if x != nil {
1053
return x.Members
1054
}
1055
return nil
1056
}
1057
1058
type UpdateTeamMemberRequest struct {
1059
state protoimpl.MessageState
1060
sizeCache protoimpl.SizeCache
1061
unknownFields protoimpl.UnknownFields
1062
1063
// team_id is the ID of the team in which the role is to be updated
1064
TeamId string `protobuf:"bytes,1,opt,name=team_id,json=teamId,proto3" json:"team_id,omitempty"`
1065
// team_member is the team member being updated.
1066
TeamMember *TeamMember `protobuf:"bytes,2,opt,name=team_member,json=teamMember,proto3" json:"team_member,omitempty"`
1067
}
1068
1069
func (x *UpdateTeamMemberRequest) Reset() {
1070
*x = UpdateTeamMemberRequest{}
1071
if protoimpl.UnsafeEnabled {
1072
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[19]
1073
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1074
ms.StoreMessageInfo(mi)
1075
}
1076
}
1077
1078
func (x *UpdateTeamMemberRequest) String() string {
1079
return protoimpl.X.MessageStringOf(x)
1080
}
1081
1082
func (*UpdateTeamMemberRequest) ProtoMessage() {}
1083
1084
func (x *UpdateTeamMemberRequest) ProtoReflect() protoreflect.Message {
1085
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[19]
1086
if protoimpl.UnsafeEnabled && x != nil {
1087
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1088
if ms.LoadMessageInfo() == nil {
1089
ms.StoreMessageInfo(mi)
1090
}
1091
return ms
1092
}
1093
return mi.MessageOf(x)
1094
}
1095
1096
// Deprecated: Use UpdateTeamMemberRequest.ProtoReflect.Descriptor instead.
1097
func (*UpdateTeamMemberRequest) Descriptor() ([]byte, []int) {
1098
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{19}
1099
}
1100
1101
func (x *UpdateTeamMemberRequest) GetTeamId() string {
1102
if x != nil {
1103
return x.TeamId
1104
}
1105
return ""
1106
}
1107
1108
func (x *UpdateTeamMemberRequest) GetTeamMember() *TeamMember {
1109
if x != nil {
1110
return x.TeamMember
1111
}
1112
return nil
1113
}
1114
1115
type UpdateTeamMemberResponse struct {
1116
state protoimpl.MessageState
1117
sizeCache protoimpl.SizeCache
1118
unknownFields protoimpl.UnknownFields
1119
1120
TeamMember *TeamMember `protobuf:"bytes,2,opt,name=team_member,json=teamMember,proto3" json:"team_member,omitempty"`
1121
}
1122
1123
func (x *UpdateTeamMemberResponse) Reset() {
1124
*x = UpdateTeamMemberResponse{}
1125
if protoimpl.UnsafeEnabled {
1126
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[20]
1127
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1128
ms.StoreMessageInfo(mi)
1129
}
1130
}
1131
1132
func (x *UpdateTeamMemberResponse) String() string {
1133
return protoimpl.X.MessageStringOf(x)
1134
}
1135
1136
func (*UpdateTeamMemberResponse) ProtoMessage() {}
1137
1138
func (x *UpdateTeamMemberResponse) ProtoReflect() protoreflect.Message {
1139
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[20]
1140
if protoimpl.UnsafeEnabled && x != nil {
1141
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1142
if ms.LoadMessageInfo() == nil {
1143
ms.StoreMessageInfo(mi)
1144
}
1145
return ms
1146
}
1147
return mi.MessageOf(x)
1148
}
1149
1150
// Deprecated: Use UpdateTeamMemberResponse.ProtoReflect.Descriptor instead.
1151
func (*UpdateTeamMemberResponse) Descriptor() ([]byte, []int) {
1152
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{20}
1153
}
1154
1155
func (x *UpdateTeamMemberResponse) GetTeamMember() *TeamMember {
1156
if x != nil {
1157
return x.TeamMember
1158
}
1159
return nil
1160
}
1161
1162
type DeleteTeamMemberRequest struct {
1163
state protoimpl.MessageState
1164
sizeCache protoimpl.SizeCache
1165
unknownFields protoimpl.UnknownFields
1166
1167
// team_id is the ID of the team in which a member should be deleted.
1168
TeamId string `protobuf:"bytes,1,opt,name=team_id,json=teamId,proto3" json:"team_id,omitempty"`
1169
// team_member_id is the ID of the TeamMember that should be deleted from the team.
1170
TeamMemberId string `protobuf:"bytes,2,opt,name=team_member_id,json=teamMemberId,proto3" json:"team_member_id,omitempty"`
1171
}
1172
1173
func (x *DeleteTeamMemberRequest) Reset() {
1174
*x = DeleteTeamMemberRequest{}
1175
if protoimpl.UnsafeEnabled {
1176
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[21]
1177
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1178
ms.StoreMessageInfo(mi)
1179
}
1180
}
1181
1182
func (x *DeleteTeamMemberRequest) String() string {
1183
return protoimpl.X.MessageStringOf(x)
1184
}
1185
1186
func (*DeleteTeamMemberRequest) ProtoMessage() {}
1187
1188
func (x *DeleteTeamMemberRequest) ProtoReflect() protoreflect.Message {
1189
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[21]
1190
if protoimpl.UnsafeEnabled && x != nil {
1191
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1192
if ms.LoadMessageInfo() == nil {
1193
ms.StoreMessageInfo(mi)
1194
}
1195
return ms
1196
}
1197
return mi.MessageOf(x)
1198
}
1199
1200
// Deprecated: Use DeleteTeamMemberRequest.ProtoReflect.Descriptor instead.
1201
func (*DeleteTeamMemberRequest) Descriptor() ([]byte, []int) {
1202
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{21}
1203
}
1204
1205
func (x *DeleteTeamMemberRequest) GetTeamId() string {
1206
if x != nil {
1207
return x.TeamId
1208
}
1209
return ""
1210
}
1211
1212
func (x *DeleteTeamMemberRequest) GetTeamMemberId() string {
1213
if x != nil {
1214
return x.TeamMemberId
1215
}
1216
return ""
1217
}
1218
1219
type DeleteTeamMemberResponse struct {
1220
state protoimpl.MessageState
1221
sizeCache protoimpl.SizeCache
1222
unknownFields protoimpl.UnknownFields
1223
}
1224
1225
func (x *DeleteTeamMemberResponse) Reset() {
1226
*x = DeleteTeamMemberResponse{}
1227
if protoimpl.UnsafeEnabled {
1228
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[22]
1229
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1230
ms.StoreMessageInfo(mi)
1231
}
1232
}
1233
1234
func (x *DeleteTeamMemberResponse) String() string {
1235
return protoimpl.X.MessageStringOf(x)
1236
}
1237
1238
func (*DeleteTeamMemberResponse) ProtoMessage() {}
1239
1240
func (x *DeleteTeamMemberResponse) ProtoReflect() protoreflect.Message {
1241
mi := &file_gitpod_experimental_v1_teams_proto_msgTypes[22]
1242
if protoimpl.UnsafeEnabled && x != nil {
1243
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1244
if ms.LoadMessageInfo() == nil {
1245
ms.StoreMessageInfo(mi)
1246
}
1247
return ms
1248
}
1249
return mi.MessageOf(x)
1250
}
1251
1252
// Deprecated: Use DeleteTeamMemberResponse.ProtoReflect.Descriptor instead.
1253
func (*DeleteTeamMemberResponse) Descriptor() ([]byte, []int) {
1254
return file_gitpod_experimental_v1_teams_proto_rawDescGZIP(), []int{22}
1255
}
1256
1257
var File_gitpod_experimental_v1_teams_proto protoreflect.FileDescriptor
1258
1259
var file_gitpod_experimental_v1_teams_proto_rawDesc = []byte{
1260
0x0a, 0x22, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d,
1261
0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2f, 0x76, 0x31, 0x2f, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x2e, 0x70,
1262
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x16, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70,
1263
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x1a, 0x1f, 0x67, 0x6f,
1264
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69,
1265
0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xcd, 0x01,
1266
0x0a, 0x04, 0x54, 0x65, 0x61, 0x6d, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
1267
0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
1268
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x6c,
1269
0x75, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x6c, 0x75, 0x67, 0x12, 0x3c,
1270
0x0a, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32,
1271
0x22, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d,
1272
0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d,
1273
0x62, 0x65, 0x72, 0x52, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x12, 0x4f, 0x0a, 0x0f,
1274
0x74, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18,
1275
0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65,
1276
0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x54,
1277
0x65, 0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x74,
1278
0x65, 0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xaf, 0x02,
1279
0x0a, 0x0a, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07,
1280
0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75,
1281
0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x34, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x02, 0x20,
1282
0x01, 0x28, 0x0e, 0x32, 0x20, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70,
1283
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x61,
1284
0x6d, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x3d, 0x0a, 0x0c, 0x6d,
1285
0x65, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x73, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
1286
0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
1287
0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x6d,
1288
0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x76,
1289
0x61, 0x74, 0x61, 0x72, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
1290
0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x75, 0x6c,
1291
0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x75,
1292
0x6c, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72,
1293
0x79, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x70,
1294
0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x32, 0x0a, 0x15, 0x6f,
1295
0x77, 0x6e, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
1296
0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x6f, 0x77, 0x6e, 0x65,
1297
0x64, 0x42, 0x79, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
1298
0x20, 0x0a, 0x0e, 0x54, 0x65, 0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f,
1299
0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
1300
0x64, 0x22, 0x27, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x52,
1301
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
1302
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x46, 0x0a, 0x12, 0x43, 0x72,
1303
0x65, 0x61, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
1304
0x12, 0x30, 0x0a, 0x04, 0x74, 0x65, 0x61, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c,
1305
0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65,
1306
0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x04, 0x74, 0x65,
1307
0x61, 0x6d, 0x22, 0x29, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71,
1308
0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x64, 0x18,
1309
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x22, 0x43, 0x0a,
1310
0x0f, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
1311
0x12, 0x30, 0x0a, 0x04, 0x74, 0x65, 0x61, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c,
1312
0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65,
1313
0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x04, 0x74, 0x65,
1314
0x61, 0x6d, 0x22, 0x12, 0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52,
1315
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x47, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x65,
1316
0x61, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x05, 0x74,
1317
0x65, 0x61, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x69, 0x74,
1318
0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c,
1319
0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x05, 0x74, 0x65, 0x61, 0x6d, 0x73, 0x22,
1320
0x2c, 0x0a, 0x11, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71,
1321
0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x64, 0x18,
1322
0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x22, 0x14, 0x0a,
1323
0x12, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f,
1324
0x6e, 0x73, 0x65, 0x22, 0x33, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x49, 0x6e,
1325
0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
1326
0x17, 0x0a, 0x07, 0x74, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
1327
0x52, 0x06, 0x74, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x22, 0x6c, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x54,
1328
0x65, 0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73,
1329
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x0f, 0x74, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x6e,
1330
0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26,
1331
0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65,
1332
0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69,
1333
0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x74, 0x65, 0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69,
1334
0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x36, 0x0a, 0x0f, 0x4a, 0x6f, 0x69, 0x6e, 0x54, 0x65,
1335
0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x6e, 0x76,
1336
0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
1337
0x52, 0x0c, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x44,
1338
0x0a, 0x10, 0x4a, 0x6f, 0x69, 0x6e, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
1339
0x73, 0x65, 0x12, 0x30, 0x0a, 0x04, 0x74, 0x65, 0x61, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
1340
0x32, 0x1c, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69,
1341
0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x04,
1342
0x74, 0x65, 0x61, 0x6d, 0x22, 0x35, 0x0a, 0x1a, 0x52, 0x65, 0x73, 0x65, 0x74, 0x54, 0x65, 0x61,
1343
0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
1344
0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
1345
0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x22, 0x6e, 0x0a, 0x1b, 0x52,
1346
0x65, 0x73, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69,
1347
0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4f, 0x0a, 0x0f, 0x74, 0x65,
1348
0x61, 0x6d, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20,
1349
0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70,
1350
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x61,
1351
0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x74, 0x65, 0x61,
1352
0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x31, 0x0a, 0x16, 0x4c,
1353
0x69, 0x73, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x52, 0x65,
1354
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x64,
1355
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x22, 0x57,
1356
0x0a, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
1357
0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c, 0x0a, 0x07, 0x6d, 0x65, 0x6d,
1358
0x62, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x69, 0x74,
1359
0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c,
1360
0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x07,
1361
0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x22, 0x77, 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74,
1362
0x65, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
1363
0x73, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
1364
0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x61, 0x6d, 0x49, 0x64, 0x12, 0x43, 0x0a, 0x0b, 0x74,
1365
0x65, 0x61, 0x6d, 0x5f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
1366
0x32, 0x22, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69,
1367
0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65,
1368
0x6d, 0x62, 0x65, 0x72, 0x52, 0x0a, 0x74, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
1369
0x22, 0x5f, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65,
1370
0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x43, 0x0a, 0x0b,
1371
0x74, 0x65, 0x61, 0x6d, 0x5f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28,
1372
0x0b, 0x32, 0x22, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72,
1373
0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x4d,
1374
0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x0a, 0x74, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65,
1375
0x72, 0x22, 0x58, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x4d,
1376
0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x07,
1377
0x74, 0x65, 0x61, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74,
1378
0x65, 0x61, 0x6d, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x74, 0x65, 0x61, 0x6d, 0x5f, 0x6d, 0x65,
1379
0x6d, 0x62, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x74,
1380
0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x49, 0x64, 0x22, 0x1a, 0x0a, 0x18, 0x44,
1381
0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52,
1382
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2a, 0x50, 0x0a, 0x08, 0x54, 0x65, 0x61, 0x6d, 0x52,
1383
0x6f, 0x6c, 0x65, 0x12, 0x19, 0x0a, 0x15, 0x54, 0x45, 0x41, 0x4d, 0x5f, 0x52, 0x4f, 0x4c, 0x45,
1384
0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x13,
1385
0x0a, 0x0f, 0x54, 0x45, 0x41, 0x4d, 0x5f, 0x52, 0x4f, 0x4c, 0x45, 0x5f, 0x4f, 0x57, 0x4e, 0x45,
1386
0x52, 0x10, 0x01, 0x12, 0x14, 0x0a, 0x10, 0x54, 0x45, 0x41, 0x4d, 0x5f, 0x52, 0x4f, 0x4c, 0x45,
1387
0x5f, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x10, 0x02, 0x32, 0xe6, 0x08, 0x0a, 0x0c, 0x54, 0x65,
1388
0x61, 0x6d, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x65, 0x0a, 0x0a, 0x43, 0x72,
1389
0x65, 0x61, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x12, 0x29, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f,
1390
0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76,
1391
0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75,
1392
0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70,
1393
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65,
1394
0x61, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
1395
0x00, 0x12, 0x5c, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x12, 0x26, 0x2e, 0x67,
1396
0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,
1397
0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71,
1398
0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78,
1399
0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65,
1400
0x74, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12,
1401
0x62, 0x0a, 0x09, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x12, 0x28, 0x2e, 0x67,
1402
0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,
1403
0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52,
1404
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,
1405
0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e,
1406
0x4c, 0x69, 0x73, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
1407
0x65, 0x22, 0x00, 0x12, 0x65, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61,
1408
0x6d, 0x12, 0x29, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72,
1409
0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,
1410
0x65, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2a, 0x2e, 0x67,
1411
0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,
1412
0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d,
1413
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7a, 0x0a, 0x11, 0x47, 0x65,
1414
0x74, 0x54, 0x65, 0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
1415
0x30, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d,
1416
0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x65, 0x61, 0x6d,
1417
0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
1418
0x74, 0x1a, 0x31, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72,
1419
0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x54, 0x65,
1420
0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70,
1421
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5f, 0x0a, 0x08, 0x4a, 0x6f, 0x69, 0x6e, 0x54, 0x65,
1422
0x61, 0x6d, 0x12, 0x27, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65,
1423
0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x4a, 0x6f, 0x69, 0x6e,
1424
0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x28, 0x2e, 0x67, 0x69,
1425
0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61,
1426
0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x4a, 0x6f, 0x69, 0x6e, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73,
1427
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x80, 0x01, 0x0a, 0x13, 0x52, 0x65, 0x73, 0x65,
1428
0x74, 0x54, 0x65, 0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
1429
0x32, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d,
1430
0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x65, 0x74, 0x54, 0x65,
1431
0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75,
1432
0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70,
1433
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x73,
1434
0x65, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
1435
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x74, 0x0a, 0x0f, 0x4c, 0x69,
1436
0x73, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x12, 0x2e, 0x2e,
1437
0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e,
1438
0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x4d,
1439
0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e,
1440
0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e,
1441
0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x65, 0x61, 0x6d, 0x4d,
1442
0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
1443
0x12, 0x77, 0x0a, 0x10, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65,
1444
0x6d, 0x62, 0x65, 0x72, 0x12, 0x2f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78,
1445
0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70,
1446
0x64, 0x61, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65,
1447
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65,
1448
0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x55,
1449
0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52,
1450
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x77, 0x0a, 0x10, 0x44, 0x65, 0x6c,
1451
0x65, 0x74, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x2f, 0x2e,
1452
0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e,
1453
0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65, 0x61,
1454
0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30,
1455
0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65,
1456
0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x54, 0x65,
1457
0x61, 0x6d, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
1458
0x22, 0x00, 0x42, 0x6b, 0x0a, 0x23, 0x69, 0x6f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,
1459
0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x61, 0x70, 0x69, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69,
1460
0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x5a, 0x44, 0x67, 0x69, 0x74, 0x68, 0x75,
1461
0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2d, 0x69, 0x6f, 0x2f,
1462
0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74,
1463
0x73, 0x2f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x2d, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x6f, 0x2f,
1464
0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2f, 0x76, 0x31, 0x62,
1465
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
1466
}
1467
1468
var (
1469
file_gitpod_experimental_v1_teams_proto_rawDescOnce sync.Once
1470
file_gitpod_experimental_v1_teams_proto_rawDescData = file_gitpod_experimental_v1_teams_proto_rawDesc
1471
)
1472
1473
func file_gitpod_experimental_v1_teams_proto_rawDescGZIP() []byte {
1474
file_gitpod_experimental_v1_teams_proto_rawDescOnce.Do(func() {
1475
file_gitpod_experimental_v1_teams_proto_rawDescData = protoimpl.X.CompressGZIP(file_gitpod_experimental_v1_teams_proto_rawDescData)
1476
})
1477
return file_gitpod_experimental_v1_teams_proto_rawDescData
1478
}
1479
1480
var file_gitpod_experimental_v1_teams_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
1481
var file_gitpod_experimental_v1_teams_proto_msgTypes = make([]protoimpl.MessageInfo, 23)
1482
var file_gitpod_experimental_v1_teams_proto_goTypes = []interface{}{
1483
(TeamRole)(0), // 0: gitpod.experimental.v1.TeamRole
1484
(*Team)(nil), // 1: gitpod.experimental.v1.Team
1485
(*TeamMember)(nil), // 2: gitpod.experimental.v1.TeamMember
1486
(*TeamInvitation)(nil), // 3: gitpod.experimental.v1.TeamInvitation
1487
(*CreateTeamRequest)(nil), // 4: gitpod.experimental.v1.CreateTeamRequest
1488
(*CreateTeamResponse)(nil), // 5: gitpod.experimental.v1.CreateTeamResponse
1489
(*GetTeamRequest)(nil), // 6: gitpod.experimental.v1.GetTeamRequest
1490
(*GetTeamResponse)(nil), // 7: gitpod.experimental.v1.GetTeamResponse
1491
(*ListTeamsRequest)(nil), // 8: gitpod.experimental.v1.ListTeamsRequest
1492
(*ListTeamsResponse)(nil), // 9: gitpod.experimental.v1.ListTeamsResponse
1493
(*DeleteTeamRequest)(nil), // 10: gitpod.experimental.v1.DeleteTeamRequest
1494
(*DeleteTeamResponse)(nil), // 11: gitpod.experimental.v1.DeleteTeamResponse
1495
(*GetTeamInvitationRequest)(nil), // 12: gitpod.experimental.v1.GetTeamInvitationRequest
1496
(*GetTeamInvitationResponse)(nil), // 13: gitpod.experimental.v1.GetTeamInvitationResponse
1497
(*JoinTeamRequest)(nil), // 14: gitpod.experimental.v1.JoinTeamRequest
1498
(*JoinTeamResponse)(nil), // 15: gitpod.experimental.v1.JoinTeamResponse
1499
(*ResetTeamInvitationRequest)(nil), // 16: gitpod.experimental.v1.ResetTeamInvitationRequest
1500
(*ResetTeamInvitationResponse)(nil), // 17: gitpod.experimental.v1.ResetTeamInvitationResponse
1501
(*ListTeamMembersRequest)(nil), // 18: gitpod.experimental.v1.ListTeamMembersRequest
1502
(*ListTeamMembersResponse)(nil), // 19: gitpod.experimental.v1.ListTeamMembersResponse
1503
(*UpdateTeamMemberRequest)(nil), // 20: gitpod.experimental.v1.UpdateTeamMemberRequest
1504
(*UpdateTeamMemberResponse)(nil), // 21: gitpod.experimental.v1.UpdateTeamMemberResponse
1505
(*DeleteTeamMemberRequest)(nil), // 22: gitpod.experimental.v1.DeleteTeamMemberRequest
1506
(*DeleteTeamMemberResponse)(nil), // 23: gitpod.experimental.v1.DeleteTeamMemberResponse
1507
(*timestamppb.Timestamp)(nil), // 24: google.protobuf.Timestamp
1508
}
1509
var file_gitpod_experimental_v1_teams_proto_depIdxs = []int32{
1510
2, // 0: gitpod.experimental.v1.Team.members:type_name -> gitpod.experimental.v1.TeamMember
1511
3, // 1: gitpod.experimental.v1.Team.team_invitation:type_name -> gitpod.experimental.v1.TeamInvitation
1512
0, // 2: gitpod.experimental.v1.TeamMember.role:type_name -> gitpod.experimental.v1.TeamRole
1513
24, // 3: gitpod.experimental.v1.TeamMember.member_since:type_name -> google.protobuf.Timestamp
1514
1, // 4: gitpod.experimental.v1.CreateTeamResponse.team:type_name -> gitpod.experimental.v1.Team
1515
1, // 5: gitpod.experimental.v1.GetTeamResponse.team:type_name -> gitpod.experimental.v1.Team
1516
1, // 6: gitpod.experimental.v1.ListTeamsResponse.teams:type_name -> gitpod.experimental.v1.Team
1517
3, // 7: gitpod.experimental.v1.GetTeamInvitationResponse.team_invitation:type_name -> gitpod.experimental.v1.TeamInvitation
1518
1, // 8: gitpod.experimental.v1.JoinTeamResponse.team:type_name -> gitpod.experimental.v1.Team
1519
3, // 9: gitpod.experimental.v1.ResetTeamInvitationResponse.team_invitation:type_name -> gitpod.experimental.v1.TeamInvitation
1520
2, // 10: gitpod.experimental.v1.ListTeamMembersResponse.members:type_name -> gitpod.experimental.v1.TeamMember
1521
2, // 11: gitpod.experimental.v1.UpdateTeamMemberRequest.team_member:type_name -> gitpod.experimental.v1.TeamMember
1522
2, // 12: gitpod.experimental.v1.UpdateTeamMemberResponse.team_member:type_name -> gitpod.experimental.v1.TeamMember
1523
4, // 13: gitpod.experimental.v1.TeamsService.CreateTeam:input_type -> gitpod.experimental.v1.CreateTeamRequest
1524
6, // 14: gitpod.experimental.v1.TeamsService.GetTeam:input_type -> gitpod.experimental.v1.GetTeamRequest
1525
8, // 15: gitpod.experimental.v1.TeamsService.ListTeams:input_type -> gitpod.experimental.v1.ListTeamsRequest
1526
10, // 16: gitpod.experimental.v1.TeamsService.DeleteTeam:input_type -> gitpod.experimental.v1.DeleteTeamRequest
1527
12, // 17: gitpod.experimental.v1.TeamsService.GetTeamInvitation:input_type -> gitpod.experimental.v1.GetTeamInvitationRequest
1528
14, // 18: gitpod.experimental.v1.TeamsService.JoinTeam:input_type -> gitpod.experimental.v1.JoinTeamRequest
1529
16, // 19: gitpod.experimental.v1.TeamsService.ResetTeamInvitation:input_type -> gitpod.experimental.v1.ResetTeamInvitationRequest
1530
18, // 20: gitpod.experimental.v1.TeamsService.ListTeamMembers:input_type -> gitpod.experimental.v1.ListTeamMembersRequest
1531
20, // 21: gitpod.experimental.v1.TeamsService.UpdateTeamMember:input_type -> gitpod.experimental.v1.UpdateTeamMemberRequest
1532
22, // 22: gitpod.experimental.v1.TeamsService.DeleteTeamMember:input_type -> gitpod.experimental.v1.DeleteTeamMemberRequest
1533
5, // 23: gitpod.experimental.v1.TeamsService.CreateTeam:output_type -> gitpod.experimental.v1.CreateTeamResponse
1534
7, // 24: gitpod.experimental.v1.TeamsService.GetTeam:output_type -> gitpod.experimental.v1.GetTeamResponse
1535
9, // 25: gitpod.experimental.v1.TeamsService.ListTeams:output_type -> gitpod.experimental.v1.ListTeamsResponse
1536
11, // 26: gitpod.experimental.v1.TeamsService.DeleteTeam:output_type -> gitpod.experimental.v1.DeleteTeamResponse
1537
13, // 27: gitpod.experimental.v1.TeamsService.GetTeamInvitation:output_type -> gitpod.experimental.v1.GetTeamInvitationResponse
1538
15, // 28: gitpod.experimental.v1.TeamsService.JoinTeam:output_type -> gitpod.experimental.v1.JoinTeamResponse
1539
17, // 29: gitpod.experimental.v1.TeamsService.ResetTeamInvitation:output_type -> gitpod.experimental.v1.ResetTeamInvitationResponse
1540
19, // 30: gitpod.experimental.v1.TeamsService.ListTeamMembers:output_type -> gitpod.experimental.v1.ListTeamMembersResponse
1541
21, // 31: gitpod.experimental.v1.TeamsService.UpdateTeamMember:output_type -> gitpod.experimental.v1.UpdateTeamMemberResponse
1542
23, // 32: gitpod.experimental.v1.TeamsService.DeleteTeamMember:output_type -> gitpod.experimental.v1.DeleteTeamMemberResponse
1543
23, // [23:33] is the sub-list for method output_type
1544
13, // [13:23] is the sub-list for method input_type
1545
13, // [13:13] is the sub-list for extension type_name
1546
13, // [13:13] is the sub-list for extension extendee
1547
0, // [0:13] is the sub-list for field type_name
1548
}
1549
1550
func init() { file_gitpod_experimental_v1_teams_proto_init() }
1551
func file_gitpod_experimental_v1_teams_proto_init() {
1552
if File_gitpod_experimental_v1_teams_proto != nil {
1553
return
1554
}
1555
if !protoimpl.UnsafeEnabled {
1556
file_gitpod_experimental_v1_teams_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
1557
switch v := v.(*Team); i {
1558
case 0:
1559
return &v.state
1560
case 1:
1561
return &v.sizeCache
1562
case 2:
1563
return &v.unknownFields
1564
default:
1565
return nil
1566
}
1567
}
1568
file_gitpod_experimental_v1_teams_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
1569
switch v := v.(*TeamMember); i {
1570
case 0:
1571
return &v.state
1572
case 1:
1573
return &v.sizeCache
1574
case 2:
1575
return &v.unknownFields
1576
default:
1577
return nil
1578
}
1579
}
1580
file_gitpod_experimental_v1_teams_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
1581
switch v := v.(*TeamInvitation); i {
1582
case 0:
1583
return &v.state
1584
case 1:
1585
return &v.sizeCache
1586
case 2:
1587
return &v.unknownFields
1588
default:
1589
return nil
1590
}
1591
}
1592
file_gitpod_experimental_v1_teams_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
1593
switch v := v.(*CreateTeamRequest); i {
1594
case 0:
1595
return &v.state
1596
case 1:
1597
return &v.sizeCache
1598
case 2:
1599
return &v.unknownFields
1600
default:
1601
return nil
1602
}
1603
}
1604
file_gitpod_experimental_v1_teams_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
1605
switch v := v.(*CreateTeamResponse); i {
1606
case 0:
1607
return &v.state
1608
case 1:
1609
return &v.sizeCache
1610
case 2:
1611
return &v.unknownFields
1612
default:
1613
return nil
1614
}
1615
}
1616
file_gitpod_experimental_v1_teams_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
1617
switch v := v.(*GetTeamRequest); i {
1618
case 0:
1619
return &v.state
1620
case 1:
1621
return &v.sizeCache
1622
case 2:
1623
return &v.unknownFields
1624
default:
1625
return nil
1626
}
1627
}
1628
file_gitpod_experimental_v1_teams_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
1629
switch v := v.(*GetTeamResponse); i {
1630
case 0:
1631
return &v.state
1632
case 1:
1633
return &v.sizeCache
1634
case 2:
1635
return &v.unknownFields
1636
default:
1637
return nil
1638
}
1639
}
1640
file_gitpod_experimental_v1_teams_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
1641
switch v := v.(*ListTeamsRequest); i {
1642
case 0:
1643
return &v.state
1644
case 1:
1645
return &v.sizeCache
1646
case 2:
1647
return &v.unknownFields
1648
default:
1649
return nil
1650
}
1651
}
1652
file_gitpod_experimental_v1_teams_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
1653
switch v := v.(*ListTeamsResponse); i {
1654
case 0:
1655
return &v.state
1656
case 1:
1657
return &v.sizeCache
1658
case 2:
1659
return &v.unknownFields
1660
default:
1661
return nil
1662
}
1663
}
1664
file_gitpod_experimental_v1_teams_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
1665
switch v := v.(*DeleteTeamRequest); i {
1666
case 0:
1667
return &v.state
1668
case 1:
1669
return &v.sizeCache
1670
case 2:
1671
return &v.unknownFields
1672
default:
1673
return nil
1674
}
1675
}
1676
file_gitpod_experimental_v1_teams_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
1677
switch v := v.(*DeleteTeamResponse); i {
1678
case 0:
1679
return &v.state
1680
case 1:
1681
return &v.sizeCache
1682
case 2:
1683
return &v.unknownFields
1684
default:
1685
return nil
1686
}
1687
}
1688
file_gitpod_experimental_v1_teams_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
1689
switch v := v.(*GetTeamInvitationRequest); i {
1690
case 0:
1691
return &v.state
1692
case 1:
1693
return &v.sizeCache
1694
case 2:
1695
return &v.unknownFields
1696
default:
1697
return nil
1698
}
1699
}
1700
file_gitpod_experimental_v1_teams_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
1701
switch v := v.(*GetTeamInvitationResponse); i {
1702
case 0:
1703
return &v.state
1704
case 1:
1705
return &v.sizeCache
1706
case 2:
1707
return &v.unknownFields
1708
default:
1709
return nil
1710
}
1711
}
1712
file_gitpod_experimental_v1_teams_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
1713
switch v := v.(*JoinTeamRequest); i {
1714
case 0:
1715
return &v.state
1716
case 1:
1717
return &v.sizeCache
1718
case 2:
1719
return &v.unknownFields
1720
default:
1721
return nil
1722
}
1723
}
1724
file_gitpod_experimental_v1_teams_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
1725
switch v := v.(*JoinTeamResponse); i {
1726
case 0:
1727
return &v.state
1728
case 1:
1729
return &v.sizeCache
1730
case 2:
1731
return &v.unknownFields
1732
default:
1733
return nil
1734
}
1735
}
1736
file_gitpod_experimental_v1_teams_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
1737
switch v := v.(*ResetTeamInvitationRequest); i {
1738
case 0:
1739
return &v.state
1740
case 1:
1741
return &v.sizeCache
1742
case 2:
1743
return &v.unknownFields
1744
default:
1745
return nil
1746
}
1747
}
1748
file_gitpod_experimental_v1_teams_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
1749
switch v := v.(*ResetTeamInvitationResponse); i {
1750
case 0:
1751
return &v.state
1752
case 1:
1753
return &v.sizeCache
1754
case 2:
1755
return &v.unknownFields
1756
default:
1757
return nil
1758
}
1759
}
1760
file_gitpod_experimental_v1_teams_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
1761
switch v := v.(*ListTeamMembersRequest); i {
1762
case 0:
1763
return &v.state
1764
case 1:
1765
return &v.sizeCache
1766
case 2:
1767
return &v.unknownFields
1768
default:
1769
return nil
1770
}
1771
}
1772
file_gitpod_experimental_v1_teams_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
1773
switch v := v.(*ListTeamMembersResponse); i {
1774
case 0:
1775
return &v.state
1776
case 1:
1777
return &v.sizeCache
1778
case 2:
1779
return &v.unknownFields
1780
default:
1781
return nil
1782
}
1783
}
1784
file_gitpod_experimental_v1_teams_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
1785
switch v := v.(*UpdateTeamMemberRequest); i {
1786
case 0:
1787
return &v.state
1788
case 1:
1789
return &v.sizeCache
1790
case 2:
1791
return &v.unknownFields
1792
default:
1793
return nil
1794
}
1795
}
1796
file_gitpod_experimental_v1_teams_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
1797
switch v := v.(*UpdateTeamMemberResponse); i {
1798
case 0:
1799
return &v.state
1800
case 1:
1801
return &v.sizeCache
1802
case 2:
1803
return &v.unknownFields
1804
default:
1805
return nil
1806
}
1807
}
1808
file_gitpod_experimental_v1_teams_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
1809
switch v := v.(*DeleteTeamMemberRequest); i {
1810
case 0:
1811
return &v.state
1812
case 1:
1813
return &v.sizeCache
1814
case 2:
1815
return &v.unknownFields
1816
default:
1817
return nil
1818
}
1819
}
1820
file_gitpod_experimental_v1_teams_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
1821
switch v := v.(*DeleteTeamMemberResponse); i {
1822
case 0:
1823
return &v.state
1824
case 1:
1825
return &v.sizeCache
1826
case 2:
1827
return &v.unknownFields
1828
default:
1829
return nil
1830
}
1831
}
1832
}
1833
type x struct{}
1834
out := protoimpl.TypeBuilder{
1835
File: protoimpl.DescBuilder{
1836
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
1837
RawDescriptor: file_gitpod_experimental_v1_teams_proto_rawDesc,
1838
NumEnums: 1,
1839
NumMessages: 23,
1840
NumExtensions: 0,
1841
NumServices: 1,
1842
},
1843
GoTypes: file_gitpod_experimental_v1_teams_proto_goTypes,
1844
DependencyIndexes: file_gitpod_experimental_v1_teams_proto_depIdxs,
1845
EnumInfos: file_gitpod_experimental_v1_teams_proto_enumTypes,
1846
MessageInfos: file_gitpod_experimental_v1_teams_proto_msgTypes,
1847
}.Build()
1848
File_gitpod_experimental_v1_teams_proto = out.File
1849
file_gitpod_experimental_v1_teams_proto_rawDesc = nil
1850
file_gitpod_experimental_v1_teams_proto_goTypes = nil
1851
file_gitpod_experimental_v1_teams_proto_depIdxs = nil
1852
}
1853
1854