Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/public-api/go/v1/envvar.pb.go
2500 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/v1/envvar.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 EnvironmentVariableAdmission int32
28
29
const (
30
EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED EnvironmentVariableAdmission = 0
31
EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_PREBUILD EnvironmentVariableAdmission = 1
32
EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_EVERYWHERE EnvironmentVariableAdmission = 2
33
)
34
35
// Enum value maps for EnvironmentVariableAdmission.
36
var (
37
EnvironmentVariableAdmission_name = map[int32]string{
38
0: "ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED",
39
1: "ENVIRONMENT_VARIABLE_ADMISSION_PREBUILD",
40
2: "ENVIRONMENT_VARIABLE_ADMISSION_EVERYWHERE",
41
}
42
EnvironmentVariableAdmission_value = map[string]int32{
43
"ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED": 0,
44
"ENVIRONMENT_VARIABLE_ADMISSION_PREBUILD": 1,
45
"ENVIRONMENT_VARIABLE_ADMISSION_EVERYWHERE": 2,
46
}
47
)
48
49
func (x EnvironmentVariableAdmission) Enum() *EnvironmentVariableAdmission {
50
p := new(EnvironmentVariableAdmission)
51
*p = x
52
return p
53
}
54
55
func (x EnvironmentVariableAdmission) String() string {
56
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
57
}
58
59
func (EnvironmentVariableAdmission) Descriptor() protoreflect.EnumDescriptor {
60
return file_gitpod_v1_envvar_proto_enumTypes[0].Descriptor()
61
}
62
63
func (EnvironmentVariableAdmission) Type() protoreflect.EnumType {
64
return &file_gitpod_v1_envvar_proto_enumTypes[0]
65
}
66
67
func (x EnvironmentVariableAdmission) Number() protoreflect.EnumNumber {
68
return protoreflect.EnumNumber(x)
69
}
70
71
// Deprecated: Use EnvironmentVariableAdmission.Descriptor instead.
72
func (EnvironmentVariableAdmission) EnumDescriptor() ([]byte, []int) {
73
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{0}
74
}
75
76
type UserEnvironmentVariable struct {
77
state protoimpl.MessageState
78
sizeCache protoimpl.SizeCache
79
unknownFields protoimpl.UnknownFields
80
81
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
82
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
83
Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
84
RepositoryPattern string `protobuf:"bytes,4,opt,name=repository_pattern,json=repositoryPattern,proto3" json:"repository_pattern,omitempty"`
85
}
86
87
func (x *UserEnvironmentVariable) Reset() {
88
*x = UserEnvironmentVariable{}
89
if protoimpl.UnsafeEnabled {
90
mi := &file_gitpod_v1_envvar_proto_msgTypes[0]
91
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
92
ms.StoreMessageInfo(mi)
93
}
94
}
95
96
func (x *UserEnvironmentVariable) String() string {
97
return protoimpl.X.MessageStringOf(x)
98
}
99
100
func (*UserEnvironmentVariable) ProtoMessage() {}
101
102
func (x *UserEnvironmentVariable) ProtoReflect() protoreflect.Message {
103
mi := &file_gitpod_v1_envvar_proto_msgTypes[0]
104
if protoimpl.UnsafeEnabled && x != nil {
105
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
106
if ms.LoadMessageInfo() == nil {
107
ms.StoreMessageInfo(mi)
108
}
109
return ms
110
}
111
return mi.MessageOf(x)
112
}
113
114
// Deprecated: Use UserEnvironmentVariable.ProtoReflect.Descriptor instead.
115
func (*UserEnvironmentVariable) Descriptor() ([]byte, []int) {
116
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{0}
117
}
118
119
func (x *UserEnvironmentVariable) GetId() string {
120
if x != nil {
121
return x.Id
122
}
123
return ""
124
}
125
126
func (x *UserEnvironmentVariable) GetName() string {
127
if x != nil {
128
return x.Name
129
}
130
return ""
131
}
132
133
func (x *UserEnvironmentVariable) GetValue() string {
134
if x != nil {
135
return x.Value
136
}
137
return ""
138
}
139
140
func (x *UserEnvironmentVariable) GetRepositoryPattern() string {
141
if x != nil {
142
return x.RepositoryPattern
143
}
144
return ""
145
}
146
147
type ListUserEnvironmentVariablesRequest struct {
148
state protoimpl.MessageState
149
sizeCache protoimpl.SizeCache
150
unknownFields protoimpl.UnknownFields
151
152
Pagination *PaginationRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`
153
}
154
155
func (x *ListUserEnvironmentVariablesRequest) Reset() {
156
*x = ListUserEnvironmentVariablesRequest{}
157
if protoimpl.UnsafeEnabled {
158
mi := &file_gitpod_v1_envvar_proto_msgTypes[1]
159
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
160
ms.StoreMessageInfo(mi)
161
}
162
}
163
164
func (x *ListUserEnvironmentVariablesRequest) String() string {
165
return protoimpl.X.MessageStringOf(x)
166
}
167
168
func (*ListUserEnvironmentVariablesRequest) ProtoMessage() {}
169
170
func (x *ListUserEnvironmentVariablesRequest) ProtoReflect() protoreflect.Message {
171
mi := &file_gitpod_v1_envvar_proto_msgTypes[1]
172
if protoimpl.UnsafeEnabled && x != nil {
173
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
174
if ms.LoadMessageInfo() == nil {
175
ms.StoreMessageInfo(mi)
176
}
177
return ms
178
}
179
return mi.MessageOf(x)
180
}
181
182
// Deprecated: Use ListUserEnvironmentVariablesRequest.ProtoReflect.Descriptor instead.
183
func (*ListUserEnvironmentVariablesRequest) Descriptor() ([]byte, []int) {
184
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{1}
185
}
186
187
func (x *ListUserEnvironmentVariablesRequest) GetPagination() *PaginationRequest {
188
if x != nil {
189
return x.Pagination
190
}
191
return nil
192
}
193
194
type ListUserEnvironmentVariablesResponse struct {
195
state protoimpl.MessageState
196
sizeCache protoimpl.SizeCache
197
unknownFields protoimpl.UnknownFields
198
199
EnvironmentVariables []*UserEnvironmentVariable `protobuf:"bytes,1,rep,name=environment_variables,json=environmentVariables,proto3" json:"environment_variables,omitempty"`
200
Pagination *PaginationResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
201
}
202
203
func (x *ListUserEnvironmentVariablesResponse) Reset() {
204
*x = ListUserEnvironmentVariablesResponse{}
205
if protoimpl.UnsafeEnabled {
206
mi := &file_gitpod_v1_envvar_proto_msgTypes[2]
207
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
208
ms.StoreMessageInfo(mi)
209
}
210
}
211
212
func (x *ListUserEnvironmentVariablesResponse) String() string {
213
return protoimpl.X.MessageStringOf(x)
214
}
215
216
func (*ListUserEnvironmentVariablesResponse) ProtoMessage() {}
217
218
func (x *ListUserEnvironmentVariablesResponse) ProtoReflect() protoreflect.Message {
219
mi := &file_gitpod_v1_envvar_proto_msgTypes[2]
220
if protoimpl.UnsafeEnabled && x != nil {
221
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
222
if ms.LoadMessageInfo() == nil {
223
ms.StoreMessageInfo(mi)
224
}
225
return ms
226
}
227
return mi.MessageOf(x)
228
}
229
230
// Deprecated: Use ListUserEnvironmentVariablesResponse.ProtoReflect.Descriptor instead.
231
func (*ListUserEnvironmentVariablesResponse) Descriptor() ([]byte, []int) {
232
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{2}
233
}
234
235
func (x *ListUserEnvironmentVariablesResponse) GetEnvironmentVariables() []*UserEnvironmentVariable {
236
if x != nil {
237
return x.EnvironmentVariables
238
}
239
return nil
240
}
241
242
func (x *ListUserEnvironmentVariablesResponse) GetPagination() *PaginationResponse {
243
if x != nil {
244
return x.Pagination
245
}
246
return nil
247
}
248
249
type UpdateUserEnvironmentVariableRequest struct {
250
state protoimpl.MessageState
251
sizeCache protoimpl.SizeCache
252
unknownFields protoimpl.UnknownFields
253
254
EnvironmentVariableId string `protobuf:"bytes,1,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`
255
Name *string `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
256
Value *string `protobuf:"bytes,3,opt,name=value,proto3,oneof" json:"value,omitempty"`
257
RepositoryPattern *string `protobuf:"bytes,4,opt,name=repository_pattern,json=repositoryPattern,proto3,oneof" json:"repository_pattern,omitempty"`
258
}
259
260
func (x *UpdateUserEnvironmentVariableRequest) Reset() {
261
*x = UpdateUserEnvironmentVariableRequest{}
262
if protoimpl.UnsafeEnabled {
263
mi := &file_gitpod_v1_envvar_proto_msgTypes[3]
264
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
265
ms.StoreMessageInfo(mi)
266
}
267
}
268
269
func (x *UpdateUserEnvironmentVariableRequest) String() string {
270
return protoimpl.X.MessageStringOf(x)
271
}
272
273
func (*UpdateUserEnvironmentVariableRequest) ProtoMessage() {}
274
275
func (x *UpdateUserEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {
276
mi := &file_gitpod_v1_envvar_proto_msgTypes[3]
277
if protoimpl.UnsafeEnabled && x != nil {
278
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
279
if ms.LoadMessageInfo() == nil {
280
ms.StoreMessageInfo(mi)
281
}
282
return ms
283
}
284
return mi.MessageOf(x)
285
}
286
287
// Deprecated: Use UpdateUserEnvironmentVariableRequest.ProtoReflect.Descriptor instead.
288
func (*UpdateUserEnvironmentVariableRequest) Descriptor() ([]byte, []int) {
289
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{3}
290
}
291
292
func (x *UpdateUserEnvironmentVariableRequest) GetEnvironmentVariableId() string {
293
if x != nil {
294
return x.EnvironmentVariableId
295
}
296
return ""
297
}
298
299
func (x *UpdateUserEnvironmentVariableRequest) GetName() string {
300
if x != nil && x.Name != nil {
301
return *x.Name
302
}
303
return ""
304
}
305
306
func (x *UpdateUserEnvironmentVariableRequest) GetValue() string {
307
if x != nil && x.Value != nil {
308
return *x.Value
309
}
310
return ""
311
}
312
313
func (x *UpdateUserEnvironmentVariableRequest) GetRepositoryPattern() string {
314
if x != nil && x.RepositoryPattern != nil {
315
return *x.RepositoryPattern
316
}
317
return ""
318
}
319
320
type UpdateUserEnvironmentVariableResponse struct {
321
state protoimpl.MessageState
322
sizeCache protoimpl.SizeCache
323
unknownFields protoimpl.UnknownFields
324
325
EnvironmentVariable *UserEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`
326
}
327
328
func (x *UpdateUserEnvironmentVariableResponse) Reset() {
329
*x = UpdateUserEnvironmentVariableResponse{}
330
if protoimpl.UnsafeEnabled {
331
mi := &file_gitpod_v1_envvar_proto_msgTypes[4]
332
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
333
ms.StoreMessageInfo(mi)
334
}
335
}
336
337
func (x *UpdateUserEnvironmentVariableResponse) String() string {
338
return protoimpl.X.MessageStringOf(x)
339
}
340
341
func (*UpdateUserEnvironmentVariableResponse) ProtoMessage() {}
342
343
func (x *UpdateUserEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {
344
mi := &file_gitpod_v1_envvar_proto_msgTypes[4]
345
if protoimpl.UnsafeEnabled && x != nil {
346
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
347
if ms.LoadMessageInfo() == nil {
348
ms.StoreMessageInfo(mi)
349
}
350
return ms
351
}
352
return mi.MessageOf(x)
353
}
354
355
// Deprecated: Use UpdateUserEnvironmentVariableResponse.ProtoReflect.Descriptor instead.
356
func (*UpdateUserEnvironmentVariableResponse) Descriptor() ([]byte, []int) {
357
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{4}
358
}
359
360
func (x *UpdateUserEnvironmentVariableResponse) GetEnvironmentVariable() *UserEnvironmentVariable {
361
if x != nil {
362
return x.EnvironmentVariable
363
}
364
return nil
365
}
366
367
type CreateUserEnvironmentVariableRequest struct {
368
state protoimpl.MessageState
369
sizeCache protoimpl.SizeCache
370
unknownFields protoimpl.UnknownFields
371
372
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
373
Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
374
RepositoryPattern string `protobuf:"bytes,3,opt,name=repository_pattern,json=repositoryPattern,proto3" json:"repository_pattern,omitempty"`
375
}
376
377
func (x *CreateUserEnvironmentVariableRequest) Reset() {
378
*x = CreateUserEnvironmentVariableRequest{}
379
if protoimpl.UnsafeEnabled {
380
mi := &file_gitpod_v1_envvar_proto_msgTypes[5]
381
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
382
ms.StoreMessageInfo(mi)
383
}
384
}
385
386
func (x *CreateUserEnvironmentVariableRequest) String() string {
387
return protoimpl.X.MessageStringOf(x)
388
}
389
390
func (*CreateUserEnvironmentVariableRequest) ProtoMessage() {}
391
392
func (x *CreateUserEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {
393
mi := &file_gitpod_v1_envvar_proto_msgTypes[5]
394
if protoimpl.UnsafeEnabled && x != nil {
395
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
396
if ms.LoadMessageInfo() == nil {
397
ms.StoreMessageInfo(mi)
398
}
399
return ms
400
}
401
return mi.MessageOf(x)
402
}
403
404
// Deprecated: Use CreateUserEnvironmentVariableRequest.ProtoReflect.Descriptor instead.
405
func (*CreateUserEnvironmentVariableRequest) Descriptor() ([]byte, []int) {
406
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{5}
407
}
408
409
func (x *CreateUserEnvironmentVariableRequest) GetName() string {
410
if x != nil {
411
return x.Name
412
}
413
return ""
414
}
415
416
func (x *CreateUserEnvironmentVariableRequest) GetValue() string {
417
if x != nil {
418
return x.Value
419
}
420
return ""
421
}
422
423
func (x *CreateUserEnvironmentVariableRequest) GetRepositoryPattern() string {
424
if x != nil {
425
return x.RepositoryPattern
426
}
427
return ""
428
}
429
430
type CreateUserEnvironmentVariableResponse struct {
431
state protoimpl.MessageState
432
sizeCache protoimpl.SizeCache
433
unknownFields protoimpl.UnknownFields
434
435
EnvironmentVariable *UserEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`
436
}
437
438
func (x *CreateUserEnvironmentVariableResponse) Reset() {
439
*x = CreateUserEnvironmentVariableResponse{}
440
if protoimpl.UnsafeEnabled {
441
mi := &file_gitpod_v1_envvar_proto_msgTypes[6]
442
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
443
ms.StoreMessageInfo(mi)
444
}
445
}
446
447
func (x *CreateUserEnvironmentVariableResponse) String() string {
448
return protoimpl.X.MessageStringOf(x)
449
}
450
451
func (*CreateUserEnvironmentVariableResponse) ProtoMessage() {}
452
453
func (x *CreateUserEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {
454
mi := &file_gitpod_v1_envvar_proto_msgTypes[6]
455
if protoimpl.UnsafeEnabled && x != nil {
456
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
457
if ms.LoadMessageInfo() == nil {
458
ms.StoreMessageInfo(mi)
459
}
460
return ms
461
}
462
return mi.MessageOf(x)
463
}
464
465
// Deprecated: Use CreateUserEnvironmentVariableResponse.ProtoReflect.Descriptor instead.
466
func (*CreateUserEnvironmentVariableResponse) Descriptor() ([]byte, []int) {
467
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{6}
468
}
469
470
func (x *CreateUserEnvironmentVariableResponse) GetEnvironmentVariable() *UserEnvironmentVariable {
471
if x != nil {
472
return x.EnvironmentVariable
473
}
474
return nil
475
}
476
477
type DeleteUserEnvironmentVariableRequest struct {
478
state protoimpl.MessageState
479
sizeCache protoimpl.SizeCache
480
unknownFields protoimpl.UnknownFields
481
482
EnvironmentVariableId string `protobuf:"bytes,1,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`
483
}
484
485
func (x *DeleteUserEnvironmentVariableRequest) Reset() {
486
*x = DeleteUserEnvironmentVariableRequest{}
487
if protoimpl.UnsafeEnabled {
488
mi := &file_gitpod_v1_envvar_proto_msgTypes[7]
489
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
490
ms.StoreMessageInfo(mi)
491
}
492
}
493
494
func (x *DeleteUserEnvironmentVariableRequest) String() string {
495
return protoimpl.X.MessageStringOf(x)
496
}
497
498
func (*DeleteUserEnvironmentVariableRequest) ProtoMessage() {}
499
500
func (x *DeleteUserEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {
501
mi := &file_gitpod_v1_envvar_proto_msgTypes[7]
502
if protoimpl.UnsafeEnabled && x != nil {
503
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
504
if ms.LoadMessageInfo() == nil {
505
ms.StoreMessageInfo(mi)
506
}
507
return ms
508
}
509
return mi.MessageOf(x)
510
}
511
512
// Deprecated: Use DeleteUserEnvironmentVariableRequest.ProtoReflect.Descriptor instead.
513
func (*DeleteUserEnvironmentVariableRequest) Descriptor() ([]byte, []int) {
514
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{7}
515
}
516
517
func (x *DeleteUserEnvironmentVariableRequest) GetEnvironmentVariableId() string {
518
if x != nil {
519
return x.EnvironmentVariableId
520
}
521
return ""
522
}
523
524
type DeleteUserEnvironmentVariableResponse struct {
525
state protoimpl.MessageState
526
sizeCache protoimpl.SizeCache
527
unknownFields protoimpl.UnknownFields
528
}
529
530
func (x *DeleteUserEnvironmentVariableResponse) Reset() {
531
*x = DeleteUserEnvironmentVariableResponse{}
532
if protoimpl.UnsafeEnabled {
533
mi := &file_gitpod_v1_envvar_proto_msgTypes[8]
534
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
535
ms.StoreMessageInfo(mi)
536
}
537
}
538
539
func (x *DeleteUserEnvironmentVariableResponse) String() string {
540
return protoimpl.X.MessageStringOf(x)
541
}
542
543
func (*DeleteUserEnvironmentVariableResponse) ProtoMessage() {}
544
545
func (x *DeleteUserEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {
546
mi := &file_gitpod_v1_envvar_proto_msgTypes[8]
547
if protoimpl.UnsafeEnabled && x != nil {
548
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
549
if ms.LoadMessageInfo() == nil {
550
ms.StoreMessageInfo(mi)
551
}
552
return ms
553
}
554
return mi.MessageOf(x)
555
}
556
557
// Deprecated: Use DeleteUserEnvironmentVariableResponse.ProtoReflect.Descriptor instead.
558
func (*DeleteUserEnvironmentVariableResponse) Descriptor() ([]byte, []int) {
559
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{8}
560
}
561
562
type ConfigurationEnvironmentVariable struct {
563
state protoimpl.MessageState
564
sizeCache protoimpl.SizeCache
565
unknownFields protoimpl.UnknownFields
566
567
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
568
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
569
ConfigurationId string `protobuf:"bytes,4,opt,name=configuration_id,json=configurationId,proto3" json:"configuration_id,omitempty"`
570
Admission EnvironmentVariableAdmission `protobuf:"varint,5,opt,name=admission,proto3,enum=gitpod.v1.EnvironmentVariableAdmission" json:"admission,omitempty"`
571
}
572
573
func (x *ConfigurationEnvironmentVariable) Reset() {
574
*x = ConfigurationEnvironmentVariable{}
575
if protoimpl.UnsafeEnabled {
576
mi := &file_gitpod_v1_envvar_proto_msgTypes[9]
577
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
578
ms.StoreMessageInfo(mi)
579
}
580
}
581
582
func (x *ConfigurationEnvironmentVariable) String() string {
583
return protoimpl.X.MessageStringOf(x)
584
}
585
586
func (*ConfigurationEnvironmentVariable) ProtoMessage() {}
587
588
func (x *ConfigurationEnvironmentVariable) ProtoReflect() protoreflect.Message {
589
mi := &file_gitpod_v1_envvar_proto_msgTypes[9]
590
if protoimpl.UnsafeEnabled && x != nil {
591
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
592
if ms.LoadMessageInfo() == nil {
593
ms.StoreMessageInfo(mi)
594
}
595
return ms
596
}
597
return mi.MessageOf(x)
598
}
599
600
// Deprecated: Use ConfigurationEnvironmentVariable.ProtoReflect.Descriptor instead.
601
func (*ConfigurationEnvironmentVariable) Descriptor() ([]byte, []int) {
602
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{9}
603
}
604
605
func (x *ConfigurationEnvironmentVariable) GetId() string {
606
if x != nil {
607
return x.Id
608
}
609
return ""
610
}
611
612
func (x *ConfigurationEnvironmentVariable) GetName() string {
613
if x != nil {
614
return x.Name
615
}
616
return ""
617
}
618
619
func (x *ConfigurationEnvironmentVariable) GetConfigurationId() string {
620
if x != nil {
621
return x.ConfigurationId
622
}
623
return ""
624
}
625
626
func (x *ConfigurationEnvironmentVariable) GetAdmission() EnvironmentVariableAdmission {
627
if x != nil {
628
return x.Admission
629
}
630
return EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED
631
}
632
633
type ListConfigurationEnvironmentVariablesRequest struct {
634
state protoimpl.MessageState
635
sizeCache protoimpl.SizeCache
636
unknownFields protoimpl.UnknownFields
637
638
ConfigurationId string `protobuf:"bytes,1,opt,name=configuration_id,json=configurationId,proto3" json:"configuration_id,omitempty"`
639
Pagination *PaginationRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
640
}
641
642
func (x *ListConfigurationEnvironmentVariablesRequest) Reset() {
643
*x = ListConfigurationEnvironmentVariablesRequest{}
644
if protoimpl.UnsafeEnabled {
645
mi := &file_gitpod_v1_envvar_proto_msgTypes[10]
646
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
647
ms.StoreMessageInfo(mi)
648
}
649
}
650
651
func (x *ListConfigurationEnvironmentVariablesRequest) String() string {
652
return protoimpl.X.MessageStringOf(x)
653
}
654
655
func (*ListConfigurationEnvironmentVariablesRequest) ProtoMessage() {}
656
657
func (x *ListConfigurationEnvironmentVariablesRequest) ProtoReflect() protoreflect.Message {
658
mi := &file_gitpod_v1_envvar_proto_msgTypes[10]
659
if protoimpl.UnsafeEnabled && x != nil {
660
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
661
if ms.LoadMessageInfo() == nil {
662
ms.StoreMessageInfo(mi)
663
}
664
return ms
665
}
666
return mi.MessageOf(x)
667
}
668
669
// Deprecated: Use ListConfigurationEnvironmentVariablesRequest.ProtoReflect.Descriptor instead.
670
func (*ListConfigurationEnvironmentVariablesRequest) Descriptor() ([]byte, []int) {
671
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{10}
672
}
673
674
func (x *ListConfigurationEnvironmentVariablesRequest) GetConfigurationId() string {
675
if x != nil {
676
return x.ConfigurationId
677
}
678
return ""
679
}
680
681
func (x *ListConfigurationEnvironmentVariablesRequest) GetPagination() *PaginationRequest {
682
if x != nil {
683
return x.Pagination
684
}
685
return nil
686
}
687
688
type ListConfigurationEnvironmentVariablesResponse struct {
689
state protoimpl.MessageState
690
sizeCache protoimpl.SizeCache
691
unknownFields protoimpl.UnknownFields
692
693
EnvironmentVariables []*ConfigurationEnvironmentVariable `protobuf:"bytes,1,rep,name=environment_variables,json=environmentVariables,proto3" json:"environment_variables,omitempty"`
694
Pagination *PaginationResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
695
}
696
697
func (x *ListConfigurationEnvironmentVariablesResponse) Reset() {
698
*x = ListConfigurationEnvironmentVariablesResponse{}
699
if protoimpl.UnsafeEnabled {
700
mi := &file_gitpod_v1_envvar_proto_msgTypes[11]
701
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
702
ms.StoreMessageInfo(mi)
703
}
704
}
705
706
func (x *ListConfigurationEnvironmentVariablesResponse) String() string {
707
return protoimpl.X.MessageStringOf(x)
708
}
709
710
func (*ListConfigurationEnvironmentVariablesResponse) ProtoMessage() {}
711
712
func (x *ListConfigurationEnvironmentVariablesResponse) ProtoReflect() protoreflect.Message {
713
mi := &file_gitpod_v1_envvar_proto_msgTypes[11]
714
if protoimpl.UnsafeEnabled && x != nil {
715
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
716
if ms.LoadMessageInfo() == nil {
717
ms.StoreMessageInfo(mi)
718
}
719
return ms
720
}
721
return mi.MessageOf(x)
722
}
723
724
// Deprecated: Use ListConfigurationEnvironmentVariablesResponse.ProtoReflect.Descriptor instead.
725
func (*ListConfigurationEnvironmentVariablesResponse) Descriptor() ([]byte, []int) {
726
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{11}
727
}
728
729
func (x *ListConfigurationEnvironmentVariablesResponse) GetEnvironmentVariables() []*ConfigurationEnvironmentVariable {
730
if x != nil {
731
return x.EnvironmentVariables
732
}
733
return nil
734
}
735
736
func (x *ListConfigurationEnvironmentVariablesResponse) GetPagination() *PaginationResponse {
737
if x != nil {
738
return x.Pagination
739
}
740
return nil
741
}
742
743
type UpdateConfigurationEnvironmentVariableRequest struct {
744
state protoimpl.MessageState
745
sizeCache protoimpl.SizeCache
746
unknownFields protoimpl.UnknownFields
747
748
ConfigurationId string `protobuf:"bytes,1,opt,name=configuration_id,json=configurationId,proto3" json:"configuration_id,omitempty"`
749
EnvironmentVariableId string `protobuf:"bytes,2,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`
750
Name *string `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"`
751
Value *string `protobuf:"bytes,4,opt,name=value,proto3,oneof" json:"value,omitempty"`
752
Admission *EnvironmentVariableAdmission `protobuf:"varint,5,opt,name=admission,proto3,enum=gitpod.v1.EnvironmentVariableAdmission,oneof" json:"admission,omitempty"`
753
}
754
755
func (x *UpdateConfigurationEnvironmentVariableRequest) Reset() {
756
*x = UpdateConfigurationEnvironmentVariableRequest{}
757
if protoimpl.UnsafeEnabled {
758
mi := &file_gitpod_v1_envvar_proto_msgTypes[12]
759
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
760
ms.StoreMessageInfo(mi)
761
}
762
}
763
764
func (x *UpdateConfigurationEnvironmentVariableRequest) String() string {
765
return protoimpl.X.MessageStringOf(x)
766
}
767
768
func (*UpdateConfigurationEnvironmentVariableRequest) ProtoMessage() {}
769
770
func (x *UpdateConfigurationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {
771
mi := &file_gitpod_v1_envvar_proto_msgTypes[12]
772
if protoimpl.UnsafeEnabled && x != nil {
773
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
774
if ms.LoadMessageInfo() == nil {
775
ms.StoreMessageInfo(mi)
776
}
777
return ms
778
}
779
return mi.MessageOf(x)
780
}
781
782
// Deprecated: Use UpdateConfigurationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.
783
func (*UpdateConfigurationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {
784
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{12}
785
}
786
787
func (x *UpdateConfigurationEnvironmentVariableRequest) GetConfigurationId() string {
788
if x != nil {
789
return x.ConfigurationId
790
}
791
return ""
792
}
793
794
func (x *UpdateConfigurationEnvironmentVariableRequest) GetEnvironmentVariableId() string {
795
if x != nil {
796
return x.EnvironmentVariableId
797
}
798
return ""
799
}
800
801
func (x *UpdateConfigurationEnvironmentVariableRequest) GetName() string {
802
if x != nil && x.Name != nil {
803
return *x.Name
804
}
805
return ""
806
}
807
808
func (x *UpdateConfigurationEnvironmentVariableRequest) GetValue() string {
809
if x != nil && x.Value != nil {
810
return *x.Value
811
}
812
return ""
813
}
814
815
func (x *UpdateConfigurationEnvironmentVariableRequest) GetAdmission() EnvironmentVariableAdmission {
816
if x != nil && x.Admission != nil {
817
return *x.Admission
818
}
819
return EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED
820
}
821
822
type UpdateConfigurationEnvironmentVariableResponse struct {
823
state protoimpl.MessageState
824
sizeCache protoimpl.SizeCache
825
unknownFields protoimpl.UnknownFields
826
827
EnvironmentVariable *ConfigurationEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`
828
}
829
830
func (x *UpdateConfigurationEnvironmentVariableResponse) Reset() {
831
*x = UpdateConfigurationEnvironmentVariableResponse{}
832
if protoimpl.UnsafeEnabled {
833
mi := &file_gitpod_v1_envvar_proto_msgTypes[13]
834
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
835
ms.StoreMessageInfo(mi)
836
}
837
}
838
839
func (x *UpdateConfigurationEnvironmentVariableResponse) String() string {
840
return protoimpl.X.MessageStringOf(x)
841
}
842
843
func (*UpdateConfigurationEnvironmentVariableResponse) ProtoMessage() {}
844
845
func (x *UpdateConfigurationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {
846
mi := &file_gitpod_v1_envvar_proto_msgTypes[13]
847
if protoimpl.UnsafeEnabled && x != nil {
848
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
849
if ms.LoadMessageInfo() == nil {
850
ms.StoreMessageInfo(mi)
851
}
852
return ms
853
}
854
return mi.MessageOf(x)
855
}
856
857
// Deprecated: Use UpdateConfigurationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.
858
func (*UpdateConfigurationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {
859
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{13}
860
}
861
862
func (x *UpdateConfigurationEnvironmentVariableResponse) GetEnvironmentVariable() *ConfigurationEnvironmentVariable {
863
if x != nil {
864
return x.EnvironmentVariable
865
}
866
return nil
867
}
868
869
type CreateConfigurationEnvironmentVariableRequest struct {
870
state protoimpl.MessageState
871
sizeCache protoimpl.SizeCache
872
unknownFields protoimpl.UnknownFields
873
874
ConfigurationId string `protobuf:"bytes,1,opt,name=configuration_id,json=configurationId,proto3" json:"configuration_id,omitempty"`
875
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
876
Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
877
Admission EnvironmentVariableAdmission `protobuf:"varint,4,opt,name=admission,proto3,enum=gitpod.v1.EnvironmentVariableAdmission" json:"admission,omitempty"`
878
}
879
880
func (x *CreateConfigurationEnvironmentVariableRequest) Reset() {
881
*x = CreateConfigurationEnvironmentVariableRequest{}
882
if protoimpl.UnsafeEnabled {
883
mi := &file_gitpod_v1_envvar_proto_msgTypes[14]
884
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
885
ms.StoreMessageInfo(mi)
886
}
887
}
888
889
func (x *CreateConfigurationEnvironmentVariableRequest) String() string {
890
return protoimpl.X.MessageStringOf(x)
891
}
892
893
func (*CreateConfigurationEnvironmentVariableRequest) ProtoMessage() {}
894
895
func (x *CreateConfigurationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {
896
mi := &file_gitpod_v1_envvar_proto_msgTypes[14]
897
if protoimpl.UnsafeEnabled && x != nil {
898
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
899
if ms.LoadMessageInfo() == nil {
900
ms.StoreMessageInfo(mi)
901
}
902
return ms
903
}
904
return mi.MessageOf(x)
905
}
906
907
// Deprecated: Use CreateConfigurationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.
908
func (*CreateConfigurationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {
909
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{14}
910
}
911
912
func (x *CreateConfigurationEnvironmentVariableRequest) GetConfigurationId() string {
913
if x != nil {
914
return x.ConfigurationId
915
}
916
return ""
917
}
918
919
func (x *CreateConfigurationEnvironmentVariableRequest) GetName() string {
920
if x != nil {
921
return x.Name
922
}
923
return ""
924
}
925
926
func (x *CreateConfigurationEnvironmentVariableRequest) GetValue() string {
927
if x != nil {
928
return x.Value
929
}
930
return ""
931
}
932
933
func (x *CreateConfigurationEnvironmentVariableRequest) GetAdmission() EnvironmentVariableAdmission {
934
if x != nil {
935
return x.Admission
936
}
937
return EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED
938
}
939
940
type CreateConfigurationEnvironmentVariableResponse struct {
941
state protoimpl.MessageState
942
sizeCache protoimpl.SizeCache
943
unknownFields protoimpl.UnknownFields
944
945
EnvironmentVariable *ConfigurationEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`
946
}
947
948
func (x *CreateConfigurationEnvironmentVariableResponse) Reset() {
949
*x = CreateConfigurationEnvironmentVariableResponse{}
950
if protoimpl.UnsafeEnabled {
951
mi := &file_gitpod_v1_envvar_proto_msgTypes[15]
952
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
953
ms.StoreMessageInfo(mi)
954
}
955
}
956
957
func (x *CreateConfigurationEnvironmentVariableResponse) String() string {
958
return protoimpl.X.MessageStringOf(x)
959
}
960
961
func (*CreateConfigurationEnvironmentVariableResponse) ProtoMessage() {}
962
963
func (x *CreateConfigurationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {
964
mi := &file_gitpod_v1_envvar_proto_msgTypes[15]
965
if protoimpl.UnsafeEnabled && x != nil {
966
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
967
if ms.LoadMessageInfo() == nil {
968
ms.StoreMessageInfo(mi)
969
}
970
return ms
971
}
972
return mi.MessageOf(x)
973
}
974
975
// Deprecated: Use CreateConfigurationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.
976
func (*CreateConfigurationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {
977
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{15}
978
}
979
980
func (x *CreateConfigurationEnvironmentVariableResponse) GetEnvironmentVariable() *ConfigurationEnvironmentVariable {
981
if x != nil {
982
return x.EnvironmentVariable
983
}
984
return nil
985
}
986
987
type DeleteConfigurationEnvironmentVariableRequest struct {
988
state protoimpl.MessageState
989
sizeCache protoimpl.SizeCache
990
unknownFields protoimpl.UnknownFields
991
992
EnvironmentVariableId string `protobuf:"bytes,1,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`
993
}
994
995
func (x *DeleteConfigurationEnvironmentVariableRequest) Reset() {
996
*x = DeleteConfigurationEnvironmentVariableRequest{}
997
if protoimpl.UnsafeEnabled {
998
mi := &file_gitpod_v1_envvar_proto_msgTypes[16]
999
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1000
ms.StoreMessageInfo(mi)
1001
}
1002
}
1003
1004
func (x *DeleteConfigurationEnvironmentVariableRequest) String() string {
1005
return protoimpl.X.MessageStringOf(x)
1006
}
1007
1008
func (*DeleteConfigurationEnvironmentVariableRequest) ProtoMessage() {}
1009
1010
func (x *DeleteConfigurationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {
1011
mi := &file_gitpod_v1_envvar_proto_msgTypes[16]
1012
if protoimpl.UnsafeEnabled && x != nil {
1013
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1014
if ms.LoadMessageInfo() == nil {
1015
ms.StoreMessageInfo(mi)
1016
}
1017
return ms
1018
}
1019
return mi.MessageOf(x)
1020
}
1021
1022
// Deprecated: Use DeleteConfigurationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.
1023
func (*DeleteConfigurationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {
1024
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{16}
1025
}
1026
1027
func (x *DeleteConfigurationEnvironmentVariableRequest) GetEnvironmentVariableId() string {
1028
if x != nil {
1029
return x.EnvironmentVariableId
1030
}
1031
return ""
1032
}
1033
1034
type DeleteConfigurationEnvironmentVariableResponse struct {
1035
state protoimpl.MessageState
1036
sizeCache protoimpl.SizeCache
1037
unknownFields protoimpl.UnknownFields
1038
}
1039
1040
func (x *DeleteConfigurationEnvironmentVariableResponse) Reset() {
1041
*x = DeleteConfigurationEnvironmentVariableResponse{}
1042
if protoimpl.UnsafeEnabled {
1043
mi := &file_gitpod_v1_envvar_proto_msgTypes[17]
1044
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1045
ms.StoreMessageInfo(mi)
1046
}
1047
}
1048
1049
func (x *DeleteConfigurationEnvironmentVariableResponse) String() string {
1050
return protoimpl.X.MessageStringOf(x)
1051
}
1052
1053
func (*DeleteConfigurationEnvironmentVariableResponse) ProtoMessage() {}
1054
1055
func (x *DeleteConfigurationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {
1056
mi := &file_gitpod_v1_envvar_proto_msgTypes[17]
1057
if protoimpl.UnsafeEnabled && x != nil {
1058
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1059
if ms.LoadMessageInfo() == nil {
1060
ms.StoreMessageInfo(mi)
1061
}
1062
return ms
1063
}
1064
return mi.MessageOf(x)
1065
}
1066
1067
// Deprecated: Use DeleteConfigurationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.
1068
func (*DeleteConfigurationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {
1069
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{17}
1070
}
1071
1072
type OrganizationEnvironmentVariable struct {
1073
state protoimpl.MessageState
1074
sizeCache protoimpl.SizeCache
1075
unknownFields protoimpl.UnknownFields
1076
1077
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
1078
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
1079
OrganizationId string `protobuf:"bytes,3,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
1080
}
1081
1082
func (x *OrganizationEnvironmentVariable) Reset() {
1083
*x = OrganizationEnvironmentVariable{}
1084
if protoimpl.UnsafeEnabled {
1085
mi := &file_gitpod_v1_envvar_proto_msgTypes[18]
1086
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1087
ms.StoreMessageInfo(mi)
1088
}
1089
}
1090
1091
func (x *OrganizationEnvironmentVariable) String() string {
1092
return protoimpl.X.MessageStringOf(x)
1093
}
1094
1095
func (*OrganizationEnvironmentVariable) ProtoMessage() {}
1096
1097
func (x *OrganizationEnvironmentVariable) ProtoReflect() protoreflect.Message {
1098
mi := &file_gitpod_v1_envvar_proto_msgTypes[18]
1099
if protoimpl.UnsafeEnabled && x != nil {
1100
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1101
if ms.LoadMessageInfo() == nil {
1102
ms.StoreMessageInfo(mi)
1103
}
1104
return ms
1105
}
1106
return mi.MessageOf(x)
1107
}
1108
1109
// Deprecated: Use OrganizationEnvironmentVariable.ProtoReflect.Descriptor instead.
1110
func (*OrganizationEnvironmentVariable) Descriptor() ([]byte, []int) {
1111
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{18}
1112
}
1113
1114
func (x *OrganizationEnvironmentVariable) GetId() string {
1115
if x != nil {
1116
return x.Id
1117
}
1118
return ""
1119
}
1120
1121
func (x *OrganizationEnvironmentVariable) GetName() string {
1122
if x != nil {
1123
return x.Name
1124
}
1125
return ""
1126
}
1127
1128
func (x *OrganizationEnvironmentVariable) GetOrganizationId() string {
1129
if x != nil {
1130
return x.OrganizationId
1131
}
1132
return ""
1133
}
1134
1135
type ListOrganizationEnvironmentVariablesRequest struct {
1136
state protoimpl.MessageState
1137
sizeCache protoimpl.SizeCache
1138
unknownFields protoimpl.UnknownFields
1139
1140
OrganizationId string `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
1141
Pagination *PaginationRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
1142
}
1143
1144
func (x *ListOrganizationEnvironmentVariablesRequest) Reset() {
1145
*x = ListOrganizationEnvironmentVariablesRequest{}
1146
if protoimpl.UnsafeEnabled {
1147
mi := &file_gitpod_v1_envvar_proto_msgTypes[19]
1148
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1149
ms.StoreMessageInfo(mi)
1150
}
1151
}
1152
1153
func (x *ListOrganizationEnvironmentVariablesRequest) String() string {
1154
return protoimpl.X.MessageStringOf(x)
1155
}
1156
1157
func (*ListOrganizationEnvironmentVariablesRequest) ProtoMessage() {}
1158
1159
func (x *ListOrganizationEnvironmentVariablesRequest) ProtoReflect() protoreflect.Message {
1160
mi := &file_gitpod_v1_envvar_proto_msgTypes[19]
1161
if protoimpl.UnsafeEnabled && x != nil {
1162
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1163
if ms.LoadMessageInfo() == nil {
1164
ms.StoreMessageInfo(mi)
1165
}
1166
return ms
1167
}
1168
return mi.MessageOf(x)
1169
}
1170
1171
// Deprecated: Use ListOrganizationEnvironmentVariablesRequest.ProtoReflect.Descriptor instead.
1172
func (*ListOrganizationEnvironmentVariablesRequest) Descriptor() ([]byte, []int) {
1173
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{19}
1174
}
1175
1176
func (x *ListOrganizationEnvironmentVariablesRequest) GetOrganizationId() string {
1177
if x != nil {
1178
return x.OrganizationId
1179
}
1180
return ""
1181
}
1182
1183
func (x *ListOrganizationEnvironmentVariablesRequest) GetPagination() *PaginationRequest {
1184
if x != nil {
1185
return x.Pagination
1186
}
1187
return nil
1188
}
1189
1190
type ListOrganizationEnvironmentVariablesResponse struct {
1191
state protoimpl.MessageState
1192
sizeCache protoimpl.SizeCache
1193
unknownFields protoimpl.UnknownFields
1194
1195
EnvironmentVariables []*OrganizationEnvironmentVariable `protobuf:"bytes,1,rep,name=environment_variables,json=environmentVariables,proto3" json:"environment_variables,omitempty"`
1196
Pagination *PaginationResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`
1197
}
1198
1199
func (x *ListOrganizationEnvironmentVariablesResponse) Reset() {
1200
*x = ListOrganizationEnvironmentVariablesResponse{}
1201
if protoimpl.UnsafeEnabled {
1202
mi := &file_gitpod_v1_envvar_proto_msgTypes[20]
1203
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1204
ms.StoreMessageInfo(mi)
1205
}
1206
}
1207
1208
func (x *ListOrganizationEnvironmentVariablesResponse) String() string {
1209
return protoimpl.X.MessageStringOf(x)
1210
}
1211
1212
func (*ListOrganizationEnvironmentVariablesResponse) ProtoMessage() {}
1213
1214
func (x *ListOrganizationEnvironmentVariablesResponse) ProtoReflect() protoreflect.Message {
1215
mi := &file_gitpod_v1_envvar_proto_msgTypes[20]
1216
if protoimpl.UnsafeEnabled && x != nil {
1217
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1218
if ms.LoadMessageInfo() == nil {
1219
ms.StoreMessageInfo(mi)
1220
}
1221
return ms
1222
}
1223
return mi.MessageOf(x)
1224
}
1225
1226
// Deprecated: Use ListOrganizationEnvironmentVariablesResponse.ProtoReflect.Descriptor instead.
1227
func (*ListOrganizationEnvironmentVariablesResponse) Descriptor() ([]byte, []int) {
1228
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{20}
1229
}
1230
1231
func (x *ListOrganizationEnvironmentVariablesResponse) GetEnvironmentVariables() []*OrganizationEnvironmentVariable {
1232
if x != nil {
1233
return x.EnvironmentVariables
1234
}
1235
return nil
1236
}
1237
1238
func (x *ListOrganizationEnvironmentVariablesResponse) GetPagination() *PaginationResponse {
1239
if x != nil {
1240
return x.Pagination
1241
}
1242
return nil
1243
}
1244
1245
type UpdateOrganizationEnvironmentVariableRequest struct {
1246
state protoimpl.MessageState
1247
sizeCache protoimpl.SizeCache
1248
unknownFields protoimpl.UnknownFields
1249
1250
OrganizationId string `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
1251
EnvironmentVariableId string `protobuf:"bytes,2,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`
1252
Name *string `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"`
1253
Value *string `protobuf:"bytes,4,opt,name=value,proto3,oneof" json:"value,omitempty"`
1254
}
1255
1256
func (x *UpdateOrganizationEnvironmentVariableRequest) Reset() {
1257
*x = UpdateOrganizationEnvironmentVariableRequest{}
1258
if protoimpl.UnsafeEnabled {
1259
mi := &file_gitpod_v1_envvar_proto_msgTypes[21]
1260
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1261
ms.StoreMessageInfo(mi)
1262
}
1263
}
1264
1265
func (x *UpdateOrganizationEnvironmentVariableRequest) String() string {
1266
return protoimpl.X.MessageStringOf(x)
1267
}
1268
1269
func (*UpdateOrganizationEnvironmentVariableRequest) ProtoMessage() {}
1270
1271
func (x *UpdateOrganizationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {
1272
mi := &file_gitpod_v1_envvar_proto_msgTypes[21]
1273
if protoimpl.UnsafeEnabled && x != nil {
1274
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1275
if ms.LoadMessageInfo() == nil {
1276
ms.StoreMessageInfo(mi)
1277
}
1278
return ms
1279
}
1280
return mi.MessageOf(x)
1281
}
1282
1283
// Deprecated: Use UpdateOrganizationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.
1284
func (*UpdateOrganizationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {
1285
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{21}
1286
}
1287
1288
func (x *UpdateOrganizationEnvironmentVariableRequest) GetOrganizationId() string {
1289
if x != nil {
1290
return x.OrganizationId
1291
}
1292
return ""
1293
}
1294
1295
func (x *UpdateOrganizationEnvironmentVariableRequest) GetEnvironmentVariableId() string {
1296
if x != nil {
1297
return x.EnvironmentVariableId
1298
}
1299
return ""
1300
}
1301
1302
func (x *UpdateOrganizationEnvironmentVariableRequest) GetName() string {
1303
if x != nil && x.Name != nil {
1304
return *x.Name
1305
}
1306
return ""
1307
}
1308
1309
func (x *UpdateOrganizationEnvironmentVariableRequest) GetValue() string {
1310
if x != nil && x.Value != nil {
1311
return *x.Value
1312
}
1313
return ""
1314
}
1315
1316
type UpdateOrganizationEnvironmentVariableResponse struct {
1317
state protoimpl.MessageState
1318
sizeCache protoimpl.SizeCache
1319
unknownFields protoimpl.UnknownFields
1320
1321
EnvironmentVariable *OrganizationEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`
1322
}
1323
1324
func (x *UpdateOrganizationEnvironmentVariableResponse) Reset() {
1325
*x = UpdateOrganizationEnvironmentVariableResponse{}
1326
if protoimpl.UnsafeEnabled {
1327
mi := &file_gitpod_v1_envvar_proto_msgTypes[22]
1328
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1329
ms.StoreMessageInfo(mi)
1330
}
1331
}
1332
1333
func (x *UpdateOrganizationEnvironmentVariableResponse) String() string {
1334
return protoimpl.X.MessageStringOf(x)
1335
}
1336
1337
func (*UpdateOrganizationEnvironmentVariableResponse) ProtoMessage() {}
1338
1339
func (x *UpdateOrganizationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {
1340
mi := &file_gitpod_v1_envvar_proto_msgTypes[22]
1341
if protoimpl.UnsafeEnabled && x != nil {
1342
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1343
if ms.LoadMessageInfo() == nil {
1344
ms.StoreMessageInfo(mi)
1345
}
1346
return ms
1347
}
1348
return mi.MessageOf(x)
1349
}
1350
1351
// Deprecated: Use UpdateOrganizationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.
1352
func (*UpdateOrganizationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {
1353
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{22}
1354
}
1355
1356
func (x *UpdateOrganizationEnvironmentVariableResponse) GetEnvironmentVariable() *OrganizationEnvironmentVariable {
1357
if x != nil {
1358
return x.EnvironmentVariable
1359
}
1360
return nil
1361
}
1362
1363
type CreateOrganizationEnvironmentVariableRequest struct {
1364
state protoimpl.MessageState
1365
sizeCache protoimpl.SizeCache
1366
unknownFields protoimpl.UnknownFields
1367
1368
OrganizationId string `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
1369
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
1370
Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
1371
}
1372
1373
func (x *CreateOrganizationEnvironmentVariableRequest) Reset() {
1374
*x = CreateOrganizationEnvironmentVariableRequest{}
1375
if protoimpl.UnsafeEnabled {
1376
mi := &file_gitpod_v1_envvar_proto_msgTypes[23]
1377
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1378
ms.StoreMessageInfo(mi)
1379
}
1380
}
1381
1382
func (x *CreateOrganizationEnvironmentVariableRequest) String() string {
1383
return protoimpl.X.MessageStringOf(x)
1384
}
1385
1386
func (*CreateOrganizationEnvironmentVariableRequest) ProtoMessage() {}
1387
1388
func (x *CreateOrganizationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {
1389
mi := &file_gitpod_v1_envvar_proto_msgTypes[23]
1390
if protoimpl.UnsafeEnabled && x != nil {
1391
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1392
if ms.LoadMessageInfo() == nil {
1393
ms.StoreMessageInfo(mi)
1394
}
1395
return ms
1396
}
1397
return mi.MessageOf(x)
1398
}
1399
1400
// Deprecated: Use CreateOrganizationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.
1401
func (*CreateOrganizationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {
1402
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{23}
1403
}
1404
1405
func (x *CreateOrganizationEnvironmentVariableRequest) GetOrganizationId() string {
1406
if x != nil {
1407
return x.OrganizationId
1408
}
1409
return ""
1410
}
1411
1412
func (x *CreateOrganizationEnvironmentVariableRequest) GetName() string {
1413
if x != nil {
1414
return x.Name
1415
}
1416
return ""
1417
}
1418
1419
func (x *CreateOrganizationEnvironmentVariableRequest) GetValue() string {
1420
if x != nil {
1421
return x.Value
1422
}
1423
return ""
1424
}
1425
1426
type CreateOrganizationEnvironmentVariableResponse struct {
1427
state protoimpl.MessageState
1428
sizeCache protoimpl.SizeCache
1429
unknownFields protoimpl.UnknownFields
1430
1431
EnvironmentVariable *OrganizationEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`
1432
}
1433
1434
func (x *CreateOrganizationEnvironmentVariableResponse) Reset() {
1435
*x = CreateOrganizationEnvironmentVariableResponse{}
1436
if protoimpl.UnsafeEnabled {
1437
mi := &file_gitpod_v1_envvar_proto_msgTypes[24]
1438
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1439
ms.StoreMessageInfo(mi)
1440
}
1441
}
1442
1443
func (x *CreateOrganizationEnvironmentVariableResponse) String() string {
1444
return protoimpl.X.MessageStringOf(x)
1445
}
1446
1447
func (*CreateOrganizationEnvironmentVariableResponse) ProtoMessage() {}
1448
1449
func (x *CreateOrganizationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {
1450
mi := &file_gitpod_v1_envvar_proto_msgTypes[24]
1451
if protoimpl.UnsafeEnabled && x != nil {
1452
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1453
if ms.LoadMessageInfo() == nil {
1454
ms.StoreMessageInfo(mi)
1455
}
1456
return ms
1457
}
1458
return mi.MessageOf(x)
1459
}
1460
1461
// Deprecated: Use CreateOrganizationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.
1462
func (*CreateOrganizationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {
1463
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{24}
1464
}
1465
1466
func (x *CreateOrganizationEnvironmentVariableResponse) GetEnvironmentVariable() *OrganizationEnvironmentVariable {
1467
if x != nil {
1468
return x.EnvironmentVariable
1469
}
1470
return nil
1471
}
1472
1473
type DeleteOrganizationEnvironmentVariableRequest struct {
1474
state protoimpl.MessageState
1475
sizeCache protoimpl.SizeCache
1476
unknownFields protoimpl.UnknownFields
1477
1478
EnvironmentVariableId string `protobuf:"bytes,1,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`
1479
}
1480
1481
func (x *DeleteOrganizationEnvironmentVariableRequest) Reset() {
1482
*x = DeleteOrganizationEnvironmentVariableRequest{}
1483
if protoimpl.UnsafeEnabled {
1484
mi := &file_gitpod_v1_envvar_proto_msgTypes[25]
1485
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1486
ms.StoreMessageInfo(mi)
1487
}
1488
}
1489
1490
func (x *DeleteOrganizationEnvironmentVariableRequest) String() string {
1491
return protoimpl.X.MessageStringOf(x)
1492
}
1493
1494
func (*DeleteOrganizationEnvironmentVariableRequest) ProtoMessage() {}
1495
1496
func (x *DeleteOrganizationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {
1497
mi := &file_gitpod_v1_envvar_proto_msgTypes[25]
1498
if protoimpl.UnsafeEnabled && x != nil {
1499
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1500
if ms.LoadMessageInfo() == nil {
1501
ms.StoreMessageInfo(mi)
1502
}
1503
return ms
1504
}
1505
return mi.MessageOf(x)
1506
}
1507
1508
// Deprecated: Use DeleteOrganizationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.
1509
func (*DeleteOrganizationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {
1510
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{25}
1511
}
1512
1513
func (x *DeleteOrganizationEnvironmentVariableRequest) GetEnvironmentVariableId() string {
1514
if x != nil {
1515
return x.EnvironmentVariableId
1516
}
1517
return ""
1518
}
1519
1520
type DeleteOrganizationEnvironmentVariableResponse struct {
1521
state protoimpl.MessageState
1522
sizeCache protoimpl.SizeCache
1523
unknownFields protoimpl.UnknownFields
1524
}
1525
1526
func (x *DeleteOrganizationEnvironmentVariableResponse) Reset() {
1527
*x = DeleteOrganizationEnvironmentVariableResponse{}
1528
if protoimpl.UnsafeEnabled {
1529
mi := &file_gitpod_v1_envvar_proto_msgTypes[26]
1530
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1531
ms.StoreMessageInfo(mi)
1532
}
1533
}
1534
1535
func (x *DeleteOrganizationEnvironmentVariableResponse) String() string {
1536
return protoimpl.X.MessageStringOf(x)
1537
}
1538
1539
func (*DeleteOrganizationEnvironmentVariableResponse) ProtoMessage() {}
1540
1541
func (x *DeleteOrganizationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {
1542
mi := &file_gitpod_v1_envvar_proto_msgTypes[26]
1543
if protoimpl.UnsafeEnabled && x != nil {
1544
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1545
if ms.LoadMessageInfo() == nil {
1546
ms.StoreMessageInfo(mi)
1547
}
1548
return ms
1549
}
1550
return mi.MessageOf(x)
1551
}
1552
1553
// Deprecated: Use DeleteOrganizationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.
1554
func (*DeleteOrganizationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {
1555
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{26}
1556
}
1557
1558
type ResolveWorkspaceEnvironmentVariablesRequest struct {
1559
state protoimpl.MessageState
1560
sizeCache protoimpl.SizeCache
1561
unknownFields protoimpl.UnknownFields
1562
1563
WorkspaceId string `protobuf:"bytes,1,opt,name=workspace_id,json=workspaceId,proto3" json:"workspace_id,omitempty"`
1564
}
1565
1566
func (x *ResolveWorkspaceEnvironmentVariablesRequest) Reset() {
1567
*x = ResolveWorkspaceEnvironmentVariablesRequest{}
1568
if protoimpl.UnsafeEnabled {
1569
mi := &file_gitpod_v1_envvar_proto_msgTypes[27]
1570
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1571
ms.StoreMessageInfo(mi)
1572
}
1573
}
1574
1575
func (x *ResolveWorkspaceEnvironmentVariablesRequest) String() string {
1576
return protoimpl.X.MessageStringOf(x)
1577
}
1578
1579
func (*ResolveWorkspaceEnvironmentVariablesRequest) ProtoMessage() {}
1580
1581
func (x *ResolveWorkspaceEnvironmentVariablesRequest) ProtoReflect() protoreflect.Message {
1582
mi := &file_gitpod_v1_envvar_proto_msgTypes[27]
1583
if protoimpl.UnsafeEnabled && x != nil {
1584
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1585
if ms.LoadMessageInfo() == nil {
1586
ms.StoreMessageInfo(mi)
1587
}
1588
return ms
1589
}
1590
return mi.MessageOf(x)
1591
}
1592
1593
// Deprecated: Use ResolveWorkspaceEnvironmentVariablesRequest.ProtoReflect.Descriptor instead.
1594
func (*ResolveWorkspaceEnvironmentVariablesRequest) Descriptor() ([]byte, []int) {
1595
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{27}
1596
}
1597
1598
func (x *ResolveWorkspaceEnvironmentVariablesRequest) GetWorkspaceId() string {
1599
if x != nil {
1600
return x.WorkspaceId
1601
}
1602
return ""
1603
}
1604
1605
type ResolveWorkspaceEnvironmentVariablesResponse struct {
1606
state protoimpl.MessageState
1607
sizeCache protoimpl.SizeCache
1608
unknownFields protoimpl.UnknownFields
1609
1610
EnvironmentVariables []*EnvironmentVariable `protobuf:"bytes,1,rep,name=environment_variables,json=environmentVariables,proto3" json:"environment_variables,omitempty"`
1611
}
1612
1613
func (x *ResolveWorkspaceEnvironmentVariablesResponse) Reset() {
1614
*x = ResolveWorkspaceEnvironmentVariablesResponse{}
1615
if protoimpl.UnsafeEnabled {
1616
mi := &file_gitpod_v1_envvar_proto_msgTypes[28]
1617
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1618
ms.StoreMessageInfo(mi)
1619
}
1620
}
1621
1622
func (x *ResolveWorkspaceEnvironmentVariablesResponse) String() string {
1623
return protoimpl.X.MessageStringOf(x)
1624
}
1625
1626
func (*ResolveWorkspaceEnvironmentVariablesResponse) ProtoMessage() {}
1627
1628
func (x *ResolveWorkspaceEnvironmentVariablesResponse) ProtoReflect() protoreflect.Message {
1629
mi := &file_gitpod_v1_envvar_proto_msgTypes[28]
1630
if protoimpl.UnsafeEnabled && x != nil {
1631
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1632
if ms.LoadMessageInfo() == nil {
1633
ms.StoreMessageInfo(mi)
1634
}
1635
return ms
1636
}
1637
return mi.MessageOf(x)
1638
}
1639
1640
// Deprecated: Use ResolveWorkspaceEnvironmentVariablesResponse.ProtoReflect.Descriptor instead.
1641
func (*ResolveWorkspaceEnvironmentVariablesResponse) Descriptor() ([]byte, []int) {
1642
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{28}
1643
}
1644
1645
func (x *ResolveWorkspaceEnvironmentVariablesResponse) GetEnvironmentVariables() []*EnvironmentVariable {
1646
if x != nil {
1647
return x.EnvironmentVariables
1648
}
1649
return nil
1650
}
1651
1652
type EnvironmentVariable struct {
1653
state protoimpl.MessageState
1654
sizeCache protoimpl.SizeCache
1655
unknownFields protoimpl.UnknownFields
1656
1657
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
1658
Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
1659
}
1660
1661
func (x *EnvironmentVariable) Reset() {
1662
*x = EnvironmentVariable{}
1663
if protoimpl.UnsafeEnabled {
1664
mi := &file_gitpod_v1_envvar_proto_msgTypes[29]
1665
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1666
ms.StoreMessageInfo(mi)
1667
}
1668
}
1669
1670
func (x *EnvironmentVariable) String() string {
1671
return protoimpl.X.MessageStringOf(x)
1672
}
1673
1674
func (*EnvironmentVariable) ProtoMessage() {}
1675
1676
func (x *EnvironmentVariable) ProtoReflect() protoreflect.Message {
1677
mi := &file_gitpod_v1_envvar_proto_msgTypes[29]
1678
if protoimpl.UnsafeEnabled && x != nil {
1679
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1680
if ms.LoadMessageInfo() == nil {
1681
ms.StoreMessageInfo(mi)
1682
}
1683
return ms
1684
}
1685
return mi.MessageOf(x)
1686
}
1687
1688
// Deprecated: Use EnvironmentVariable.ProtoReflect.Descriptor instead.
1689
func (*EnvironmentVariable) Descriptor() ([]byte, []int) {
1690
return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{29}
1691
}
1692
1693
func (x *EnvironmentVariable) GetName() string {
1694
if x != nil {
1695
return x.Name
1696
}
1697
return ""
1698
}
1699
1700
func (x *EnvironmentVariable) GetValue() string {
1701
if x != nil {
1702
return x.Value
1703
}
1704
return ""
1705
}
1706
1707
var File_gitpod_v1_envvar_proto protoreflect.FileDescriptor
1708
1709
var file_gitpod_v1_envvar_proto_rawDesc = []byte{
1710
0x0a, 0x16, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x6e, 0x76, 0x76,
1711
0x61, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x09, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64,
1712
0x2e, 0x76, 0x31, 0x1a, 0x1a, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x76, 0x31, 0x2f, 0x70,
1713
0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
1714
0x82, 0x01, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,
1715
0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,
1716
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e,
1717
0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,
1718
0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
1719
0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74,
1720
0x6f, 0x72, 0x79, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
1721
0x09, 0x52, 0x11, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x74,
1722
0x74, 0x65, 0x72, 0x6e, 0x22, 0x63, 0x0a, 0x23, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x73, 0x65, 0x72,
1723
0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,
1724
0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x0a, 0x70,
1725
0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
1726
0x1c, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x67, 0x69,
1727
0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x0a, 0x70,
1728
0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xbe, 0x01, 0x0a, 0x24, 0x4c, 0x69,
1729
0x73, 0x74, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,
1730
0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
1731
0x73, 0x65, 0x12, 0x57, 0x0a, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,
1732
0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
1733
0x0b, 0x32, 0x22, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73,
1734
0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72,
1735
0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65,
1736
0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x3d, 0x0a, 0x0a, 0x70,
1737
0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
1738
0x1d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x67, 0x69,
1739
0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x0a,
1740
0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xf0, 0x01, 0x0a, 0x24, 0x55,
1741
0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,
1742
0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75,
1743
0x65, 0x73, 0x74, 0x12, 0x36, 0x0a, 0x17, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65,
1744
0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,
1745
0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,
1746
0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x04, 0x6e,
1747
0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x04, 0x6e, 0x61, 0x6d,
1748
0x65, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20,
1749
0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12,
1750
0x32, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x70, 0x61,
1751
0x74, 0x74, 0x65, 0x72, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x11, 0x72,
1752
0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e,
1753
0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x08, 0x0a, 0x06,
1754
0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x73,
1755
0x69, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x22, 0x7e, 0x0a,
1756
0x25, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72,
1757
0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65,
1758
0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f,
1759
0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x01,
1760
0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31,
1761
0x2e, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,
1762
0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f,
1763
0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x7f, 0x0a,
1764
0x24, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72,
1765
0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65,
1766
0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
1767
0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
1768
0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12,
1769
0x2d, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x70, 0x61,
1770
0x74, 0x74, 0x65, 0x72, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x72, 0x65, 0x70,
1771
0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x22, 0x7e,
1772
0x0a, 0x25, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69,
1773
0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,
1774
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72,
1775
0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x18,
1776
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76,
1777
0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,
1778
0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72,
1779
0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x5e,
1780
0x0a, 0x24, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69,
1781
0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,
1782
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x36, 0x0a, 0x17, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f,
1783
0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69,
1784
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,
1785
0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x64, 0x22, 0x27,
1786
0x0a, 0x25, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69,
1787
0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,
1788
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xb8, 0x01, 0x0a, 0x20, 0x43, 0x6f, 0x6e, 0x66,
1789
0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,
1790
0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02,
1791
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
1792
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
1793
0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
1794
0x6e, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6e, 0x66,
1795
0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x45, 0x0a, 0x09, 0x61,
1796
0x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27,
1797
0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x76, 0x69, 0x72,
1798
0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x64,
1799
0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x61, 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69,
1800
0x6f, 0x6e, 0x22, 0x97, 0x01, 0x0a, 0x2c, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
1801
0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,
1802
0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
1803
0x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61,
1804
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63,
1805
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x3c,
1806
0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
1807
0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50,
1808
0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
1809
0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xd0, 0x01, 0x0a,
1810
0x2d, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
1811
0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72,
1812
0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x60,
1813
0x0a, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61,
1814
0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e,
1815
0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1816
0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65,
1817
0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x14, 0x65, 0x6e, 0x76, 0x69,
1818
0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73,
1819
0x12, 0x3d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,
1820
0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31,
1821
0x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,
1822
0x6e, 0x73, 0x65, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,
1823
0xb3, 0x02, 0x0a, 0x2d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
1824
0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65,
1825
0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
1826
0x74, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,
1827
0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6e,
1828
0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x36, 0x0a, 0x17,
1829
0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69,
1830
0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65,
1831
0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62,
1832
0x6c, 0x65, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
1833
0x28, 0x09, 0x48, 0x00, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a,
1834
0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x05,
1835
0x76, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x4a, 0x0a, 0x09, 0x61, 0x64, 0x6d, 0x69,
1836
0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x67, 0x69,
1837
0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,
1838
0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x73,
1839
0x73, 0x69, 0x6f, 0x6e, 0x48, 0x02, 0x52, 0x09, 0x61, 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
1840
0x6e, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x08, 0x0a,
1841
0x06, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x61, 0x64, 0x6d, 0x69,
1842
0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x90, 0x01, 0x0a, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
1843
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76,
1844
0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,
1845
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5e, 0x0a, 0x14, 0x65, 0x6e, 0x76, 0x69,
1846
0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,
1847
0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,
1848
0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
1849
0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,
1850
0x62, 0x6c, 0x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,
1851
0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0xcb, 0x01, 0x0a, 0x2d, 0x43, 0x72, 0x65,
1852
0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
1853
0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,
1854
0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f,
1855
0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01,
1856
0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74,
1857
0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
1858
0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
1859
0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12,
1860
0x45, 0x0a, 0x09, 0x61, 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
1861
0x28, 0x0e, 0x32, 0x27, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45,
1862
0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62,
1863
0x6c, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x61, 0x64, 0x6d,
1864
0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x90, 0x01, 0x0a, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
1865
0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e,
1866
0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,
1867
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5e, 0x0a, 0x14, 0x65, 0x6e, 0x76,
1868
0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,
1869
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64,
1870
0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
1871
0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69,
1872
0x61, 0x62, 0x6c, 0x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,
1873
0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x67, 0x0a, 0x2d, 0x44, 0x65, 0x6c,
1874
0x65, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
1875
0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,
1876
0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x36, 0x0a, 0x17, 0x65, 0x6e,
1877
0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62,
1878
0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65, 0x6e, 0x76,
1879
0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,
1880
0x49, 0x64, 0x22, 0x30, 0x0a, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66,
1881
0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,
1882
0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70,
1883
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x6e, 0x0a, 0x1f, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
1884
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56,
1885
0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
1886
0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
1887
0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x6f,
1888
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x03,
1889
0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69,
1890
0x6f, 0x6e, 0x49, 0x64, 0x22, 0x94, 0x01, 0x0a, 0x2b, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x72, 0x67,
1891
0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,
1892
0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71,
1893
0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
1894
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f,
1895
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x3c, 0x0a,
1896
0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
1897
0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61,
1898
0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52,
1899
0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xce, 0x01, 0x0a, 0x2c,
1900
0x4c, 0x69, 0x73, 0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
1901
0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,
1902
0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x15,
1903
0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69,
1904
0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x69,
1905
0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
1906
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56,
1907
0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,
1908
0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x3d, 0x0a,
1909
0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,
1910
0x0b, 0x32, 0x1d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61,
1911
0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
1912
0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xd6, 0x01, 0x0a,
1913
0x2c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,
1914
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,
1915
0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a,
1916
0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64,
1917
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
1918
0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x36, 0x0a, 0x17, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f,
1919
0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69,
1920
0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,
1921
0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x17,
1922
0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x04,
1923
0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
1924
0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x88,
1925
0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f,
1926
0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x8e, 0x01, 0x0a, 0x2d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
1927
0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69,
1928
0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,
1929
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72,
1930
0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x18,
1931
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76,
1932
0x31, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e,
1933
0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,
1934
0x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,
1935
0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x81, 0x01, 0x0a, 0x2c, 0x43, 0x72, 0x65, 0x61, 0x74,
1936
0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76,
1937
0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,
1938
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e,
1939
0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
1940
0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
1941
0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
1942
0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20,
1943
0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x8e, 0x01, 0x0a, 0x2d, 0x43,
1944
0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
1945
0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69,
1946
0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, 0x14,
1947
0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69,
1948
0x61, 0x62, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x69, 0x74,
1949
0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,
1950
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,
1951
0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,
1952
0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x66, 0x0a, 0x2c, 0x44,
1953
0x65, 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
1954
0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69,
1955
0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x36, 0x0a, 0x17, 0x65,
1956
0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61,
1957
0x62, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65, 0x6e,
1958
0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,
1959
0x65, 0x49, 0x64, 0x22, 0x2f, 0x0a, 0x2d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x72, 0x67,
1960
0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,
1961
0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70,
1962
0x6f, 0x6e, 0x73, 0x65, 0x22, 0x50, 0x0a, 0x2b, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x57,
1963
0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,
1964
0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,
1965
0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65,
1966
0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x73,
1967
0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0x83, 0x01, 0x0a, 0x2c, 0x52, 0x65, 0x73, 0x6f, 0x6c,
1968
0x76, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x76, 0x69, 0x72,
1969
0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52,
1970
0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53, 0x0a, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72,
1971
0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73,
1972
0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,
1973
0x76, 0x31, 0x2e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,
1974
0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,
1975
0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x22, 0x3f, 0x0a, 0x13,
1976
0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,
1977
0x62, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
1978
0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
1979
0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2a, 0xaa, 0x01,
1980
0x0a, 0x1c, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72,
1981
0x69, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2e,
1982
0x0a, 0x2a, 0x45, 0x4e, 0x56, 0x49, 0x52, 0x4f, 0x4e, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x56, 0x41,
1983
0x52, 0x49, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x41, 0x44, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e,
1984
0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x2b,
1985
0x0a, 0x27, 0x45, 0x4e, 0x56, 0x49, 0x52, 0x4f, 0x4e, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x56, 0x41,
1986
0x52, 0x49, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x41, 0x44, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e,
1987
0x5f, 0x50, 0x52, 0x45, 0x42, 0x55, 0x49, 0x4c, 0x44, 0x10, 0x01, 0x12, 0x2d, 0x0a, 0x29, 0x45,
1988
0x4e, 0x56, 0x49, 0x52, 0x4f, 0x4e, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x56, 0x41, 0x52, 0x49, 0x41,
1989
0x42, 0x4c, 0x45, 0x5f, 0x41, 0x44, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x56,
1990
0x45, 0x52, 0x59, 0x57, 0x48, 0x45, 0x52, 0x45, 0x10, 0x02, 0x32, 0xcf, 0x0f, 0x0a, 0x1a, 0x45,
1991
0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62,
1992
0x6c, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x81, 0x01, 0x0a, 0x1c, 0x4c, 0x69,
1993
0x73, 0x74, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,
1994
0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x2e, 0x2e, 0x67, 0x69, 0x74,
1995
0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x73, 0x65, 0x72, 0x45,
1996
0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62,
1997
0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x67, 0x69, 0x74,
1998
0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x73, 0x65, 0x72, 0x45,
1999
0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62,
2000
0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x84, 0x01,
2001
0x0a, 0x1d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69,
2002
0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12,
2003
0x2f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61,
2004
0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,
2005
0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
2006
0x1a, 0x30, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64,
2007
0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65,
2008
0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
2009
0x73, 0x65, 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a, 0x1d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55,
2010
0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,
2011
0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,
2012
0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76,
2013
0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,
2014
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64,
2015
0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e,
2016
0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,
2017
0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a, 0x1d,
2018
0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f,
2019
0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2f, 0x2e,
2020
0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
2021
0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56,
2022
0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30,
2023
0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,
2024
0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,
2025
0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
2026
0x22, 0x00, 0x12, 0x9c, 0x01, 0x0a, 0x25, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,
2027
0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,
2028
0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x37, 0x2e, 0x67,
2029
0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e,
2030
0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f,
2031
0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65,
2032
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76,
2033
0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74,
2034
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,
2035
0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
2036
0x00, 0x12, 0x9f, 0x01, 0x0a, 0x26, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66,
2037
0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,
2038
0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x38, 0x2e, 0x67,
2039
0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43,
2040
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69,
2041
0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,
2042
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,
2043
0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75,
2044
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,
2045
0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
2046
0x65, 0x22, 0x00, 0x12, 0x9f, 0x01, 0x0a, 0x26, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x6f,
2047
0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72,
2048
0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x38,
2049
0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,
2050
0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e,
2051
0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,
2052
0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f,
2053
0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69,
2054
0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,
2055
0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,
2056
0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9f, 0x01, 0x0a, 0x26, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
2057
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76,
2058
0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,
2059
0x12, 0x38, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c,
2060
0x65, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
2061
0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,
2062
0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x67, 0x69, 0x74,
2063
0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6e,
2064
0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f,
2065
0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73,
2066
0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x99, 0x01, 0x0a, 0x24, 0x4c, 0x69, 0x73, 0x74,
2067
0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69,
2068
0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73,
2069
0x12, 0x36, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73,
2070
0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76,
2071
0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,
2072
0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f,
2073
0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
2074
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,
2075
0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
2076
0x65, 0x22, 0x00, 0x12, 0x9c, 0x01, 0x0a, 0x25, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x72,
2077
0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f,
2078
0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x37, 0x2e,
2079
0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
2080
0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69,
2081
0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,
2082
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,
2083
0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,
2084
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,
2085
0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
2086
0x22, 0x00, 0x12, 0x9c, 0x01, 0x0a, 0x25, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67,
2087
0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,
2088
0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x37, 0x2e, 0x67,
2089
0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f,
2090
0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72,
2091
0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65,
2092
0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76,
2093
0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,
2094
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56,
2095
0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
2096
0x00, 0x12, 0x9c, 0x01, 0x0a, 0x25, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61,
2097
0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,
2098
0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x37, 0x2e, 0x67, 0x69,
2099
0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x72,
2100
0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f,
2101
0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71,
2102
0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31,
2103
0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,
2104
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,
2105
0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,
2106
0x12, 0x99, 0x01, 0x0a, 0x24, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x57, 0x6f, 0x72, 0x6b,
2107
0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,
2108
0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x36, 0x2e, 0x67, 0x69, 0x74, 0x70,
2109
0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x57, 0x6f, 0x72,
2110
0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,
2111
0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
2112
0x74, 0x1a, 0x37, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65,
2113
0x73, 0x6f, 0x6c, 0x76, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e,
2114
0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,
2115
0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x51, 0x0a, 0x16,
2116
0x69, 0x6f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63,
2117
0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63,
2118
0x6f, 0x6d, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2d, 0x69, 0x6f, 0x2f, 0x67, 0x69, 0x74,
2119
0x70, 0x6f, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x70,
2120
0x75, 0x62, 0x6c, 0x69, 0x63, 0x2d, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x31, 0x62,
2121
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
2122
}
2123
2124
var (
2125
file_gitpod_v1_envvar_proto_rawDescOnce sync.Once
2126
file_gitpod_v1_envvar_proto_rawDescData = file_gitpod_v1_envvar_proto_rawDesc
2127
)
2128
2129
func file_gitpod_v1_envvar_proto_rawDescGZIP() []byte {
2130
file_gitpod_v1_envvar_proto_rawDescOnce.Do(func() {
2131
file_gitpod_v1_envvar_proto_rawDescData = protoimpl.X.CompressGZIP(file_gitpod_v1_envvar_proto_rawDescData)
2132
})
2133
return file_gitpod_v1_envvar_proto_rawDescData
2134
}
2135
2136
var file_gitpod_v1_envvar_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
2137
var file_gitpod_v1_envvar_proto_msgTypes = make([]protoimpl.MessageInfo, 30)
2138
var file_gitpod_v1_envvar_proto_goTypes = []interface{}{
2139
(EnvironmentVariableAdmission)(0), // 0: gitpod.v1.EnvironmentVariableAdmission
2140
(*UserEnvironmentVariable)(nil), // 1: gitpod.v1.UserEnvironmentVariable
2141
(*ListUserEnvironmentVariablesRequest)(nil), // 2: gitpod.v1.ListUserEnvironmentVariablesRequest
2142
(*ListUserEnvironmentVariablesResponse)(nil), // 3: gitpod.v1.ListUserEnvironmentVariablesResponse
2143
(*UpdateUserEnvironmentVariableRequest)(nil), // 4: gitpod.v1.UpdateUserEnvironmentVariableRequest
2144
(*UpdateUserEnvironmentVariableResponse)(nil), // 5: gitpod.v1.UpdateUserEnvironmentVariableResponse
2145
(*CreateUserEnvironmentVariableRequest)(nil), // 6: gitpod.v1.CreateUserEnvironmentVariableRequest
2146
(*CreateUserEnvironmentVariableResponse)(nil), // 7: gitpod.v1.CreateUserEnvironmentVariableResponse
2147
(*DeleteUserEnvironmentVariableRequest)(nil), // 8: gitpod.v1.DeleteUserEnvironmentVariableRequest
2148
(*DeleteUserEnvironmentVariableResponse)(nil), // 9: gitpod.v1.DeleteUserEnvironmentVariableResponse
2149
(*ConfigurationEnvironmentVariable)(nil), // 10: gitpod.v1.ConfigurationEnvironmentVariable
2150
(*ListConfigurationEnvironmentVariablesRequest)(nil), // 11: gitpod.v1.ListConfigurationEnvironmentVariablesRequest
2151
(*ListConfigurationEnvironmentVariablesResponse)(nil), // 12: gitpod.v1.ListConfigurationEnvironmentVariablesResponse
2152
(*UpdateConfigurationEnvironmentVariableRequest)(nil), // 13: gitpod.v1.UpdateConfigurationEnvironmentVariableRequest
2153
(*UpdateConfigurationEnvironmentVariableResponse)(nil), // 14: gitpod.v1.UpdateConfigurationEnvironmentVariableResponse
2154
(*CreateConfigurationEnvironmentVariableRequest)(nil), // 15: gitpod.v1.CreateConfigurationEnvironmentVariableRequest
2155
(*CreateConfigurationEnvironmentVariableResponse)(nil), // 16: gitpod.v1.CreateConfigurationEnvironmentVariableResponse
2156
(*DeleteConfigurationEnvironmentVariableRequest)(nil), // 17: gitpod.v1.DeleteConfigurationEnvironmentVariableRequest
2157
(*DeleteConfigurationEnvironmentVariableResponse)(nil), // 18: gitpod.v1.DeleteConfigurationEnvironmentVariableResponse
2158
(*OrganizationEnvironmentVariable)(nil), // 19: gitpod.v1.OrganizationEnvironmentVariable
2159
(*ListOrganizationEnvironmentVariablesRequest)(nil), // 20: gitpod.v1.ListOrganizationEnvironmentVariablesRequest
2160
(*ListOrganizationEnvironmentVariablesResponse)(nil), // 21: gitpod.v1.ListOrganizationEnvironmentVariablesResponse
2161
(*UpdateOrganizationEnvironmentVariableRequest)(nil), // 22: gitpod.v1.UpdateOrganizationEnvironmentVariableRequest
2162
(*UpdateOrganizationEnvironmentVariableResponse)(nil), // 23: gitpod.v1.UpdateOrganizationEnvironmentVariableResponse
2163
(*CreateOrganizationEnvironmentVariableRequest)(nil), // 24: gitpod.v1.CreateOrganizationEnvironmentVariableRequest
2164
(*CreateOrganizationEnvironmentVariableResponse)(nil), // 25: gitpod.v1.CreateOrganizationEnvironmentVariableResponse
2165
(*DeleteOrganizationEnvironmentVariableRequest)(nil), // 26: gitpod.v1.DeleteOrganizationEnvironmentVariableRequest
2166
(*DeleteOrganizationEnvironmentVariableResponse)(nil), // 27: gitpod.v1.DeleteOrganizationEnvironmentVariableResponse
2167
(*ResolveWorkspaceEnvironmentVariablesRequest)(nil), // 28: gitpod.v1.ResolveWorkspaceEnvironmentVariablesRequest
2168
(*ResolveWorkspaceEnvironmentVariablesResponse)(nil), // 29: gitpod.v1.ResolveWorkspaceEnvironmentVariablesResponse
2169
(*EnvironmentVariable)(nil), // 30: gitpod.v1.EnvironmentVariable
2170
(*PaginationRequest)(nil), // 31: gitpod.v1.PaginationRequest
2171
(*PaginationResponse)(nil), // 32: gitpod.v1.PaginationResponse
2172
}
2173
var file_gitpod_v1_envvar_proto_depIdxs = []int32{
2174
31, // 0: gitpod.v1.ListUserEnvironmentVariablesRequest.pagination:type_name -> gitpod.v1.PaginationRequest
2175
1, // 1: gitpod.v1.ListUserEnvironmentVariablesResponse.environment_variables:type_name -> gitpod.v1.UserEnvironmentVariable
2176
32, // 2: gitpod.v1.ListUserEnvironmentVariablesResponse.pagination:type_name -> gitpod.v1.PaginationResponse
2177
1, // 3: gitpod.v1.UpdateUserEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.UserEnvironmentVariable
2178
1, // 4: gitpod.v1.CreateUserEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.UserEnvironmentVariable
2179
0, // 5: gitpod.v1.ConfigurationEnvironmentVariable.admission:type_name -> gitpod.v1.EnvironmentVariableAdmission
2180
31, // 6: gitpod.v1.ListConfigurationEnvironmentVariablesRequest.pagination:type_name -> gitpod.v1.PaginationRequest
2181
10, // 7: gitpod.v1.ListConfigurationEnvironmentVariablesResponse.environment_variables:type_name -> gitpod.v1.ConfigurationEnvironmentVariable
2182
32, // 8: gitpod.v1.ListConfigurationEnvironmentVariablesResponse.pagination:type_name -> gitpod.v1.PaginationResponse
2183
0, // 9: gitpod.v1.UpdateConfigurationEnvironmentVariableRequest.admission:type_name -> gitpod.v1.EnvironmentVariableAdmission
2184
10, // 10: gitpod.v1.UpdateConfigurationEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.ConfigurationEnvironmentVariable
2185
0, // 11: gitpod.v1.CreateConfigurationEnvironmentVariableRequest.admission:type_name -> gitpod.v1.EnvironmentVariableAdmission
2186
10, // 12: gitpod.v1.CreateConfigurationEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.ConfigurationEnvironmentVariable
2187
31, // 13: gitpod.v1.ListOrganizationEnvironmentVariablesRequest.pagination:type_name -> gitpod.v1.PaginationRequest
2188
19, // 14: gitpod.v1.ListOrganizationEnvironmentVariablesResponse.environment_variables:type_name -> gitpod.v1.OrganizationEnvironmentVariable
2189
32, // 15: gitpod.v1.ListOrganizationEnvironmentVariablesResponse.pagination:type_name -> gitpod.v1.PaginationResponse
2190
19, // 16: gitpod.v1.UpdateOrganizationEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.OrganizationEnvironmentVariable
2191
19, // 17: gitpod.v1.CreateOrganizationEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.OrganizationEnvironmentVariable
2192
30, // 18: gitpod.v1.ResolveWorkspaceEnvironmentVariablesResponse.environment_variables:type_name -> gitpod.v1.EnvironmentVariable
2193
2, // 19: gitpod.v1.EnvironmentVariableService.ListUserEnvironmentVariables:input_type -> gitpod.v1.ListUserEnvironmentVariablesRequest
2194
4, // 20: gitpod.v1.EnvironmentVariableService.UpdateUserEnvironmentVariable:input_type -> gitpod.v1.UpdateUserEnvironmentVariableRequest
2195
6, // 21: gitpod.v1.EnvironmentVariableService.CreateUserEnvironmentVariable:input_type -> gitpod.v1.CreateUserEnvironmentVariableRequest
2196
8, // 22: gitpod.v1.EnvironmentVariableService.DeleteUserEnvironmentVariable:input_type -> gitpod.v1.DeleteUserEnvironmentVariableRequest
2197
11, // 23: gitpod.v1.EnvironmentVariableService.ListConfigurationEnvironmentVariables:input_type -> gitpod.v1.ListConfigurationEnvironmentVariablesRequest
2198
13, // 24: gitpod.v1.EnvironmentVariableService.UpdateConfigurationEnvironmentVariable:input_type -> gitpod.v1.UpdateConfigurationEnvironmentVariableRequest
2199
15, // 25: gitpod.v1.EnvironmentVariableService.CreateConfigurationEnvironmentVariable:input_type -> gitpod.v1.CreateConfigurationEnvironmentVariableRequest
2200
17, // 26: gitpod.v1.EnvironmentVariableService.DeleteConfigurationEnvironmentVariable:input_type -> gitpod.v1.DeleteConfigurationEnvironmentVariableRequest
2201
20, // 27: gitpod.v1.EnvironmentVariableService.ListOrganizationEnvironmentVariables:input_type -> gitpod.v1.ListOrganizationEnvironmentVariablesRequest
2202
22, // 28: gitpod.v1.EnvironmentVariableService.UpdateOrganizationEnvironmentVariable:input_type -> gitpod.v1.UpdateOrganizationEnvironmentVariableRequest
2203
24, // 29: gitpod.v1.EnvironmentVariableService.CreateOrganizationEnvironmentVariable:input_type -> gitpod.v1.CreateOrganizationEnvironmentVariableRequest
2204
26, // 30: gitpod.v1.EnvironmentVariableService.DeleteOrganizationEnvironmentVariable:input_type -> gitpod.v1.DeleteOrganizationEnvironmentVariableRequest
2205
28, // 31: gitpod.v1.EnvironmentVariableService.ResolveWorkspaceEnvironmentVariables:input_type -> gitpod.v1.ResolveWorkspaceEnvironmentVariablesRequest
2206
3, // 32: gitpod.v1.EnvironmentVariableService.ListUserEnvironmentVariables:output_type -> gitpod.v1.ListUserEnvironmentVariablesResponse
2207
5, // 33: gitpod.v1.EnvironmentVariableService.UpdateUserEnvironmentVariable:output_type -> gitpod.v1.UpdateUserEnvironmentVariableResponse
2208
7, // 34: gitpod.v1.EnvironmentVariableService.CreateUserEnvironmentVariable:output_type -> gitpod.v1.CreateUserEnvironmentVariableResponse
2209
9, // 35: gitpod.v1.EnvironmentVariableService.DeleteUserEnvironmentVariable:output_type -> gitpod.v1.DeleteUserEnvironmentVariableResponse
2210
12, // 36: gitpod.v1.EnvironmentVariableService.ListConfigurationEnvironmentVariables:output_type -> gitpod.v1.ListConfigurationEnvironmentVariablesResponse
2211
14, // 37: gitpod.v1.EnvironmentVariableService.UpdateConfigurationEnvironmentVariable:output_type -> gitpod.v1.UpdateConfigurationEnvironmentVariableResponse
2212
16, // 38: gitpod.v1.EnvironmentVariableService.CreateConfigurationEnvironmentVariable:output_type -> gitpod.v1.CreateConfigurationEnvironmentVariableResponse
2213
18, // 39: gitpod.v1.EnvironmentVariableService.DeleteConfigurationEnvironmentVariable:output_type -> gitpod.v1.DeleteConfigurationEnvironmentVariableResponse
2214
21, // 40: gitpod.v1.EnvironmentVariableService.ListOrganizationEnvironmentVariables:output_type -> gitpod.v1.ListOrganizationEnvironmentVariablesResponse
2215
23, // 41: gitpod.v1.EnvironmentVariableService.UpdateOrganizationEnvironmentVariable:output_type -> gitpod.v1.UpdateOrganizationEnvironmentVariableResponse
2216
25, // 42: gitpod.v1.EnvironmentVariableService.CreateOrganizationEnvironmentVariable:output_type -> gitpod.v1.CreateOrganizationEnvironmentVariableResponse
2217
27, // 43: gitpod.v1.EnvironmentVariableService.DeleteOrganizationEnvironmentVariable:output_type -> gitpod.v1.DeleteOrganizationEnvironmentVariableResponse
2218
29, // 44: gitpod.v1.EnvironmentVariableService.ResolveWorkspaceEnvironmentVariables:output_type -> gitpod.v1.ResolveWorkspaceEnvironmentVariablesResponse
2219
32, // [32:45] is the sub-list for method output_type
2220
19, // [19:32] is the sub-list for method input_type
2221
19, // [19:19] is the sub-list for extension type_name
2222
19, // [19:19] is the sub-list for extension extendee
2223
0, // [0:19] is the sub-list for field type_name
2224
}
2225
2226
func init() { file_gitpod_v1_envvar_proto_init() }
2227
func file_gitpod_v1_envvar_proto_init() {
2228
if File_gitpod_v1_envvar_proto != nil {
2229
return
2230
}
2231
file_gitpod_v1_pagination_proto_init()
2232
if !protoimpl.UnsafeEnabled {
2233
file_gitpod_v1_envvar_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
2234
switch v := v.(*UserEnvironmentVariable); i {
2235
case 0:
2236
return &v.state
2237
case 1:
2238
return &v.sizeCache
2239
case 2:
2240
return &v.unknownFields
2241
default:
2242
return nil
2243
}
2244
}
2245
file_gitpod_v1_envvar_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
2246
switch v := v.(*ListUserEnvironmentVariablesRequest); i {
2247
case 0:
2248
return &v.state
2249
case 1:
2250
return &v.sizeCache
2251
case 2:
2252
return &v.unknownFields
2253
default:
2254
return nil
2255
}
2256
}
2257
file_gitpod_v1_envvar_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
2258
switch v := v.(*ListUserEnvironmentVariablesResponse); i {
2259
case 0:
2260
return &v.state
2261
case 1:
2262
return &v.sizeCache
2263
case 2:
2264
return &v.unknownFields
2265
default:
2266
return nil
2267
}
2268
}
2269
file_gitpod_v1_envvar_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
2270
switch v := v.(*UpdateUserEnvironmentVariableRequest); i {
2271
case 0:
2272
return &v.state
2273
case 1:
2274
return &v.sizeCache
2275
case 2:
2276
return &v.unknownFields
2277
default:
2278
return nil
2279
}
2280
}
2281
file_gitpod_v1_envvar_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
2282
switch v := v.(*UpdateUserEnvironmentVariableResponse); i {
2283
case 0:
2284
return &v.state
2285
case 1:
2286
return &v.sizeCache
2287
case 2:
2288
return &v.unknownFields
2289
default:
2290
return nil
2291
}
2292
}
2293
file_gitpod_v1_envvar_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
2294
switch v := v.(*CreateUserEnvironmentVariableRequest); i {
2295
case 0:
2296
return &v.state
2297
case 1:
2298
return &v.sizeCache
2299
case 2:
2300
return &v.unknownFields
2301
default:
2302
return nil
2303
}
2304
}
2305
file_gitpod_v1_envvar_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
2306
switch v := v.(*CreateUserEnvironmentVariableResponse); i {
2307
case 0:
2308
return &v.state
2309
case 1:
2310
return &v.sizeCache
2311
case 2:
2312
return &v.unknownFields
2313
default:
2314
return nil
2315
}
2316
}
2317
file_gitpod_v1_envvar_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
2318
switch v := v.(*DeleteUserEnvironmentVariableRequest); i {
2319
case 0:
2320
return &v.state
2321
case 1:
2322
return &v.sizeCache
2323
case 2:
2324
return &v.unknownFields
2325
default:
2326
return nil
2327
}
2328
}
2329
file_gitpod_v1_envvar_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
2330
switch v := v.(*DeleteUserEnvironmentVariableResponse); i {
2331
case 0:
2332
return &v.state
2333
case 1:
2334
return &v.sizeCache
2335
case 2:
2336
return &v.unknownFields
2337
default:
2338
return nil
2339
}
2340
}
2341
file_gitpod_v1_envvar_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
2342
switch v := v.(*ConfigurationEnvironmentVariable); i {
2343
case 0:
2344
return &v.state
2345
case 1:
2346
return &v.sizeCache
2347
case 2:
2348
return &v.unknownFields
2349
default:
2350
return nil
2351
}
2352
}
2353
file_gitpod_v1_envvar_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
2354
switch v := v.(*ListConfigurationEnvironmentVariablesRequest); i {
2355
case 0:
2356
return &v.state
2357
case 1:
2358
return &v.sizeCache
2359
case 2:
2360
return &v.unknownFields
2361
default:
2362
return nil
2363
}
2364
}
2365
file_gitpod_v1_envvar_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
2366
switch v := v.(*ListConfigurationEnvironmentVariablesResponse); i {
2367
case 0:
2368
return &v.state
2369
case 1:
2370
return &v.sizeCache
2371
case 2:
2372
return &v.unknownFields
2373
default:
2374
return nil
2375
}
2376
}
2377
file_gitpod_v1_envvar_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
2378
switch v := v.(*UpdateConfigurationEnvironmentVariableRequest); i {
2379
case 0:
2380
return &v.state
2381
case 1:
2382
return &v.sizeCache
2383
case 2:
2384
return &v.unknownFields
2385
default:
2386
return nil
2387
}
2388
}
2389
file_gitpod_v1_envvar_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
2390
switch v := v.(*UpdateConfigurationEnvironmentVariableResponse); i {
2391
case 0:
2392
return &v.state
2393
case 1:
2394
return &v.sizeCache
2395
case 2:
2396
return &v.unknownFields
2397
default:
2398
return nil
2399
}
2400
}
2401
file_gitpod_v1_envvar_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
2402
switch v := v.(*CreateConfigurationEnvironmentVariableRequest); i {
2403
case 0:
2404
return &v.state
2405
case 1:
2406
return &v.sizeCache
2407
case 2:
2408
return &v.unknownFields
2409
default:
2410
return nil
2411
}
2412
}
2413
file_gitpod_v1_envvar_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
2414
switch v := v.(*CreateConfigurationEnvironmentVariableResponse); i {
2415
case 0:
2416
return &v.state
2417
case 1:
2418
return &v.sizeCache
2419
case 2:
2420
return &v.unknownFields
2421
default:
2422
return nil
2423
}
2424
}
2425
file_gitpod_v1_envvar_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
2426
switch v := v.(*DeleteConfigurationEnvironmentVariableRequest); i {
2427
case 0:
2428
return &v.state
2429
case 1:
2430
return &v.sizeCache
2431
case 2:
2432
return &v.unknownFields
2433
default:
2434
return nil
2435
}
2436
}
2437
file_gitpod_v1_envvar_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
2438
switch v := v.(*DeleteConfigurationEnvironmentVariableResponse); i {
2439
case 0:
2440
return &v.state
2441
case 1:
2442
return &v.sizeCache
2443
case 2:
2444
return &v.unknownFields
2445
default:
2446
return nil
2447
}
2448
}
2449
file_gitpod_v1_envvar_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
2450
switch v := v.(*OrganizationEnvironmentVariable); i {
2451
case 0:
2452
return &v.state
2453
case 1:
2454
return &v.sizeCache
2455
case 2:
2456
return &v.unknownFields
2457
default:
2458
return nil
2459
}
2460
}
2461
file_gitpod_v1_envvar_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
2462
switch v := v.(*ListOrganizationEnvironmentVariablesRequest); i {
2463
case 0:
2464
return &v.state
2465
case 1:
2466
return &v.sizeCache
2467
case 2:
2468
return &v.unknownFields
2469
default:
2470
return nil
2471
}
2472
}
2473
file_gitpod_v1_envvar_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
2474
switch v := v.(*ListOrganizationEnvironmentVariablesResponse); i {
2475
case 0:
2476
return &v.state
2477
case 1:
2478
return &v.sizeCache
2479
case 2:
2480
return &v.unknownFields
2481
default:
2482
return nil
2483
}
2484
}
2485
file_gitpod_v1_envvar_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
2486
switch v := v.(*UpdateOrganizationEnvironmentVariableRequest); i {
2487
case 0:
2488
return &v.state
2489
case 1:
2490
return &v.sizeCache
2491
case 2:
2492
return &v.unknownFields
2493
default:
2494
return nil
2495
}
2496
}
2497
file_gitpod_v1_envvar_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
2498
switch v := v.(*UpdateOrganizationEnvironmentVariableResponse); i {
2499
case 0:
2500
return &v.state
2501
case 1:
2502
return &v.sizeCache
2503
case 2:
2504
return &v.unknownFields
2505
default:
2506
return nil
2507
}
2508
}
2509
file_gitpod_v1_envvar_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
2510
switch v := v.(*CreateOrganizationEnvironmentVariableRequest); i {
2511
case 0:
2512
return &v.state
2513
case 1:
2514
return &v.sizeCache
2515
case 2:
2516
return &v.unknownFields
2517
default:
2518
return nil
2519
}
2520
}
2521
file_gitpod_v1_envvar_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
2522
switch v := v.(*CreateOrganizationEnvironmentVariableResponse); i {
2523
case 0:
2524
return &v.state
2525
case 1:
2526
return &v.sizeCache
2527
case 2:
2528
return &v.unknownFields
2529
default:
2530
return nil
2531
}
2532
}
2533
file_gitpod_v1_envvar_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
2534
switch v := v.(*DeleteOrganizationEnvironmentVariableRequest); i {
2535
case 0:
2536
return &v.state
2537
case 1:
2538
return &v.sizeCache
2539
case 2:
2540
return &v.unknownFields
2541
default:
2542
return nil
2543
}
2544
}
2545
file_gitpod_v1_envvar_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
2546
switch v := v.(*DeleteOrganizationEnvironmentVariableResponse); i {
2547
case 0:
2548
return &v.state
2549
case 1:
2550
return &v.sizeCache
2551
case 2:
2552
return &v.unknownFields
2553
default:
2554
return nil
2555
}
2556
}
2557
file_gitpod_v1_envvar_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
2558
switch v := v.(*ResolveWorkspaceEnvironmentVariablesRequest); i {
2559
case 0:
2560
return &v.state
2561
case 1:
2562
return &v.sizeCache
2563
case 2:
2564
return &v.unknownFields
2565
default:
2566
return nil
2567
}
2568
}
2569
file_gitpod_v1_envvar_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
2570
switch v := v.(*ResolveWorkspaceEnvironmentVariablesResponse); i {
2571
case 0:
2572
return &v.state
2573
case 1:
2574
return &v.sizeCache
2575
case 2:
2576
return &v.unknownFields
2577
default:
2578
return nil
2579
}
2580
}
2581
file_gitpod_v1_envvar_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
2582
switch v := v.(*EnvironmentVariable); i {
2583
case 0:
2584
return &v.state
2585
case 1:
2586
return &v.sizeCache
2587
case 2:
2588
return &v.unknownFields
2589
default:
2590
return nil
2591
}
2592
}
2593
}
2594
file_gitpod_v1_envvar_proto_msgTypes[3].OneofWrappers = []interface{}{}
2595
file_gitpod_v1_envvar_proto_msgTypes[12].OneofWrappers = []interface{}{}
2596
file_gitpod_v1_envvar_proto_msgTypes[21].OneofWrappers = []interface{}{}
2597
type x struct{}
2598
out := protoimpl.TypeBuilder{
2599
File: protoimpl.DescBuilder{
2600
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
2601
RawDescriptor: file_gitpod_v1_envvar_proto_rawDesc,
2602
NumEnums: 1,
2603
NumMessages: 30,
2604
NumExtensions: 0,
2605
NumServices: 1,
2606
},
2607
GoTypes: file_gitpod_v1_envvar_proto_goTypes,
2608
DependencyIndexes: file_gitpod_v1_envvar_proto_depIdxs,
2609
EnumInfos: file_gitpod_v1_envvar_proto_enumTypes,
2610
MessageInfos: file_gitpod_v1_envvar_proto_msgTypes,
2611
}.Build()
2612
File_gitpod_v1_envvar_proto = out.File
2613
file_gitpod_v1_envvar_proto_rawDesc = nil
2614
file_gitpod_v1_envvar_proto_goTypes = nil
2615
file_gitpod_v1_envvar_proto_depIdxs = nil
2616
}
2617
2618