Path: blob/main/components/public-api/go/v1/envvar.pb.go
2500 views
// Copyright (c) 2025 Gitpod GmbH. All rights reserved.1// Licensed under the GNU Affero General Public License (AGPL).2// See License.AGPL.txt in the project root for license information.34// Code generated by protoc-gen-go. DO NOT EDIT.5// versions:6// protoc-gen-go v1.28.17// protoc (unknown)8// source: gitpod/v1/envvar.proto910package v11112import (13protoreflect "google.golang.org/protobuf/reflect/protoreflect"14protoimpl "google.golang.org/protobuf/runtime/protoimpl"15reflect "reflect"16sync "sync"17)1819const (20// Verify that this generated code is sufficiently up-to-date.21_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)22// Verify that runtime/protoimpl is sufficiently up-to-date.23_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)24)2526type EnvironmentVariableAdmission int322728const (29EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED EnvironmentVariableAdmission = 030EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_PREBUILD EnvironmentVariableAdmission = 131EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_EVERYWHERE EnvironmentVariableAdmission = 232)3334// Enum value maps for EnvironmentVariableAdmission.35var (36EnvironmentVariableAdmission_name = map[int32]string{370: "ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED",381: "ENVIRONMENT_VARIABLE_ADMISSION_PREBUILD",392: "ENVIRONMENT_VARIABLE_ADMISSION_EVERYWHERE",40}41EnvironmentVariableAdmission_value = map[string]int32{42"ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED": 0,43"ENVIRONMENT_VARIABLE_ADMISSION_PREBUILD": 1,44"ENVIRONMENT_VARIABLE_ADMISSION_EVERYWHERE": 2,45}46)4748func (x EnvironmentVariableAdmission) Enum() *EnvironmentVariableAdmission {49p := new(EnvironmentVariableAdmission)50*p = x51return p52}5354func (x EnvironmentVariableAdmission) String() string {55return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))56}5758func (EnvironmentVariableAdmission) Descriptor() protoreflect.EnumDescriptor {59return file_gitpod_v1_envvar_proto_enumTypes[0].Descriptor()60}6162func (EnvironmentVariableAdmission) Type() protoreflect.EnumType {63return &file_gitpod_v1_envvar_proto_enumTypes[0]64}6566func (x EnvironmentVariableAdmission) Number() protoreflect.EnumNumber {67return protoreflect.EnumNumber(x)68}6970// Deprecated: Use EnvironmentVariableAdmission.Descriptor instead.71func (EnvironmentVariableAdmission) EnumDescriptor() ([]byte, []int) {72return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{0}73}7475type UserEnvironmentVariable struct {76state protoimpl.MessageState77sizeCache protoimpl.SizeCache78unknownFields protoimpl.UnknownFields7980Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`81Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`82Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`83RepositoryPattern string `protobuf:"bytes,4,opt,name=repository_pattern,json=repositoryPattern,proto3" json:"repository_pattern,omitempty"`84}8586func (x *UserEnvironmentVariable) Reset() {87*x = UserEnvironmentVariable{}88if protoimpl.UnsafeEnabled {89mi := &file_gitpod_v1_envvar_proto_msgTypes[0]90ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))91ms.StoreMessageInfo(mi)92}93}9495func (x *UserEnvironmentVariable) String() string {96return protoimpl.X.MessageStringOf(x)97}9899func (*UserEnvironmentVariable) ProtoMessage() {}100101func (x *UserEnvironmentVariable) ProtoReflect() protoreflect.Message {102mi := &file_gitpod_v1_envvar_proto_msgTypes[0]103if protoimpl.UnsafeEnabled && x != nil {104ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))105if ms.LoadMessageInfo() == nil {106ms.StoreMessageInfo(mi)107}108return ms109}110return mi.MessageOf(x)111}112113// Deprecated: Use UserEnvironmentVariable.ProtoReflect.Descriptor instead.114func (*UserEnvironmentVariable) Descriptor() ([]byte, []int) {115return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{0}116}117118func (x *UserEnvironmentVariable) GetId() string {119if x != nil {120return x.Id121}122return ""123}124125func (x *UserEnvironmentVariable) GetName() string {126if x != nil {127return x.Name128}129return ""130}131132func (x *UserEnvironmentVariable) GetValue() string {133if x != nil {134return x.Value135}136return ""137}138139func (x *UserEnvironmentVariable) GetRepositoryPattern() string {140if x != nil {141return x.RepositoryPattern142}143return ""144}145146type ListUserEnvironmentVariablesRequest struct {147state protoimpl.MessageState148sizeCache protoimpl.SizeCache149unknownFields protoimpl.UnknownFields150151Pagination *PaginationRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`152}153154func (x *ListUserEnvironmentVariablesRequest) Reset() {155*x = ListUserEnvironmentVariablesRequest{}156if protoimpl.UnsafeEnabled {157mi := &file_gitpod_v1_envvar_proto_msgTypes[1]158ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))159ms.StoreMessageInfo(mi)160}161}162163func (x *ListUserEnvironmentVariablesRequest) String() string {164return protoimpl.X.MessageStringOf(x)165}166167func (*ListUserEnvironmentVariablesRequest) ProtoMessage() {}168169func (x *ListUserEnvironmentVariablesRequest) ProtoReflect() protoreflect.Message {170mi := &file_gitpod_v1_envvar_proto_msgTypes[1]171if protoimpl.UnsafeEnabled && x != nil {172ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))173if ms.LoadMessageInfo() == nil {174ms.StoreMessageInfo(mi)175}176return ms177}178return mi.MessageOf(x)179}180181// Deprecated: Use ListUserEnvironmentVariablesRequest.ProtoReflect.Descriptor instead.182func (*ListUserEnvironmentVariablesRequest) Descriptor() ([]byte, []int) {183return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{1}184}185186func (x *ListUserEnvironmentVariablesRequest) GetPagination() *PaginationRequest {187if x != nil {188return x.Pagination189}190return nil191}192193type ListUserEnvironmentVariablesResponse struct {194state protoimpl.MessageState195sizeCache protoimpl.SizeCache196unknownFields protoimpl.UnknownFields197198EnvironmentVariables []*UserEnvironmentVariable `protobuf:"bytes,1,rep,name=environment_variables,json=environmentVariables,proto3" json:"environment_variables,omitempty"`199Pagination *PaginationResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`200}201202func (x *ListUserEnvironmentVariablesResponse) Reset() {203*x = ListUserEnvironmentVariablesResponse{}204if protoimpl.UnsafeEnabled {205mi := &file_gitpod_v1_envvar_proto_msgTypes[2]206ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))207ms.StoreMessageInfo(mi)208}209}210211func (x *ListUserEnvironmentVariablesResponse) String() string {212return protoimpl.X.MessageStringOf(x)213}214215func (*ListUserEnvironmentVariablesResponse) ProtoMessage() {}216217func (x *ListUserEnvironmentVariablesResponse) ProtoReflect() protoreflect.Message {218mi := &file_gitpod_v1_envvar_proto_msgTypes[2]219if protoimpl.UnsafeEnabled && x != nil {220ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))221if ms.LoadMessageInfo() == nil {222ms.StoreMessageInfo(mi)223}224return ms225}226return mi.MessageOf(x)227}228229// Deprecated: Use ListUserEnvironmentVariablesResponse.ProtoReflect.Descriptor instead.230func (*ListUserEnvironmentVariablesResponse) Descriptor() ([]byte, []int) {231return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{2}232}233234func (x *ListUserEnvironmentVariablesResponse) GetEnvironmentVariables() []*UserEnvironmentVariable {235if x != nil {236return x.EnvironmentVariables237}238return nil239}240241func (x *ListUserEnvironmentVariablesResponse) GetPagination() *PaginationResponse {242if x != nil {243return x.Pagination244}245return nil246}247248type UpdateUserEnvironmentVariableRequest struct {249state protoimpl.MessageState250sizeCache protoimpl.SizeCache251unknownFields protoimpl.UnknownFields252253EnvironmentVariableId string `protobuf:"bytes,1,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`254Name *string `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`255Value *string `protobuf:"bytes,3,opt,name=value,proto3,oneof" json:"value,omitempty"`256RepositoryPattern *string `protobuf:"bytes,4,opt,name=repository_pattern,json=repositoryPattern,proto3,oneof" json:"repository_pattern,omitempty"`257}258259func (x *UpdateUserEnvironmentVariableRequest) Reset() {260*x = UpdateUserEnvironmentVariableRequest{}261if protoimpl.UnsafeEnabled {262mi := &file_gitpod_v1_envvar_proto_msgTypes[3]263ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))264ms.StoreMessageInfo(mi)265}266}267268func (x *UpdateUserEnvironmentVariableRequest) String() string {269return protoimpl.X.MessageStringOf(x)270}271272func (*UpdateUserEnvironmentVariableRequest) ProtoMessage() {}273274func (x *UpdateUserEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {275mi := &file_gitpod_v1_envvar_proto_msgTypes[3]276if protoimpl.UnsafeEnabled && x != nil {277ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))278if ms.LoadMessageInfo() == nil {279ms.StoreMessageInfo(mi)280}281return ms282}283return mi.MessageOf(x)284}285286// Deprecated: Use UpdateUserEnvironmentVariableRequest.ProtoReflect.Descriptor instead.287func (*UpdateUserEnvironmentVariableRequest) Descriptor() ([]byte, []int) {288return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{3}289}290291func (x *UpdateUserEnvironmentVariableRequest) GetEnvironmentVariableId() string {292if x != nil {293return x.EnvironmentVariableId294}295return ""296}297298func (x *UpdateUserEnvironmentVariableRequest) GetName() string {299if x != nil && x.Name != nil {300return *x.Name301}302return ""303}304305func (x *UpdateUserEnvironmentVariableRequest) GetValue() string {306if x != nil && x.Value != nil {307return *x.Value308}309return ""310}311312func (x *UpdateUserEnvironmentVariableRequest) GetRepositoryPattern() string {313if x != nil && x.RepositoryPattern != nil {314return *x.RepositoryPattern315}316return ""317}318319type UpdateUserEnvironmentVariableResponse struct {320state protoimpl.MessageState321sizeCache protoimpl.SizeCache322unknownFields protoimpl.UnknownFields323324EnvironmentVariable *UserEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`325}326327func (x *UpdateUserEnvironmentVariableResponse) Reset() {328*x = UpdateUserEnvironmentVariableResponse{}329if protoimpl.UnsafeEnabled {330mi := &file_gitpod_v1_envvar_proto_msgTypes[4]331ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))332ms.StoreMessageInfo(mi)333}334}335336func (x *UpdateUserEnvironmentVariableResponse) String() string {337return protoimpl.X.MessageStringOf(x)338}339340func (*UpdateUserEnvironmentVariableResponse) ProtoMessage() {}341342func (x *UpdateUserEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {343mi := &file_gitpod_v1_envvar_proto_msgTypes[4]344if protoimpl.UnsafeEnabled && x != nil {345ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))346if ms.LoadMessageInfo() == nil {347ms.StoreMessageInfo(mi)348}349return ms350}351return mi.MessageOf(x)352}353354// Deprecated: Use UpdateUserEnvironmentVariableResponse.ProtoReflect.Descriptor instead.355func (*UpdateUserEnvironmentVariableResponse) Descriptor() ([]byte, []int) {356return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{4}357}358359func (x *UpdateUserEnvironmentVariableResponse) GetEnvironmentVariable() *UserEnvironmentVariable {360if x != nil {361return x.EnvironmentVariable362}363return nil364}365366type CreateUserEnvironmentVariableRequest struct {367state protoimpl.MessageState368sizeCache protoimpl.SizeCache369unknownFields protoimpl.UnknownFields370371Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`372Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`373RepositoryPattern string `protobuf:"bytes,3,opt,name=repository_pattern,json=repositoryPattern,proto3" json:"repository_pattern,omitempty"`374}375376func (x *CreateUserEnvironmentVariableRequest) Reset() {377*x = CreateUserEnvironmentVariableRequest{}378if protoimpl.UnsafeEnabled {379mi := &file_gitpod_v1_envvar_proto_msgTypes[5]380ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))381ms.StoreMessageInfo(mi)382}383}384385func (x *CreateUserEnvironmentVariableRequest) String() string {386return protoimpl.X.MessageStringOf(x)387}388389func (*CreateUserEnvironmentVariableRequest) ProtoMessage() {}390391func (x *CreateUserEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {392mi := &file_gitpod_v1_envvar_proto_msgTypes[5]393if protoimpl.UnsafeEnabled && x != nil {394ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))395if ms.LoadMessageInfo() == nil {396ms.StoreMessageInfo(mi)397}398return ms399}400return mi.MessageOf(x)401}402403// Deprecated: Use CreateUserEnvironmentVariableRequest.ProtoReflect.Descriptor instead.404func (*CreateUserEnvironmentVariableRequest) Descriptor() ([]byte, []int) {405return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{5}406}407408func (x *CreateUserEnvironmentVariableRequest) GetName() string {409if x != nil {410return x.Name411}412return ""413}414415func (x *CreateUserEnvironmentVariableRequest) GetValue() string {416if x != nil {417return x.Value418}419return ""420}421422func (x *CreateUserEnvironmentVariableRequest) GetRepositoryPattern() string {423if x != nil {424return x.RepositoryPattern425}426return ""427}428429type CreateUserEnvironmentVariableResponse struct {430state protoimpl.MessageState431sizeCache protoimpl.SizeCache432unknownFields protoimpl.UnknownFields433434EnvironmentVariable *UserEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`435}436437func (x *CreateUserEnvironmentVariableResponse) Reset() {438*x = CreateUserEnvironmentVariableResponse{}439if protoimpl.UnsafeEnabled {440mi := &file_gitpod_v1_envvar_proto_msgTypes[6]441ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))442ms.StoreMessageInfo(mi)443}444}445446func (x *CreateUserEnvironmentVariableResponse) String() string {447return protoimpl.X.MessageStringOf(x)448}449450func (*CreateUserEnvironmentVariableResponse) ProtoMessage() {}451452func (x *CreateUserEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {453mi := &file_gitpod_v1_envvar_proto_msgTypes[6]454if protoimpl.UnsafeEnabled && x != nil {455ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))456if ms.LoadMessageInfo() == nil {457ms.StoreMessageInfo(mi)458}459return ms460}461return mi.MessageOf(x)462}463464// Deprecated: Use CreateUserEnvironmentVariableResponse.ProtoReflect.Descriptor instead.465func (*CreateUserEnvironmentVariableResponse) Descriptor() ([]byte, []int) {466return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{6}467}468469func (x *CreateUserEnvironmentVariableResponse) GetEnvironmentVariable() *UserEnvironmentVariable {470if x != nil {471return x.EnvironmentVariable472}473return nil474}475476type DeleteUserEnvironmentVariableRequest struct {477state protoimpl.MessageState478sizeCache protoimpl.SizeCache479unknownFields protoimpl.UnknownFields480481EnvironmentVariableId string `protobuf:"bytes,1,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`482}483484func (x *DeleteUserEnvironmentVariableRequest) Reset() {485*x = DeleteUserEnvironmentVariableRequest{}486if protoimpl.UnsafeEnabled {487mi := &file_gitpod_v1_envvar_proto_msgTypes[7]488ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))489ms.StoreMessageInfo(mi)490}491}492493func (x *DeleteUserEnvironmentVariableRequest) String() string {494return protoimpl.X.MessageStringOf(x)495}496497func (*DeleteUserEnvironmentVariableRequest) ProtoMessage() {}498499func (x *DeleteUserEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {500mi := &file_gitpod_v1_envvar_proto_msgTypes[7]501if protoimpl.UnsafeEnabled && x != nil {502ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))503if ms.LoadMessageInfo() == nil {504ms.StoreMessageInfo(mi)505}506return ms507}508return mi.MessageOf(x)509}510511// Deprecated: Use DeleteUserEnvironmentVariableRequest.ProtoReflect.Descriptor instead.512func (*DeleteUserEnvironmentVariableRequest) Descriptor() ([]byte, []int) {513return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{7}514}515516func (x *DeleteUserEnvironmentVariableRequest) GetEnvironmentVariableId() string {517if x != nil {518return x.EnvironmentVariableId519}520return ""521}522523type DeleteUserEnvironmentVariableResponse struct {524state protoimpl.MessageState525sizeCache protoimpl.SizeCache526unknownFields protoimpl.UnknownFields527}528529func (x *DeleteUserEnvironmentVariableResponse) Reset() {530*x = DeleteUserEnvironmentVariableResponse{}531if protoimpl.UnsafeEnabled {532mi := &file_gitpod_v1_envvar_proto_msgTypes[8]533ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))534ms.StoreMessageInfo(mi)535}536}537538func (x *DeleteUserEnvironmentVariableResponse) String() string {539return protoimpl.X.MessageStringOf(x)540}541542func (*DeleteUserEnvironmentVariableResponse) ProtoMessage() {}543544func (x *DeleteUserEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {545mi := &file_gitpod_v1_envvar_proto_msgTypes[8]546if protoimpl.UnsafeEnabled && x != nil {547ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))548if ms.LoadMessageInfo() == nil {549ms.StoreMessageInfo(mi)550}551return ms552}553return mi.MessageOf(x)554}555556// Deprecated: Use DeleteUserEnvironmentVariableResponse.ProtoReflect.Descriptor instead.557func (*DeleteUserEnvironmentVariableResponse) Descriptor() ([]byte, []int) {558return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{8}559}560561type ConfigurationEnvironmentVariable struct {562state protoimpl.MessageState563sizeCache protoimpl.SizeCache564unknownFields protoimpl.UnknownFields565566Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`567Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`568ConfigurationId string `protobuf:"bytes,4,opt,name=configuration_id,json=configurationId,proto3" json:"configuration_id,omitempty"`569Admission EnvironmentVariableAdmission `protobuf:"varint,5,opt,name=admission,proto3,enum=gitpod.v1.EnvironmentVariableAdmission" json:"admission,omitempty"`570}571572func (x *ConfigurationEnvironmentVariable) Reset() {573*x = ConfigurationEnvironmentVariable{}574if protoimpl.UnsafeEnabled {575mi := &file_gitpod_v1_envvar_proto_msgTypes[9]576ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))577ms.StoreMessageInfo(mi)578}579}580581func (x *ConfigurationEnvironmentVariable) String() string {582return protoimpl.X.MessageStringOf(x)583}584585func (*ConfigurationEnvironmentVariable) ProtoMessage() {}586587func (x *ConfigurationEnvironmentVariable) ProtoReflect() protoreflect.Message {588mi := &file_gitpod_v1_envvar_proto_msgTypes[9]589if protoimpl.UnsafeEnabled && x != nil {590ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))591if ms.LoadMessageInfo() == nil {592ms.StoreMessageInfo(mi)593}594return ms595}596return mi.MessageOf(x)597}598599// Deprecated: Use ConfigurationEnvironmentVariable.ProtoReflect.Descriptor instead.600func (*ConfigurationEnvironmentVariable) Descriptor() ([]byte, []int) {601return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{9}602}603604func (x *ConfigurationEnvironmentVariable) GetId() string {605if x != nil {606return x.Id607}608return ""609}610611func (x *ConfigurationEnvironmentVariable) GetName() string {612if x != nil {613return x.Name614}615return ""616}617618func (x *ConfigurationEnvironmentVariable) GetConfigurationId() string {619if x != nil {620return x.ConfigurationId621}622return ""623}624625func (x *ConfigurationEnvironmentVariable) GetAdmission() EnvironmentVariableAdmission {626if x != nil {627return x.Admission628}629return EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED630}631632type ListConfigurationEnvironmentVariablesRequest struct {633state protoimpl.MessageState634sizeCache protoimpl.SizeCache635unknownFields protoimpl.UnknownFields636637ConfigurationId string `protobuf:"bytes,1,opt,name=configuration_id,json=configurationId,proto3" json:"configuration_id,omitempty"`638Pagination *PaginationRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`639}640641func (x *ListConfigurationEnvironmentVariablesRequest) Reset() {642*x = ListConfigurationEnvironmentVariablesRequest{}643if protoimpl.UnsafeEnabled {644mi := &file_gitpod_v1_envvar_proto_msgTypes[10]645ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))646ms.StoreMessageInfo(mi)647}648}649650func (x *ListConfigurationEnvironmentVariablesRequest) String() string {651return protoimpl.X.MessageStringOf(x)652}653654func (*ListConfigurationEnvironmentVariablesRequest) ProtoMessage() {}655656func (x *ListConfigurationEnvironmentVariablesRequest) ProtoReflect() protoreflect.Message {657mi := &file_gitpod_v1_envvar_proto_msgTypes[10]658if protoimpl.UnsafeEnabled && x != nil {659ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))660if ms.LoadMessageInfo() == nil {661ms.StoreMessageInfo(mi)662}663return ms664}665return mi.MessageOf(x)666}667668// Deprecated: Use ListConfigurationEnvironmentVariablesRequest.ProtoReflect.Descriptor instead.669func (*ListConfigurationEnvironmentVariablesRequest) Descriptor() ([]byte, []int) {670return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{10}671}672673func (x *ListConfigurationEnvironmentVariablesRequest) GetConfigurationId() string {674if x != nil {675return x.ConfigurationId676}677return ""678}679680func (x *ListConfigurationEnvironmentVariablesRequest) GetPagination() *PaginationRequest {681if x != nil {682return x.Pagination683}684return nil685}686687type ListConfigurationEnvironmentVariablesResponse struct {688state protoimpl.MessageState689sizeCache protoimpl.SizeCache690unknownFields protoimpl.UnknownFields691692EnvironmentVariables []*ConfigurationEnvironmentVariable `protobuf:"bytes,1,rep,name=environment_variables,json=environmentVariables,proto3" json:"environment_variables,omitempty"`693Pagination *PaginationResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`694}695696func (x *ListConfigurationEnvironmentVariablesResponse) Reset() {697*x = ListConfigurationEnvironmentVariablesResponse{}698if protoimpl.UnsafeEnabled {699mi := &file_gitpod_v1_envvar_proto_msgTypes[11]700ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))701ms.StoreMessageInfo(mi)702}703}704705func (x *ListConfigurationEnvironmentVariablesResponse) String() string {706return protoimpl.X.MessageStringOf(x)707}708709func (*ListConfigurationEnvironmentVariablesResponse) ProtoMessage() {}710711func (x *ListConfigurationEnvironmentVariablesResponse) ProtoReflect() protoreflect.Message {712mi := &file_gitpod_v1_envvar_proto_msgTypes[11]713if protoimpl.UnsafeEnabled && x != nil {714ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))715if ms.LoadMessageInfo() == nil {716ms.StoreMessageInfo(mi)717}718return ms719}720return mi.MessageOf(x)721}722723// Deprecated: Use ListConfigurationEnvironmentVariablesResponse.ProtoReflect.Descriptor instead.724func (*ListConfigurationEnvironmentVariablesResponse) Descriptor() ([]byte, []int) {725return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{11}726}727728func (x *ListConfigurationEnvironmentVariablesResponse) GetEnvironmentVariables() []*ConfigurationEnvironmentVariable {729if x != nil {730return x.EnvironmentVariables731}732return nil733}734735func (x *ListConfigurationEnvironmentVariablesResponse) GetPagination() *PaginationResponse {736if x != nil {737return x.Pagination738}739return nil740}741742type UpdateConfigurationEnvironmentVariableRequest struct {743state protoimpl.MessageState744sizeCache protoimpl.SizeCache745unknownFields protoimpl.UnknownFields746747ConfigurationId string `protobuf:"bytes,1,opt,name=configuration_id,json=configurationId,proto3" json:"configuration_id,omitempty"`748EnvironmentVariableId string `protobuf:"bytes,2,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`749Name *string `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"`750Value *string `protobuf:"bytes,4,opt,name=value,proto3,oneof" json:"value,omitempty"`751Admission *EnvironmentVariableAdmission `protobuf:"varint,5,opt,name=admission,proto3,enum=gitpod.v1.EnvironmentVariableAdmission,oneof" json:"admission,omitempty"`752}753754func (x *UpdateConfigurationEnvironmentVariableRequest) Reset() {755*x = UpdateConfigurationEnvironmentVariableRequest{}756if protoimpl.UnsafeEnabled {757mi := &file_gitpod_v1_envvar_proto_msgTypes[12]758ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))759ms.StoreMessageInfo(mi)760}761}762763func (x *UpdateConfigurationEnvironmentVariableRequest) String() string {764return protoimpl.X.MessageStringOf(x)765}766767func (*UpdateConfigurationEnvironmentVariableRequest) ProtoMessage() {}768769func (x *UpdateConfigurationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {770mi := &file_gitpod_v1_envvar_proto_msgTypes[12]771if protoimpl.UnsafeEnabled && x != nil {772ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))773if ms.LoadMessageInfo() == nil {774ms.StoreMessageInfo(mi)775}776return ms777}778return mi.MessageOf(x)779}780781// Deprecated: Use UpdateConfigurationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.782func (*UpdateConfigurationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {783return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{12}784}785786func (x *UpdateConfigurationEnvironmentVariableRequest) GetConfigurationId() string {787if x != nil {788return x.ConfigurationId789}790return ""791}792793func (x *UpdateConfigurationEnvironmentVariableRequest) GetEnvironmentVariableId() string {794if x != nil {795return x.EnvironmentVariableId796}797return ""798}799800func (x *UpdateConfigurationEnvironmentVariableRequest) GetName() string {801if x != nil && x.Name != nil {802return *x.Name803}804return ""805}806807func (x *UpdateConfigurationEnvironmentVariableRequest) GetValue() string {808if x != nil && x.Value != nil {809return *x.Value810}811return ""812}813814func (x *UpdateConfigurationEnvironmentVariableRequest) GetAdmission() EnvironmentVariableAdmission {815if x != nil && x.Admission != nil {816return *x.Admission817}818return EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED819}820821type UpdateConfigurationEnvironmentVariableResponse struct {822state protoimpl.MessageState823sizeCache protoimpl.SizeCache824unknownFields protoimpl.UnknownFields825826EnvironmentVariable *ConfigurationEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`827}828829func (x *UpdateConfigurationEnvironmentVariableResponse) Reset() {830*x = UpdateConfigurationEnvironmentVariableResponse{}831if protoimpl.UnsafeEnabled {832mi := &file_gitpod_v1_envvar_proto_msgTypes[13]833ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))834ms.StoreMessageInfo(mi)835}836}837838func (x *UpdateConfigurationEnvironmentVariableResponse) String() string {839return protoimpl.X.MessageStringOf(x)840}841842func (*UpdateConfigurationEnvironmentVariableResponse) ProtoMessage() {}843844func (x *UpdateConfigurationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {845mi := &file_gitpod_v1_envvar_proto_msgTypes[13]846if protoimpl.UnsafeEnabled && x != nil {847ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))848if ms.LoadMessageInfo() == nil {849ms.StoreMessageInfo(mi)850}851return ms852}853return mi.MessageOf(x)854}855856// Deprecated: Use UpdateConfigurationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.857func (*UpdateConfigurationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {858return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{13}859}860861func (x *UpdateConfigurationEnvironmentVariableResponse) GetEnvironmentVariable() *ConfigurationEnvironmentVariable {862if x != nil {863return x.EnvironmentVariable864}865return nil866}867868type CreateConfigurationEnvironmentVariableRequest struct {869state protoimpl.MessageState870sizeCache protoimpl.SizeCache871unknownFields protoimpl.UnknownFields872873ConfigurationId string `protobuf:"bytes,1,opt,name=configuration_id,json=configurationId,proto3" json:"configuration_id,omitempty"`874Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`875Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`876Admission EnvironmentVariableAdmission `protobuf:"varint,4,opt,name=admission,proto3,enum=gitpod.v1.EnvironmentVariableAdmission" json:"admission,omitempty"`877}878879func (x *CreateConfigurationEnvironmentVariableRequest) Reset() {880*x = CreateConfigurationEnvironmentVariableRequest{}881if protoimpl.UnsafeEnabled {882mi := &file_gitpod_v1_envvar_proto_msgTypes[14]883ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))884ms.StoreMessageInfo(mi)885}886}887888func (x *CreateConfigurationEnvironmentVariableRequest) String() string {889return protoimpl.X.MessageStringOf(x)890}891892func (*CreateConfigurationEnvironmentVariableRequest) ProtoMessage() {}893894func (x *CreateConfigurationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {895mi := &file_gitpod_v1_envvar_proto_msgTypes[14]896if protoimpl.UnsafeEnabled && x != nil {897ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))898if ms.LoadMessageInfo() == nil {899ms.StoreMessageInfo(mi)900}901return ms902}903return mi.MessageOf(x)904}905906// Deprecated: Use CreateConfigurationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.907func (*CreateConfigurationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {908return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{14}909}910911func (x *CreateConfigurationEnvironmentVariableRequest) GetConfigurationId() string {912if x != nil {913return x.ConfigurationId914}915return ""916}917918func (x *CreateConfigurationEnvironmentVariableRequest) GetName() string {919if x != nil {920return x.Name921}922return ""923}924925func (x *CreateConfigurationEnvironmentVariableRequest) GetValue() string {926if x != nil {927return x.Value928}929return ""930}931932func (x *CreateConfigurationEnvironmentVariableRequest) GetAdmission() EnvironmentVariableAdmission {933if x != nil {934return x.Admission935}936return EnvironmentVariableAdmission_ENVIRONMENT_VARIABLE_ADMISSION_UNSPECIFIED937}938939type CreateConfigurationEnvironmentVariableResponse struct {940state protoimpl.MessageState941sizeCache protoimpl.SizeCache942unknownFields protoimpl.UnknownFields943944EnvironmentVariable *ConfigurationEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`945}946947func (x *CreateConfigurationEnvironmentVariableResponse) Reset() {948*x = CreateConfigurationEnvironmentVariableResponse{}949if protoimpl.UnsafeEnabled {950mi := &file_gitpod_v1_envvar_proto_msgTypes[15]951ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))952ms.StoreMessageInfo(mi)953}954}955956func (x *CreateConfigurationEnvironmentVariableResponse) String() string {957return protoimpl.X.MessageStringOf(x)958}959960func (*CreateConfigurationEnvironmentVariableResponse) ProtoMessage() {}961962func (x *CreateConfigurationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {963mi := &file_gitpod_v1_envvar_proto_msgTypes[15]964if protoimpl.UnsafeEnabled && x != nil {965ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))966if ms.LoadMessageInfo() == nil {967ms.StoreMessageInfo(mi)968}969return ms970}971return mi.MessageOf(x)972}973974// Deprecated: Use CreateConfigurationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.975func (*CreateConfigurationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {976return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{15}977}978979func (x *CreateConfigurationEnvironmentVariableResponse) GetEnvironmentVariable() *ConfigurationEnvironmentVariable {980if x != nil {981return x.EnvironmentVariable982}983return nil984}985986type DeleteConfigurationEnvironmentVariableRequest struct {987state protoimpl.MessageState988sizeCache protoimpl.SizeCache989unknownFields protoimpl.UnknownFields990991EnvironmentVariableId string `protobuf:"bytes,1,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`992}993994func (x *DeleteConfigurationEnvironmentVariableRequest) Reset() {995*x = DeleteConfigurationEnvironmentVariableRequest{}996if protoimpl.UnsafeEnabled {997mi := &file_gitpod_v1_envvar_proto_msgTypes[16]998ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))999ms.StoreMessageInfo(mi)1000}1001}10021003func (x *DeleteConfigurationEnvironmentVariableRequest) String() string {1004return protoimpl.X.MessageStringOf(x)1005}10061007func (*DeleteConfigurationEnvironmentVariableRequest) ProtoMessage() {}10081009func (x *DeleteConfigurationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {1010mi := &file_gitpod_v1_envvar_proto_msgTypes[16]1011if protoimpl.UnsafeEnabled && x != nil {1012ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1013if ms.LoadMessageInfo() == nil {1014ms.StoreMessageInfo(mi)1015}1016return ms1017}1018return mi.MessageOf(x)1019}10201021// Deprecated: Use DeleteConfigurationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.1022func (*DeleteConfigurationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {1023return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{16}1024}10251026func (x *DeleteConfigurationEnvironmentVariableRequest) GetEnvironmentVariableId() string {1027if x != nil {1028return x.EnvironmentVariableId1029}1030return ""1031}10321033type DeleteConfigurationEnvironmentVariableResponse struct {1034state protoimpl.MessageState1035sizeCache protoimpl.SizeCache1036unknownFields protoimpl.UnknownFields1037}10381039func (x *DeleteConfigurationEnvironmentVariableResponse) Reset() {1040*x = DeleteConfigurationEnvironmentVariableResponse{}1041if protoimpl.UnsafeEnabled {1042mi := &file_gitpod_v1_envvar_proto_msgTypes[17]1043ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1044ms.StoreMessageInfo(mi)1045}1046}10471048func (x *DeleteConfigurationEnvironmentVariableResponse) String() string {1049return protoimpl.X.MessageStringOf(x)1050}10511052func (*DeleteConfigurationEnvironmentVariableResponse) ProtoMessage() {}10531054func (x *DeleteConfigurationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {1055mi := &file_gitpod_v1_envvar_proto_msgTypes[17]1056if protoimpl.UnsafeEnabled && x != nil {1057ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1058if ms.LoadMessageInfo() == nil {1059ms.StoreMessageInfo(mi)1060}1061return ms1062}1063return mi.MessageOf(x)1064}10651066// Deprecated: Use DeleteConfigurationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.1067func (*DeleteConfigurationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {1068return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{17}1069}10701071type OrganizationEnvironmentVariable struct {1072state protoimpl.MessageState1073sizeCache protoimpl.SizeCache1074unknownFields protoimpl.UnknownFields10751076Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`1077Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`1078OrganizationId string `protobuf:"bytes,3,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`1079}10801081func (x *OrganizationEnvironmentVariable) Reset() {1082*x = OrganizationEnvironmentVariable{}1083if protoimpl.UnsafeEnabled {1084mi := &file_gitpod_v1_envvar_proto_msgTypes[18]1085ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1086ms.StoreMessageInfo(mi)1087}1088}10891090func (x *OrganizationEnvironmentVariable) String() string {1091return protoimpl.X.MessageStringOf(x)1092}10931094func (*OrganizationEnvironmentVariable) ProtoMessage() {}10951096func (x *OrganizationEnvironmentVariable) ProtoReflect() protoreflect.Message {1097mi := &file_gitpod_v1_envvar_proto_msgTypes[18]1098if protoimpl.UnsafeEnabled && x != nil {1099ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1100if ms.LoadMessageInfo() == nil {1101ms.StoreMessageInfo(mi)1102}1103return ms1104}1105return mi.MessageOf(x)1106}11071108// Deprecated: Use OrganizationEnvironmentVariable.ProtoReflect.Descriptor instead.1109func (*OrganizationEnvironmentVariable) Descriptor() ([]byte, []int) {1110return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{18}1111}11121113func (x *OrganizationEnvironmentVariable) GetId() string {1114if x != nil {1115return x.Id1116}1117return ""1118}11191120func (x *OrganizationEnvironmentVariable) GetName() string {1121if x != nil {1122return x.Name1123}1124return ""1125}11261127func (x *OrganizationEnvironmentVariable) GetOrganizationId() string {1128if x != nil {1129return x.OrganizationId1130}1131return ""1132}11331134type ListOrganizationEnvironmentVariablesRequest struct {1135state protoimpl.MessageState1136sizeCache protoimpl.SizeCache1137unknownFields protoimpl.UnknownFields11381139OrganizationId string `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`1140Pagination *PaginationRequest `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`1141}11421143func (x *ListOrganizationEnvironmentVariablesRequest) Reset() {1144*x = ListOrganizationEnvironmentVariablesRequest{}1145if protoimpl.UnsafeEnabled {1146mi := &file_gitpod_v1_envvar_proto_msgTypes[19]1147ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1148ms.StoreMessageInfo(mi)1149}1150}11511152func (x *ListOrganizationEnvironmentVariablesRequest) String() string {1153return protoimpl.X.MessageStringOf(x)1154}11551156func (*ListOrganizationEnvironmentVariablesRequest) ProtoMessage() {}11571158func (x *ListOrganizationEnvironmentVariablesRequest) ProtoReflect() protoreflect.Message {1159mi := &file_gitpod_v1_envvar_proto_msgTypes[19]1160if protoimpl.UnsafeEnabled && x != nil {1161ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1162if ms.LoadMessageInfo() == nil {1163ms.StoreMessageInfo(mi)1164}1165return ms1166}1167return mi.MessageOf(x)1168}11691170// Deprecated: Use ListOrganizationEnvironmentVariablesRequest.ProtoReflect.Descriptor instead.1171func (*ListOrganizationEnvironmentVariablesRequest) Descriptor() ([]byte, []int) {1172return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{19}1173}11741175func (x *ListOrganizationEnvironmentVariablesRequest) GetOrganizationId() string {1176if x != nil {1177return x.OrganizationId1178}1179return ""1180}11811182func (x *ListOrganizationEnvironmentVariablesRequest) GetPagination() *PaginationRequest {1183if x != nil {1184return x.Pagination1185}1186return nil1187}11881189type ListOrganizationEnvironmentVariablesResponse struct {1190state protoimpl.MessageState1191sizeCache protoimpl.SizeCache1192unknownFields protoimpl.UnknownFields11931194EnvironmentVariables []*OrganizationEnvironmentVariable `protobuf:"bytes,1,rep,name=environment_variables,json=environmentVariables,proto3" json:"environment_variables,omitempty"`1195Pagination *PaginationResponse `protobuf:"bytes,2,opt,name=pagination,proto3" json:"pagination,omitempty"`1196}11971198func (x *ListOrganizationEnvironmentVariablesResponse) Reset() {1199*x = ListOrganizationEnvironmentVariablesResponse{}1200if protoimpl.UnsafeEnabled {1201mi := &file_gitpod_v1_envvar_proto_msgTypes[20]1202ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1203ms.StoreMessageInfo(mi)1204}1205}12061207func (x *ListOrganizationEnvironmentVariablesResponse) String() string {1208return protoimpl.X.MessageStringOf(x)1209}12101211func (*ListOrganizationEnvironmentVariablesResponse) ProtoMessage() {}12121213func (x *ListOrganizationEnvironmentVariablesResponse) ProtoReflect() protoreflect.Message {1214mi := &file_gitpod_v1_envvar_proto_msgTypes[20]1215if protoimpl.UnsafeEnabled && x != nil {1216ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1217if ms.LoadMessageInfo() == nil {1218ms.StoreMessageInfo(mi)1219}1220return ms1221}1222return mi.MessageOf(x)1223}12241225// Deprecated: Use ListOrganizationEnvironmentVariablesResponse.ProtoReflect.Descriptor instead.1226func (*ListOrganizationEnvironmentVariablesResponse) Descriptor() ([]byte, []int) {1227return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{20}1228}12291230func (x *ListOrganizationEnvironmentVariablesResponse) GetEnvironmentVariables() []*OrganizationEnvironmentVariable {1231if x != nil {1232return x.EnvironmentVariables1233}1234return nil1235}12361237func (x *ListOrganizationEnvironmentVariablesResponse) GetPagination() *PaginationResponse {1238if x != nil {1239return x.Pagination1240}1241return nil1242}12431244type UpdateOrganizationEnvironmentVariableRequest struct {1245state protoimpl.MessageState1246sizeCache protoimpl.SizeCache1247unknownFields protoimpl.UnknownFields12481249OrganizationId string `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`1250EnvironmentVariableId string `protobuf:"bytes,2,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`1251Name *string `protobuf:"bytes,3,opt,name=name,proto3,oneof" json:"name,omitempty"`1252Value *string `protobuf:"bytes,4,opt,name=value,proto3,oneof" json:"value,omitempty"`1253}12541255func (x *UpdateOrganizationEnvironmentVariableRequest) Reset() {1256*x = UpdateOrganizationEnvironmentVariableRequest{}1257if protoimpl.UnsafeEnabled {1258mi := &file_gitpod_v1_envvar_proto_msgTypes[21]1259ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1260ms.StoreMessageInfo(mi)1261}1262}12631264func (x *UpdateOrganizationEnvironmentVariableRequest) String() string {1265return protoimpl.X.MessageStringOf(x)1266}12671268func (*UpdateOrganizationEnvironmentVariableRequest) ProtoMessage() {}12691270func (x *UpdateOrganizationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {1271mi := &file_gitpod_v1_envvar_proto_msgTypes[21]1272if protoimpl.UnsafeEnabled && x != nil {1273ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1274if ms.LoadMessageInfo() == nil {1275ms.StoreMessageInfo(mi)1276}1277return ms1278}1279return mi.MessageOf(x)1280}12811282// Deprecated: Use UpdateOrganizationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.1283func (*UpdateOrganizationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {1284return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{21}1285}12861287func (x *UpdateOrganizationEnvironmentVariableRequest) GetOrganizationId() string {1288if x != nil {1289return x.OrganizationId1290}1291return ""1292}12931294func (x *UpdateOrganizationEnvironmentVariableRequest) GetEnvironmentVariableId() string {1295if x != nil {1296return x.EnvironmentVariableId1297}1298return ""1299}13001301func (x *UpdateOrganizationEnvironmentVariableRequest) GetName() string {1302if x != nil && x.Name != nil {1303return *x.Name1304}1305return ""1306}13071308func (x *UpdateOrganizationEnvironmentVariableRequest) GetValue() string {1309if x != nil && x.Value != nil {1310return *x.Value1311}1312return ""1313}13141315type UpdateOrganizationEnvironmentVariableResponse struct {1316state protoimpl.MessageState1317sizeCache protoimpl.SizeCache1318unknownFields protoimpl.UnknownFields13191320EnvironmentVariable *OrganizationEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`1321}13221323func (x *UpdateOrganizationEnvironmentVariableResponse) Reset() {1324*x = UpdateOrganizationEnvironmentVariableResponse{}1325if protoimpl.UnsafeEnabled {1326mi := &file_gitpod_v1_envvar_proto_msgTypes[22]1327ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1328ms.StoreMessageInfo(mi)1329}1330}13311332func (x *UpdateOrganizationEnvironmentVariableResponse) String() string {1333return protoimpl.X.MessageStringOf(x)1334}13351336func (*UpdateOrganizationEnvironmentVariableResponse) ProtoMessage() {}13371338func (x *UpdateOrganizationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {1339mi := &file_gitpod_v1_envvar_proto_msgTypes[22]1340if protoimpl.UnsafeEnabled && x != nil {1341ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1342if ms.LoadMessageInfo() == nil {1343ms.StoreMessageInfo(mi)1344}1345return ms1346}1347return mi.MessageOf(x)1348}13491350// Deprecated: Use UpdateOrganizationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.1351func (*UpdateOrganizationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {1352return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{22}1353}13541355func (x *UpdateOrganizationEnvironmentVariableResponse) GetEnvironmentVariable() *OrganizationEnvironmentVariable {1356if x != nil {1357return x.EnvironmentVariable1358}1359return nil1360}13611362type CreateOrganizationEnvironmentVariableRequest struct {1363state protoimpl.MessageState1364sizeCache protoimpl.SizeCache1365unknownFields protoimpl.UnknownFields13661367OrganizationId string `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`1368Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`1369Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`1370}13711372func (x *CreateOrganizationEnvironmentVariableRequest) Reset() {1373*x = CreateOrganizationEnvironmentVariableRequest{}1374if protoimpl.UnsafeEnabled {1375mi := &file_gitpod_v1_envvar_proto_msgTypes[23]1376ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1377ms.StoreMessageInfo(mi)1378}1379}13801381func (x *CreateOrganizationEnvironmentVariableRequest) String() string {1382return protoimpl.X.MessageStringOf(x)1383}13841385func (*CreateOrganizationEnvironmentVariableRequest) ProtoMessage() {}13861387func (x *CreateOrganizationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {1388mi := &file_gitpod_v1_envvar_proto_msgTypes[23]1389if protoimpl.UnsafeEnabled && x != nil {1390ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1391if ms.LoadMessageInfo() == nil {1392ms.StoreMessageInfo(mi)1393}1394return ms1395}1396return mi.MessageOf(x)1397}13981399// Deprecated: Use CreateOrganizationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.1400func (*CreateOrganizationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {1401return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{23}1402}14031404func (x *CreateOrganizationEnvironmentVariableRequest) GetOrganizationId() string {1405if x != nil {1406return x.OrganizationId1407}1408return ""1409}14101411func (x *CreateOrganizationEnvironmentVariableRequest) GetName() string {1412if x != nil {1413return x.Name1414}1415return ""1416}14171418func (x *CreateOrganizationEnvironmentVariableRequest) GetValue() string {1419if x != nil {1420return x.Value1421}1422return ""1423}14241425type CreateOrganizationEnvironmentVariableResponse struct {1426state protoimpl.MessageState1427sizeCache protoimpl.SizeCache1428unknownFields protoimpl.UnknownFields14291430EnvironmentVariable *OrganizationEnvironmentVariable `protobuf:"bytes,1,opt,name=environment_variable,json=environmentVariable,proto3" json:"environment_variable,omitempty"`1431}14321433func (x *CreateOrganizationEnvironmentVariableResponse) Reset() {1434*x = CreateOrganizationEnvironmentVariableResponse{}1435if protoimpl.UnsafeEnabled {1436mi := &file_gitpod_v1_envvar_proto_msgTypes[24]1437ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1438ms.StoreMessageInfo(mi)1439}1440}14411442func (x *CreateOrganizationEnvironmentVariableResponse) String() string {1443return protoimpl.X.MessageStringOf(x)1444}14451446func (*CreateOrganizationEnvironmentVariableResponse) ProtoMessage() {}14471448func (x *CreateOrganizationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {1449mi := &file_gitpod_v1_envvar_proto_msgTypes[24]1450if protoimpl.UnsafeEnabled && x != nil {1451ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1452if ms.LoadMessageInfo() == nil {1453ms.StoreMessageInfo(mi)1454}1455return ms1456}1457return mi.MessageOf(x)1458}14591460// Deprecated: Use CreateOrganizationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.1461func (*CreateOrganizationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {1462return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{24}1463}14641465func (x *CreateOrganizationEnvironmentVariableResponse) GetEnvironmentVariable() *OrganizationEnvironmentVariable {1466if x != nil {1467return x.EnvironmentVariable1468}1469return nil1470}14711472type DeleteOrganizationEnvironmentVariableRequest struct {1473state protoimpl.MessageState1474sizeCache protoimpl.SizeCache1475unknownFields protoimpl.UnknownFields14761477EnvironmentVariableId string `protobuf:"bytes,1,opt,name=environment_variable_id,json=environmentVariableId,proto3" json:"environment_variable_id,omitempty"`1478}14791480func (x *DeleteOrganizationEnvironmentVariableRequest) Reset() {1481*x = DeleteOrganizationEnvironmentVariableRequest{}1482if protoimpl.UnsafeEnabled {1483mi := &file_gitpod_v1_envvar_proto_msgTypes[25]1484ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1485ms.StoreMessageInfo(mi)1486}1487}14881489func (x *DeleteOrganizationEnvironmentVariableRequest) String() string {1490return protoimpl.X.MessageStringOf(x)1491}14921493func (*DeleteOrganizationEnvironmentVariableRequest) ProtoMessage() {}14941495func (x *DeleteOrganizationEnvironmentVariableRequest) ProtoReflect() protoreflect.Message {1496mi := &file_gitpod_v1_envvar_proto_msgTypes[25]1497if protoimpl.UnsafeEnabled && x != nil {1498ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1499if ms.LoadMessageInfo() == nil {1500ms.StoreMessageInfo(mi)1501}1502return ms1503}1504return mi.MessageOf(x)1505}15061507// Deprecated: Use DeleteOrganizationEnvironmentVariableRequest.ProtoReflect.Descriptor instead.1508func (*DeleteOrganizationEnvironmentVariableRequest) Descriptor() ([]byte, []int) {1509return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{25}1510}15111512func (x *DeleteOrganizationEnvironmentVariableRequest) GetEnvironmentVariableId() string {1513if x != nil {1514return x.EnvironmentVariableId1515}1516return ""1517}15181519type DeleteOrganizationEnvironmentVariableResponse struct {1520state protoimpl.MessageState1521sizeCache protoimpl.SizeCache1522unknownFields protoimpl.UnknownFields1523}15241525func (x *DeleteOrganizationEnvironmentVariableResponse) Reset() {1526*x = DeleteOrganizationEnvironmentVariableResponse{}1527if protoimpl.UnsafeEnabled {1528mi := &file_gitpod_v1_envvar_proto_msgTypes[26]1529ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1530ms.StoreMessageInfo(mi)1531}1532}15331534func (x *DeleteOrganizationEnvironmentVariableResponse) String() string {1535return protoimpl.X.MessageStringOf(x)1536}15371538func (*DeleteOrganizationEnvironmentVariableResponse) ProtoMessage() {}15391540func (x *DeleteOrganizationEnvironmentVariableResponse) ProtoReflect() protoreflect.Message {1541mi := &file_gitpod_v1_envvar_proto_msgTypes[26]1542if protoimpl.UnsafeEnabled && x != nil {1543ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1544if ms.LoadMessageInfo() == nil {1545ms.StoreMessageInfo(mi)1546}1547return ms1548}1549return mi.MessageOf(x)1550}15511552// Deprecated: Use DeleteOrganizationEnvironmentVariableResponse.ProtoReflect.Descriptor instead.1553func (*DeleteOrganizationEnvironmentVariableResponse) Descriptor() ([]byte, []int) {1554return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{26}1555}15561557type ResolveWorkspaceEnvironmentVariablesRequest struct {1558state protoimpl.MessageState1559sizeCache protoimpl.SizeCache1560unknownFields protoimpl.UnknownFields15611562WorkspaceId string `protobuf:"bytes,1,opt,name=workspace_id,json=workspaceId,proto3" json:"workspace_id,omitempty"`1563}15641565func (x *ResolveWorkspaceEnvironmentVariablesRequest) Reset() {1566*x = ResolveWorkspaceEnvironmentVariablesRequest{}1567if protoimpl.UnsafeEnabled {1568mi := &file_gitpod_v1_envvar_proto_msgTypes[27]1569ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1570ms.StoreMessageInfo(mi)1571}1572}15731574func (x *ResolveWorkspaceEnvironmentVariablesRequest) String() string {1575return protoimpl.X.MessageStringOf(x)1576}15771578func (*ResolveWorkspaceEnvironmentVariablesRequest) ProtoMessage() {}15791580func (x *ResolveWorkspaceEnvironmentVariablesRequest) ProtoReflect() protoreflect.Message {1581mi := &file_gitpod_v1_envvar_proto_msgTypes[27]1582if protoimpl.UnsafeEnabled && x != nil {1583ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1584if ms.LoadMessageInfo() == nil {1585ms.StoreMessageInfo(mi)1586}1587return ms1588}1589return mi.MessageOf(x)1590}15911592// Deprecated: Use ResolveWorkspaceEnvironmentVariablesRequest.ProtoReflect.Descriptor instead.1593func (*ResolveWorkspaceEnvironmentVariablesRequest) Descriptor() ([]byte, []int) {1594return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{27}1595}15961597func (x *ResolveWorkspaceEnvironmentVariablesRequest) GetWorkspaceId() string {1598if x != nil {1599return x.WorkspaceId1600}1601return ""1602}16031604type ResolveWorkspaceEnvironmentVariablesResponse struct {1605state protoimpl.MessageState1606sizeCache protoimpl.SizeCache1607unknownFields protoimpl.UnknownFields16081609EnvironmentVariables []*EnvironmentVariable `protobuf:"bytes,1,rep,name=environment_variables,json=environmentVariables,proto3" json:"environment_variables,omitempty"`1610}16111612func (x *ResolveWorkspaceEnvironmentVariablesResponse) Reset() {1613*x = ResolveWorkspaceEnvironmentVariablesResponse{}1614if protoimpl.UnsafeEnabled {1615mi := &file_gitpod_v1_envvar_proto_msgTypes[28]1616ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1617ms.StoreMessageInfo(mi)1618}1619}16201621func (x *ResolveWorkspaceEnvironmentVariablesResponse) String() string {1622return protoimpl.X.MessageStringOf(x)1623}16241625func (*ResolveWorkspaceEnvironmentVariablesResponse) ProtoMessage() {}16261627func (x *ResolveWorkspaceEnvironmentVariablesResponse) ProtoReflect() protoreflect.Message {1628mi := &file_gitpod_v1_envvar_proto_msgTypes[28]1629if protoimpl.UnsafeEnabled && x != nil {1630ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1631if ms.LoadMessageInfo() == nil {1632ms.StoreMessageInfo(mi)1633}1634return ms1635}1636return mi.MessageOf(x)1637}16381639// Deprecated: Use ResolveWorkspaceEnvironmentVariablesResponse.ProtoReflect.Descriptor instead.1640func (*ResolveWorkspaceEnvironmentVariablesResponse) Descriptor() ([]byte, []int) {1641return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{28}1642}16431644func (x *ResolveWorkspaceEnvironmentVariablesResponse) GetEnvironmentVariables() []*EnvironmentVariable {1645if x != nil {1646return x.EnvironmentVariables1647}1648return nil1649}16501651type EnvironmentVariable struct {1652state protoimpl.MessageState1653sizeCache protoimpl.SizeCache1654unknownFields protoimpl.UnknownFields16551656Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`1657Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`1658}16591660func (x *EnvironmentVariable) Reset() {1661*x = EnvironmentVariable{}1662if protoimpl.UnsafeEnabled {1663mi := &file_gitpod_v1_envvar_proto_msgTypes[29]1664ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1665ms.StoreMessageInfo(mi)1666}1667}16681669func (x *EnvironmentVariable) String() string {1670return protoimpl.X.MessageStringOf(x)1671}16721673func (*EnvironmentVariable) ProtoMessage() {}16741675func (x *EnvironmentVariable) ProtoReflect() protoreflect.Message {1676mi := &file_gitpod_v1_envvar_proto_msgTypes[29]1677if protoimpl.UnsafeEnabled && x != nil {1678ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))1679if ms.LoadMessageInfo() == nil {1680ms.StoreMessageInfo(mi)1681}1682return ms1683}1684return mi.MessageOf(x)1685}16861687// Deprecated: Use EnvironmentVariable.ProtoReflect.Descriptor instead.1688func (*EnvironmentVariable) Descriptor() ([]byte, []int) {1689return file_gitpod_v1_envvar_proto_rawDescGZIP(), []int{29}1690}16911692func (x *EnvironmentVariable) GetName() string {1693if x != nil {1694return x.Name1695}1696return ""1697}16981699func (x *EnvironmentVariable) GetValue() string {1700if x != nil {1701return x.Value1702}1703return ""1704}17051706var File_gitpod_v1_envvar_proto protoreflect.FileDescriptor17071708var file_gitpod_v1_envvar_proto_rawDesc = []byte{17090x0a, 0x16, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x6e, 0x76, 0x76,17100x61, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x09, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64,17110x2e, 0x76, 0x31, 0x1a, 0x1a, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x76, 0x31, 0x2f, 0x70,17120x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,17130x82, 0x01, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,17140x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69,17150x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e,17160x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,17170x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,17180x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74,17190x6f, 0x72, 0x79, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,17200x09, 0x52, 0x11, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x74,17210x74, 0x65, 0x72, 0x6e, 0x22, 0x63, 0x0a, 0x23, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x73, 0x65, 0x72,17220x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,17230x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x0a, 0x70,17240x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,17250x1c, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x67, 0x69,17260x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x0a, 0x70,17270x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xbe, 0x01, 0x0a, 0x24, 0x4c, 0x69,17280x73, 0x74, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,17290x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,17300x73, 0x65, 0x12, 0x57, 0x0a, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,17310x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,17320x0b, 0x32, 0x22, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73,17330x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72,17340x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65,17350x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x3d, 0x0a, 0x0a, 0x70,17360x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,17370x1d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x67, 0x69,17380x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52, 0x0a,17390x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xf0, 0x01, 0x0a, 0x24, 0x55,17400x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,17410x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75,17420x65, 0x73, 0x74, 0x12, 0x36, 0x0a, 0x17, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65,17430x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01,17440x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,17450x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x04, 0x6e,17460x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x04, 0x6e, 0x61, 0x6d,17470x65, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20,17480x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12,17490x32, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x70, 0x61,17500x74, 0x74, 0x65, 0x72, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x02, 0x52, 0x11, 0x72,17510x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e,17520x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x08, 0x0a, 0x06,17530x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x73,17540x69, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x22, 0x7e, 0x0a,17550x25, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72,17560x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65,17570x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f,17580x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x01,17590x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31,17600x2e, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,17610x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f,17620x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x7f, 0x0a,17630x24, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72,17640x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65,17650x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,17660x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,17670x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12,17680x2d, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x70, 0x61,17690x74, 0x74, 0x65, 0x72, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x72, 0x65, 0x70,17700x6f, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x22, 0x7e,17710x0a, 0x25, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69,17720x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,17730x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x55, 0x0a, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72,17740x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x18,17750x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76,17760x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,17770x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72,17780x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x5e,17790x0a, 0x24, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69,17800x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,17810x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x36, 0x0a, 0x17, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f,17820x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69,17830x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,17840x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x64, 0x22, 0x27,17850x0a, 0x25, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69,17860x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,17870x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0xb8, 0x01, 0x0a, 0x20, 0x43, 0x6f, 0x6e, 0x66,17880x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,17890x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02,17900x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,17910x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,17920x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,17930x6e, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6e, 0x66,17940x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x45, 0x0a, 0x09, 0x61,17950x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27,17960x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x76, 0x69, 0x72,17970x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x64,17980x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x61, 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69,17990x6f, 0x6e, 0x22, 0x97, 0x01, 0x0a, 0x2c, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,18000x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,18010x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,18020x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61,18030x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63,18040x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x3c,18050x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,18060x28, 0x0b, 0x32, 0x1c, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50,18070x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,18080x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xd0, 0x01, 0x0a,18090x2d, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,18100x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72,18110x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x60,18120x0a, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61,18130x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e,18140x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,18150x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65,18160x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x14, 0x65, 0x6e, 0x76, 0x69,18170x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73,18180x12, 0x3d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02,18190x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31,18200x2e, 0x50, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f,18210x6e, 0x73, 0x65, 0x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22,18220xb3, 0x02, 0x0a, 0x2d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,18230x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65,18240x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,18250x74, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69,18260x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6e,18270x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x36, 0x0a, 0x17,18280x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69,18290x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65,18300x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62,18310x6c, 0x65, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,18320x28, 0x09, 0x48, 0x00, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a,18330x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x05,18340x76, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x4a, 0x0a, 0x09, 0x61, 0x64, 0x6d, 0x69,18350x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x67, 0x69,18360x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,18370x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x73,18380x73, 0x69, 0x6f, 0x6e, 0x48, 0x02, 0x52, 0x09, 0x61, 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,18390x6e, 0x88, 0x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x08, 0x0a,18400x06, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x61, 0x64, 0x6d, 0x69,18410x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x90, 0x01, 0x0a, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,18420x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76,18430x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,18440x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5e, 0x0a, 0x14, 0x65, 0x6e, 0x76, 0x69,18450x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,18460x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,18470x76, 0x31, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,18480x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,18490x62, 0x6c, 0x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,18500x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0xcb, 0x01, 0x0a, 0x2d, 0x43, 0x72, 0x65,18510x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,18520x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,18530x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x63, 0x6f,18540x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01,18550x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74,18560x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,18570x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,18580x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12,18590x45, 0x0a, 0x09, 0x61, 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,18600x28, 0x0e, 0x32, 0x27, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x45,18610x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62,18620x6c, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x61, 0x64, 0x6d,18630x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x90, 0x01, 0x0a, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,18640x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e,18650x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,18660x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5e, 0x0a, 0x14, 0x65, 0x6e, 0x76,18670x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,18680x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64,18690x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,18700x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69,18710x61, 0x62, 0x6c, 0x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,18720x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x67, 0x0a, 0x2d, 0x44, 0x65, 0x6c,18730x65, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,18740x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,18750x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x36, 0x0a, 0x17, 0x65, 0x6e,18760x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62,18770x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65, 0x6e, 0x76,18780x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,18790x49, 0x64, 0x22, 0x30, 0x0a, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66,18800x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,18810x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70,18820x6f, 0x6e, 0x73, 0x65, 0x22, 0x6e, 0x0a, 0x1f, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,18830x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56,18840x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,18850x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,18860x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x6f,18870x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x03,18880x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69,18890x6f, 0x6e, 0x49, 0x64, 0x22, 0x94, 0x01, 0x0a, 0x2b, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x72, 0x67,18900x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,18910x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71,18920x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,18930x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f,18940x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x3c, 0x0a,18950x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,18960x0b, 0x32, 0x1c, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61,18970x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52,18980x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xce, 0x01, 0x0a, 0x2c,18990x4c, 0x69, 0x73, 0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,19000x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,19010x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5f, 0x0a, 0x15,19020x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69,19030x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x69,19040x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,19050x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56,19060x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,19070x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x3d, 0x0a,19080x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28,19090x0b, 0x32, 0x1d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61,19100x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,19110x52, 0x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xd6, 0x01, 0x0a,19120x2c, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,19130x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,19140x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a,19150x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64,19160x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,19170x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x36, 0x0a, 0x17, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f,19180x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69,19190x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,19200x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x64, 0x12, 0x17,19210x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x04,19220x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,19230x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x88,19240x01, 0x01, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x08, 0x0a, 0x06, 0x5f,19250x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x8e, 0x01, 0x0a, 0x2d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,19260x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69,19270x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,19280x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72,19290x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x18,19300x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76,19310x31, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e,19320x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,19330x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,19340x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x81, 0x01, 0x0a, 0x2c, 0x43, 0x72, 0x65, 0x61, 0x74,19350x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76,19360x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,19370x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e,19380x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,19390x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,19400x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,19410x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20,19420x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x8e, 0x01, 0x0a, 0x2d, 0x43,19430x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,19440x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69,19450x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5d, 0x0a, 0x14,19460x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69,19470x61, 0x62, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x69, 0x74,19480x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,19490x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,19500x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x13, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,19510x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x66, 0x0a, 0x2c, 0x44,19520x65, 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,19530x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69,19540x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x36, 0x0a, 0x17, 0x65,19550x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61,19560x62, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x65, 0x6e,19570x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,19580x65, 0x49, 0x64, 0x22, 0x2f, 0x0a, 0x2d, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x72, 0x67,19590x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,19600x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70,19610x6f, 0x6e, 0x73, 0x65, 0x22, 0x50, 0x0a, 0x2b, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x57,19620x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,19630x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75,19640x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65,19650x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x73,19660x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0x83, 0x01, 0x0a, 0x2c, 0x52, 0x65, 0x73, 0x6f, 0x6c,19670x76, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x76, 0x69, 0x72,19680x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52,19690x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x53, 0x0a, 0x15, 0x65, 0x6e, 0x76, 0x69, 0x72,19700x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73,19710x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,19720x76, 0x31, 0x2e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,19730x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x14, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,19740x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x22, 0x3f, 0x0a, 0x13,19750x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,19760x62, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,19770x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,19780x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2a, 0xaa, 0x01,19790x0a, 0x1c, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72,19800x69, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x64, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2e,19810x0a, 0x2a, 0x45, 0x4e, 0x56, 0x49, 0x52, 0x4f, 0x4e, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x56, 0x41,19820x52, 0x49, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x41, 0x44, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e,19830x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x2b,19840x0a, 0x27, 0x45, 0x4e, 0x56, 0x49, 0x52, 0x4f, 0x4e, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x56, 0x41,19850x52, 0x49, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x41, 0x44, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e,19860x5f, 0x50, 0x52, 0x45, 0x42, 0x55, 0x49, 0x4c, 0x44, 0x10, 0x01, 0x12, 0x2d, 0x0a, 0x29, 0x45,19870x4e, 0x56, 0x49, 0x52, 0x4f, 0x4e, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x56, 0x41, 0x52, 0x49, 0x41,19880x42, 0x4c, 0x45, 0x5f, 0x41, 0x44, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x56,19890x45, 0x52, 0x59, 0x57, 0x48, 0x45, 0x52, 0x45, 0x10, 0x02, 0x32, 0xcf, 0x0f, 0x0a, 0x1a, 0x45,19900x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62,19910x6c, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x81, 0x01, 0x0a, 0x1c, 0x4c, 0x69,19920x73, 0x74, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,19930x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x2e, 0x2e, 0x67, 0x69, 0x74,19940x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x73, 0x65, 0x72, 0x45,19950x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62,19960x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x67, 0x69, 0x74,19970x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x73, 0x65, 0x72, 0x45,19980x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62,19990x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x84, 0x01,20000x0a, 0x1d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69,20010x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12,20020x2f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61,20030x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,20040x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,20050x1a, 0x30, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64,20060x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65,20070x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,20080x73, 0x65, 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a, 0x1d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55,20090x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,20100x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,20110x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76,20120x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,20130x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64,20140x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e,20150x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,20160x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x84, 0x01, 0x0a, 0x1d,20170x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f,20180x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2f, 0x2e,20190x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,20200x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56,20210x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30,20220x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74,20230x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,20240x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,20250x22, 0x00, 0x12, 0x9c, 0x01, 0x0a, 0x25, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69,20260x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,20270x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x37, 0x2e, 0x67,20280x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e,20290x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f,20300x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65,20310x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76,20320x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74,20330x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,20340x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,20350x00, 0x12, 0x9f, 0x01, 0x0a, 0x26, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66,20360x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,20370x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x38, 0x2e, 0x67,20380x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43,20390x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69,20400x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,20410x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,20420x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75,20430x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,20440x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,20450x65, 0x22, 0x00, 0x12, 0x9f, 0x01, 0x0a, 0x26, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x6f,20460x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72,20470x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x38,20480x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74,20490x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e,20500x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,20510x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f,20520x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69,20530x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,20540x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,20550x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x9f, 0x01, 0x0a, 0x26, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,20560x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76,20570x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,20580x12, 0x38, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c,20590x65, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,20600x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61,20610x62, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x67, 0x69, 0x74,20620x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6e,20630x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f,20640x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73,20650x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x99, 0x01, 0x0a, 0x24, 0x4c, 0x69, 0x73, 0x74,20660x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69,20670x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73,20680x12, 0x36, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73,20690x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76,20700x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,20710x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f,20720x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,20730x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,20740x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,20750x65, 0x22, 0x00, 0x12, 0x9c, 0x01, 0x0a, 0x25, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x72,20760x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f,20770x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x37, 0x2e,20780x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,20790x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69,20800x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52,20810x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e,20820x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,20830x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,20840x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,20850x22, 0x00, 0x12, 0x9c, 0x01, 0x0a, 0x25, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67,20860x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e,20870x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x37, 0x2e, 0x67,20880x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f,20890x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72,20900x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65,20910x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76,20920x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61,20930x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56,20940x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,20950x00, 0x12, 0x9c, 0x01, 0x0a, 0x25, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61,20960x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d,20970x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x37, 0x2e, 0x67, 0x69,20980x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x72,20990x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f,21000x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x71,21010x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31,21020x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74,21030x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61,21040x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00,21050x12, 0x99, 0x01, 0x0a, 0x24, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x57, 0x6f, 0x72, 0x6b,21060x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74,21070x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x36, 0x2e, 0x67, 0x69, 0x74, 0x70,21080x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x57, 0x6f, 0x72,21090x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e,21100x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,21110x74, 0x1a, 0x37, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65,21120x73, 0x6f, 0x6c, 0x76, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x45, 0x6e,21130x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,21140x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x51, 0x0a, 0x16,21150x69, 0x6f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63,21160x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63,21170x6f, 0x6d, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2d, 0x69, 0x6f, 0x2f, 0x67, 0x69, 0x74,21180x70, 0x6f, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x73, 0x2f, 0x70,21190x75, 0x62, 0x6c, 0x69, 0x63, 0x2d, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x6f, 0x2f, 0x76, 0x31, 0x62,21200x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,2121}21222123var (2124file_gitpod_v1_envvar_proto_rawDescOnce sync.Once2125file_gitpod_v1_envvar_proto_rawDescData = file_gitpod_v1_envvar_proto_rawDesc2126)21272128func file_gitpod_v1_envvar_proto_rawDescGZIP() []byte {2129file_gitpod_v1_envvar_proto_rawDescOnce.Do(func() {2130file_gitpod_v1_envvar_proto_rawDescData = protoimpl.X.CompressGZIP(file_gitpod_v1_envvar_proto_rawDescData)2131})2132return file_gitpod_v1_envvar_proto_rawDescData2133}21342135var file_gitpod_v1_envvar_proto_enumTypes = make([]protoimpl.EnumInfo, 1)2136var file_gitpod_v1_envvar_proto_msgTypes = make([]protoimpl.MessageInfo, 30)2137var file_gitpod_v1_envvar_proto_goTypes = []interface{}{2138(EnvironmentVariableAdmission)(0), // 0: gitpod.v1.EnvironmentVariableAdmission2139(*UserEnvironmentVariable)(nil), // 1: gitpod.v1.UserEnvironmentVariable2140(*ListUserEnvironmentVariablesRequest)(nil), // 2: gitpod.v1.ListUserEnvironmentVariablesRequest2141(*ListUserEnvironmentVariablesResponse)(nil), // 3: gitpod.v1.ListUserEnvironmentVariablesResponse2142(*UpdateUserEnvironmentVariableRequest)(nil), // 4: gitpod.v1.UpdateUserEnvironmentVariableRequest2143(*UpdateUserEnvironmentVariableResponse)(nil), // 5: gitpod.v1.UpdateUserEnvironmentVariableResponse2144(*CreateUserEnvironmentVariableRequest)(nil), // 6: gitpod.v1.CreateUserEnvironmentVariableRequest2145(*CreateUserEnvironmentVariableResponse)(nil), // 7: gitpod.v1.CreateUserEnvironmentVariableResponse2146(*DeleteUserEnvironmentVariableRequest)(nil), // 8: gitpod.v1.DeleteUserEnvironmentVariableRequest2147(*DeleteUserEnvironmentVariableResponse)(nil), // 9: gitpod.v1.DeleteUserEnvironmentVariableResponse2148(*ConfigurationEnvironmentVariable)(nil), // 10: gitpod.v1.ConfigurationEnvironmentVariable2149(*ListConfigurationEnvironmentVariablesRequest)(nil), // 11: gitpod.v1.ListConfigurationEnvironmentVariablesRequest2150(*ListConfigurationEnvironmentVariablesResponse)(nil), // 12: gitpod.v1.ListConfigurationEnvironmentVariablesResponse2151(*UpdateConfigurationEnvironmentVariableRequest)(nil), // 13: gitpod.v1.UpdateConfigurationEnvironmentVariableRequest2152(*UpdateConfigurationEnvironmentVariableResponse)(nil), // 14: gitpod.v1.UpdateConfigurationEnvironmentVariableResponse2153(*CreateConfigurationEnvironmentVariableRequest)(nil), // 15: gitpod.v1.CreateConfigurationEnvironmentVariableRequest2154(*CreateConfigurationEnvironmentVariableResponse)(nil), // 16: gitpod.v1.CreateConfigurationEnvironmentVariableResponse2155(*DeleteConfigurationEnvironmentVariableRequest)(nil), // 17: gitpod.v1.DeleteConfigurationEnvironmentVariableRequest2156(*DeleteConfigurationEnvironmentVariableResponse)(nil), // 18: gitpod.v1.DeleteConfigurationEnvironmentVariableResponse2157(*OrganizationEnvironmentVariable)(nil), // 19: gitpod.v1.OrganizationEnvironmentVariable2158(*ListOrganizationEnvironmentVariablesRequest)(nil), // 20: gitpod.v1.ListOrganizationEnvironmentVariablesRequest2159(*ListOrganizationEnvironmentVariablesResponse)(nil), // 21: gitpod.v1.ListOrganizationEnvironmentVariablesResponse2160(*UpdateOrganizationEnvironmentVariableRequest)(nil), // 22: gitpod.v1.UpdateOrganizationEnvironmentVariableRequest2161(*UpdateOrganizationEnvironmentVariableResponse)(nil), // 23: gitpod.v1.UpdateOrganizationEnvironmentVariableResponse2162(*CreateOrganizationEnvironmentVariableRequest)(nil), // 24: gitpod.v1.CreateOrganizationEnvironmentVariableRequest2163(*CreateOrganizationEnvironmentVariableResponse)(nil), // 25: gitpod.v1.CreateOrganizationEnvironmentVariableResponse2164(*DeleteOrganizationEnvironmentVariableRequest)(nil), // 26: gitpod.v1.DeleteOrganizationEnvironmentVariableRequest2165(*DeleteOrganizationEnvironmentVariableResponse)(nil), // 27: gitpod.v1.DeleteOrganizationEnvironmentVariableResponse2166(*ResolveWorkspaceEnvironmentVariablesRequest)(nil), // 28: gitpod.v1.ResolveWorkspaceEnvironmentVariablesRequest2167(*ResolveWorkspaceEnvironmentVariablesResponse)(nil), // 29: gitpod.v1.ResolveWorkspaceEnvironmentVariablesResponse2168(*EnvironmentVariable)(nil), // 30: gitpod.v1.EnvironmentVariable2169(*PaginationRequest)(nil), // 31: gitpod.v1.PaginationRequest2170(*PaginationResponse)(nil), // 32: gitpod.v1.PaginationResponse2171}2172var file_gitpod_v1_envvar_proto_depIdxs = []int32{217331, // 0: gitpod.v1.ListUserEnvironmentVariablesRequest.pagination:type_name -> gitpod.v1.PaginationRequest21741, // 1: gitpod.v1.ListUserEnvironmentVariablesResponse.environment_variables:type_name -> gitpod.v1.UserEnvironmentVariable217532, // 2: gitpod.v1.ListUserEnvironmentVariablesResponse.pagination:type_name -> gitpod.v1.PaginationResponse21761, // 3: gitpod.v1.UpdateUserEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.UserEnvironmentVariable21771, // 4: gitpod.v1.CreateUserEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.UserEnvironmentVariable21780, // 5: gitpod.v1.ConfigurationEnvironmentVariable.admission:type_name -> gitpod.v1.EnvironmentVariableAdmission217931, // 6: gitpod.v1.ListConfigurationEnvironmentVariablesRequest.pagination:type_name -> gitpod.v1.PaginationRequest218010, // 7: gitpod.v1.ListConfigurationEnvironmentVariablesResponse.environment_variables:type_name -> gitpod.v1.ConfigurationEnvironmentVariable218132, // 8: gitpod.v1.ListConfigurationEnvironmentVariablesResponse.pagination:type_name -> gitpod.v1.PaginationResponse21820, // 9: gitpod.v1.UpdateConfigurationEnvironmentVariableRequest.admission:type_name -> gitpod.v1.EnvironmentVariableAdmission218310, // 10: gitpod.v1.UpdateConfigurationEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.ConfigurationEnvironmentVariable21840, // 11: gitpod.v1.CreateConfigurationEnvironmentVariableRequest.admission:type_name -> gitpod.v1.EnvironmentVariableAdmission218510, // 12: gitpod.v1.CreateConfigurationEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.ConfigurationEnvironmentVariable218631, // 13: gitpod.v1.ListOrganizationEnvironmentVariablesRequest.pagination:type_name -> gitpod.v1.PaginationRequest218719, // 14: gitpod.v1.ListOrganizationEnvironmentVariablesResponse.environment_variables:type_name -> gitpod.v1.OrganizationEnvironmentVariable218832, // 15: gitpod.v1.ListOrganizationEnvironmentVariablesResponse.pagination:type_name -> gitpod.v1.PaginationResponse218919, // 16: gitpod.v1.UpdateOrganizationEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.OrganizationEnvironmentVariable219019, // 17: gitpod.v1.CreateOrganizationEnvironmentVariableResponse.environment_variable:type_name -> gitpod.v1.OrganizationEnvironmentVariable219130, // 18: gitpod.v1.ResolveWorkspaceEnvironmentVariablesResponse.environment_variables:type_name -> gitpod.v1.EnvironmentVariable21922, // 19: gitpod.v1.EnvironmentVariableService.ListUserEnvironmentVariables:input_type -> gitpod.v1.ListUserEnvironmentVariablesRequest21934, // 20: gitpod.v1.EnvironmentVariableService.UpdateUserEnvironmentVariable:input_type -> gitpod.v1.UpdateUserEnvironmentVariableRequest21946, // 21: gitpod.v1.EnvironmentVariableService.CreateUserEnvironmentVariable:input_type -> gitpod.v1.CreateUserEnvironmentVariableRequest21958, // 22: gitpod.v1.EnvironmentVariableService.DeleteUserEnvironmentVariable:input_type -> gitpod.v1.DeleteUserEnvironmentVariableRequest219611, // 23: gitpod.v1.EnvironmentVariableService.ListConfigurationEnvironmentVariables:input_type -> gitpod.v1.ListConfigurationEnvironmentVariablesRequest219713, // 24: gitpod.v1.EnvironmentVariableService.UpdateConfigurationEnvironmentVariable:input_type -> gitpod.v1.UpdateConfigurationEnvironmentVariableRequest219815, // 25: gitpod.v1.EnvironmentVariableService.CreateConfigurationEnvironmentVariable:input_type -> gitpod.v1.CreateConfigurationEnvironmentVariableRequest219917, // 26: gitpod.v1.EnvironmentVariableService.DeleteConfigurationEnvironmentVariable:input_type -> gitpod.v1.DeleteConfigurationEnvironmentVariableRequest220020, // 27: gitpod.v1.EnvironmentVariableService.ListOrganizationEnvironmentVariables:input_type -> gitpod.v1.ListOrganizationEnvironmentVariablesRequest220122, // 28: gitpod.v1.EnvironmentVariableService.UpdateOrganizationEnvironmentVariable:input_type -> gitpod.v1.UpdateOrganizationEnvironmentVariableRequest220224, // 29: gitpod.v1.EnvironmentVariableService.CreateOrganizationEnvironmentVariable:input_type -> gitpod.v1.CreateOrganizationEnvironmentVariableRequest220326, // 30: gitpod.v1.EnvironmentVariableService.DeleteOrganizationEnvironmentVariable:input_type -> gitpod.v1.DeleteOrganizationEnvironmentVariableRequest220428, // 31: gitpod.v1.EnvironmentVariableService.ResolveWorkspaceEnvironmentVariables:input_type -> gitpod.v1.ResolveWorkspaceEnvironmentVariablesRequest22053, // 32: gitpod.v1.EnvironmentVariableService.ListUserEnvironmentVariables:output_type -> gitpod.v1.ListUserEnvironmentVariablesResponse22065, // 33: gitpod.v1.EnvironmentVariableService.UpdateUserEnvironmentVariable:output_type -> gitpod.v1.UpdateUserEnvironmentVariableResponse22077, // 34: gitpod.v1.EnvironmentVariableService.CreateUserEnvironmentVariable:output_type -> gitpod.v1.CreateUserEnvironmentVariableResponse22089, // 35: gitpod.v1.EnvironmentVariableService.DeleteUserEnvironmentVariable:output_type -> gitpod.v1.DeleteUserEnvironmentVariableResponse220912, // 36: gitpod.v1.EnvironmentVariableService.ListConfigurationEnvironmentVariables:output_type -> gitpod.v1.ListConfigurationEnvironmentVariablesResponse221014, // 37: gitpod.v1.EnvironmentVariableService.UpdateConfigurationEnvironmentVariable:output_type -> gitpod.v1.UpdateConfigurationEnvironmentVariableResponse221116, // 38: gitpod.v1.EnvironmentVariableService.CreateConfigurationEnvironmentVariable:output_type -> gitpod.v1.CreateConfigurationEnvironmentVariableResponse221218, // 39: gitpod.v1.EnvironmentVariableService.DeleteConfigurationEnvironmentVariable:output_type -> gitpod.v1.DeleteConfigurationEnvironmentVariableResponse221321, // 40: gitpod.v1.EnvironmentVariableService.ListOrganizationEnvironmentVariables:output_type -> gitpod.v1.ListOrganizationEnvironmentVariablesResponse221423, // 41: gitpod.v1.EnvironmentVariableService.UpdateOrganizationEnvironmentVariable:output_type -> gitpod.v1.UpdateOrganizationEnvironmentVariableResponse221525, // 42: gitpod.v1.EnvironmentVariableService.CreateOrganizationEnvironmentVariable:output_type -> gitpod.v1.CreateOrganizationEnvironmentVariableResponse221627, // 43: gitpod.v1.EnvironmentVariableService.DeleteOrganizationEnvironmentVariable:output_type -> gitpod.v1.DeleteOrganizationEnvironmentVariableResponse221729, // 44: gitpod.v1.EnvironmentVariableService.ResolveWorkspaceEnvironmentVariables:output_type -> gitpod.v1.ResolveWorkspaceEnvironmentVariablesResponse221832, // [32:45] is the sub-list for method output_type221919, // [19:32] is the sub-list for method input_type222019, // [19:19] is the sub-list for extension type_name222119, // [19:19] is the sub-list for extension extendee22220, // [0:19] is the sub-list for field type_name2223}22242225func init() { file_gitpod_v1_envvar_proto_init() }2226func file_gitpod_v1_envvar_proto_init() {2227if File_gitpod_v1_envvar_proto != nil {2228return2229}2230file_gitpod_v1_pagination_proto_init()2231if !protoimpl.UnsafeEnabled {2232file_gitpod_v1_envvar_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {2233switch v := v.(*UserEnvironmentVariable); i {2234case 0:2235return &v.state2236case 1:2237return &v.sizeCache2238case 2:2239return &v.unknownFields2240default:2241return nil2242}2243}2244file_gitpod_v1_envvar_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {2245switch v := v.(*ListUserEnvironmentVariablesRequest); i {2246case 0:2247return &v.state2248case 1:2249return &v.sizeCache2250case 2:2251return &v.unknownFields2252default:2253return nil2254}2255}2256file_gitpod_v1_envvar_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {2257switch v := v.(*ListUserEnvironmentVariablesResponse); i {2258case 0:2259return &v.state2260case 1:2261return &v.sizeCache2262case 2:2263return &v.unknownFields2264default:2265return nil2266}2267}2268file_gitpod_v1_envvar_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {2269switch v := v.(*UpdateUserEnvironmentVariableRequest); i {2270case 0:2271return &v.state2272case 1:2273return &v.sizeCache2274case 2:2275return &v.unknownFields2276default:2277return nil2278}2279}2280file_gitpod_v1_envvar_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {2281switch v := v.(*UpdateUserEnvironmentVariableResponse); i {2282case 0:2283return &v.state2284case 1:2285return &v.sizeCache2286case 2:2287return &v.unknownFields2288default:2289return nil2290}2291}2292file_gitpod_v1_envvar_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {2293switch v := v.(*CreateUserEnvironmentVariableRequest); i {2294case 0:2295return &v.state2296case 1:2297return &v.sizeCache2298case 2:2299return &v.unknownFields2300default:2301return nil2302}2303}2304file_gitpod_v1_envvar_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {2305switch v := v.(*CreateUserEnvironmentVariableResponse); i {2306case 0:2307return &v.state2308case 1:2309return &v.sizeCache2310case 2:2311return &v.unknownFields2312default:2313return nil2314}2315}2316file_gitpod_v1_envvar_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {2317switch v := v.(*DeleteUserEnvironmentVariableRequest); i {2318case 0:2319return &v.state2320case 1:2321return &v.sizeCache2322case 2:2323return &v.unknownFields2324default:2325return nil2326}2327}2328file_gitpod_v1_envvar_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {2329switch v := v.(*DeleteUserEnvironmentVariableResponse); i {2330case 0:2331return &v.state2332case 1:2333return &v.sizeCache2334case 2:2335return &v.unknownFields2336default:2337return nil2338}2339}2340file_gitpod_v1_envvar_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {2341switch v := v.(*ConfigurationEnvironmentVariable); i {2342case 0:2343return &v.state2344case 1:2345return &v.sizeCache2346case 2:2347return &v.unknownFields2348default:2349return nil2350}2351}2352file_gitpod_v1_envvar_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {2353switch v := v.(*ListConfigurationEnvironmentVariablesRequest); i {2354case 0:2355return &v.state2356case 1:2357return &v.sizeCache2358case 2:2359return &v.unknownFields2360default:2361return nil2362}2363}2364file_gitpod_v1_envvar_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {2365switch v := v.(*ListConfigurationEnvironmentVariablesResponse); i {2366case 0:2367return &v.state2368case 1:2369return &v.sizeCache2370case 2:2371return &v.unknownFields2372default:2373return nil2374}2375}2376file_gitpod_v1_envvar_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {2377switch v := v.(*UpdateConfigurationEnvironmentVariableRequest); i {2378case 0:2379return &v.state2380case 1:2381return &v.sizeCache2382case 2:2383return &v.unknownFields2384default:2385return nil2386}2387}2388file_gitpod_v1_envvar_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {2389switch v := v.(*UpdateConfigurationEnvironmentVariableResponse); i {2390case 0:2391return &v.state2392case 1:2393return &v.sizeCache2394case 2:2395return &v.unknownFields2396default:2397return nil2398}2399}2400file_gitpod_v1_envvar_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {2401switch v := v.(*CreateConfigurationEnvironmentVariableRequest); i {2402case 0:2403return &v.state2404case 1:2405return &v.sizeCache2406case 2:2407return &v.unknownFields2408default:2409return nil2410}2411}2412file_gitpod_v1_envvar_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {2413switch v := v.(*CreateConfigurationEnvironmentVariableResponse); i {2414case 0:2415return &v.state2416case 1:2417return &v.sizeCache2418case 2:2419return &v.unknownFields2420default:2421return nil2422}2423}2424file_gitpod_v1_envvar_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {2425switch v := v.(*DeleteConfigurationEnvironmentVariableRequest); i {2426case 0:2427return &v.state2428case 1:2429return &v.sizeCache2430case 2:2431return &v.unknownFields2432default:2433return nil2434}2435}2436file_gitpod_v1_envvar_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {2437switch v := v.(*DeleteConfigurationEnvironmentVariableResponse); i {2438case 0:2439return &v.state2440case 1:2441return &v.sizeCache2442case 2:2443return &v.unknownFields2444default:2445return nil2446}2447}2448file_gitpod_v1_envvar_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {2449switch v := v.(*OrganizationEnvironmentVariable); i {2450case 0:2451return &v.state2452case 1:2453return &v.sizeCache2454case 2:2455return &v.unknownFields2456default:2457return nil2458}2459}2460file_gitpod_v1_envvar_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {2461switch v := v.(*ListOrganizationEnvironmentVariablesRequest); i {2462case 0:2463return &v.state2464case 1:2465return &v.sizeCache2466case 2:2467return &v.unknownFields2468default:2469return nil2470}2471}2472file_gitpod_v1_envvar_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {2473switch v := v.(*ListOrganizationEnvironmentVariablesResponse); i {2474case 0:2475return &v.state2476case 1:2477return &v.sizeCache2478case 2:2479return &v.unknownFields2480default:2481return nil2482}2483}2484file_gitpod_v1_envvar_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {2485switch v := v.(*UpdateOrganizationEnvironmentVariableRequest); i {2486case 0:2487return &v.state2488case 1:2489return &v.sizeCache2490case 2:2491return &v.unknownFields2492default:2493return nil2494}2495}2496file_gitpod_v1_envvar_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {2497switch v := v.(*UpdateOrganizationEnvironmentVariableResponse); i {2498case 0:2499return &v.state2500case 1:2501return &v.sizeCache2502case 2:2503return &v.unknownFields2504default:2505return nil2506}2507}2508file_gitpod_v1_envvar_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {2509switch v := v.(*CreateOrganizationEnvironmentVariableRequest); i {2510case 0:2511return &v.state2512case 1:2513return &v.sizeCache2514case 2:2515return &v.unknownFields2516default:2517return nil2518}2519}2520file_gitpod_v1_envvar_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {2521switch v := v.(*CreateOrganizationEnvironmentVariableResponse); i {2522case 0:2523return &v.state2524case 1:2525return &v.sizeCache2526case 2:2527return &v.unknownFields2528default:2529return nil2530}2531}2532file_gitpod_v1_envvar_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {2533switch v := v.(*DeleteOrganizationEnvironmentVariableRequest); i {2534case 0:2535return &v.state2536case 1:2537return &v.sizeCache2538case 2:2539return &v.unknownFields2540default:2541return nil2542}2543}2544file_gitpod_v1_envvar_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {2545switch v := v.(*DeleteOrganizationEnvironmentVariableResponse); i {2546case 0:2547return &v.state2548case 1:2549return &v.sizeCache2550case 2:2551return &v.unknownFields2552default:2553return nil2554}2555}2556file_gitpod_v1_envvar_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {2557switch v := v.(*ResolveWorkspaceEnvironmentVariablesRequest); i {2558case 0:2559return &v.state2560case 1:2561return &v.sizeCache2562case 2:2563return &v.unknownFields2564default:2565return nil2566}2567}2568file_gitpod_v1_envvar_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {2569switch v := v.(*ResolveWorkspaceEnvironmentVariablesResponse); i {2570case 0:2571return &v.state2572case 1:2573return &v.sizeCache2574case 2:2575return &v.unknownFields2576default:2577return nil2578}2579}2580file_gitpod_v1_envvar_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {2581switch v := v.(*EnvironmentVariable); i {2582case 0:2583return &v.state2584case 1:2585return &v.sizeCache2586case 2:2587return &v.unknownFields2588default:2589return nil2590}2591}2592}2593file_gitpod_v1_envvar_proto_msgTypes[3].OneofWrappers = []interface{}{}2594file_gitpod_v1_envvar_proto_msgTypes[12].OneofWrappers = []interface{}{}2595file_gitpod_v1_envvar_proto_msgTypes[21].OneofWrappers = []interface{}{}2596type x struct{}2597out := protoimpl.TypeBuilder{2598File: protoimpl.DescBuilder{2599GoPackagePath: reflect.TypeOf(x{}).PkgPath(),2600RawDescriptor: file_gitpod_v1_envvar_proto_rawDesc,2601NumEnums: 1,2602NumMessages: 30,2603NumExtensions: 0,2604NumServices: 1,2605},2606GoTypes: file_gitpod_v1_envvar_proto_goTypes,2607DependencyIndexes: file_gitpod_v1_envvar_proto_depIdxs,2608EnumInfos: file_gitpod_v1_envvar_proto_enumTypes,2609MessageInfos: file_gitpod_v1_envvar_proto_msgTypes,2610}.Build()2611File_gitpod_v1_envvar_proto = out.File2612file_gitpod_v1_envvar_proto_rawDesc = nil2613file_gitpod_v1_envvar_proto_goTypes = nil2614file_gitpod_v1_envvar_proto_depIdxs = nil2615}261626172618