Path: blob/main/components/public-api/go/v1/auditlogs.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/auditlogs.proto910package v11112import (13protoreflect "google.golang.org/protobuf/reflect/protoreflect"14protoimpl "google.golang.org/protobuf/runtime/protoimpl"15timestamppb "google.golang.org/protobuf/types/known/timestamppb"16reflect "reflect"17sync "sync"18)1920const (21// Verify that this generated code is sufficiently up-to-date.22_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)23// Verify that runtime/protoimpl is sufficiently up-to-date.24_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)25)2627type ListAuditLogsRequest struct {28state protoimpl.MessageState29sizeCache protoimpl.SizeCache30unknownFields protoimpl.UnknownFields3132// pagination contains the pagination options for listing workspaces33Pagination *PaginationRequest `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`34// organization_id is the ID of the organization that contains the workspaces35//36// +required37OrganizationId string `protobuf:"bytes,2,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`38// from specifies the starting time range for this request.39// All sessions which existed starting at from will be returned.40From *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=from,proto3" json:"from,omitempty"`41// to specifies the end time range for this request.42// All sessions which existed ending at to will be returned.43To *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=to,proto3" json:"to,omitempty"`44// actor_id is the ID of the user that performed the action45ActorId string `protobuf:"bytes,5,opt,name=actor_id,json=actorId,proto3" json:"actor_id,omitempty"`46// action is the action that was performed47Action string `protobuf:"bytes,6,opt,name=action,proto3" json:"action,omitempty"`48}4950func (x *ListAuditLogsRequest) Reset() {51*x = ListAuditLogsRequest{}52if protoimpl.UnsafeEnabled {53mi := &file_gitpod_v1_auditlogs_proto_msgTypes[0]54ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))55ms.StoreMessageInfo(mi)56}57}5859func (x *ListAuditLogsRequest) String() string {60return protoimpl.X.MessageStringOf(x)61}6263func (*ListAuditLogsRequest) ProtoMessage() {}6465func (x *ListAuditLogsRequest) ProtoReflect() protoreflect.Message {66mi := &file_gitpod_v1_auditlogs_proto_msgTypes[0]67if protoimpl.UnsafeEnabled && x != nil {68ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))69if ms.LoadMessageInfo() == nil {70ms.StoreMessageInfo(mi)71}72return ms73}74return mi.MessageOf(x)75}7677// Deprecated: Use ListAuditLogsRequest.ProtoReflect.Descriptor instead.78func (*ListAuditLogsRequest) Descriptor() ([]byte, []int) {79return file_gitpod_v1_auditlogs_proto_rawDescGZIP(), []int{0}80}8182func (x *ListAuditLogsRequest) GetPagination() *PaginationRequest {83if x != nil {84return x.Pagination85}86return nil87}8889func (x *ListAuditLogsRequest) GetOrganizationId() string {90if x != nil {91return x.OrganizationId92}93return ""94}9596func (x *ListAuditLogsRequest) GetFrom() *timestamppb.Timestamp {97if x != nil {98return x.From99}100return nil101}102103func (x *ListAuditLogsRequest) GetTo() *timestamppb.Timestamp {104if x != nil {105return x.To106}107return nil108}109110func (x *ListAuditLogsRequest) GetActorId() string {111if x != nil {112return x.ActorId113}114return ""115}116117func (x *ListAuditLogsRequest) GetAction() string {118if x != nil {119return x.Action120}121return ""122}123124type ListAuditLogsResponse struct {125state protoimpl.MessageState126sizeCache protoimpl.SizeCache127unknownFields protoimpl.UnknownFields128129// pagination contains the pagination options for listing workspaces130Pagination *PaginationResponse `protobuf:"bytes,1,opt,name=pagination,proto3" json:"pagination,omitempty"`131// audit_logs that matched the query132AuditLogs []*AuditLog `protobuf:"bytes,2,rep,name=audit_logs,json=auditLogs,proto3" json:"audit_logs,omitempty"`133}134135func (x *ListAuditLogsResponse) Reset() {136*x = ListAuditLogsResponse{}137if protoimpl.UnsafeEnabled {138mi := &file_gitpod_v1_auditlogs_proto_msgTypes[1]139ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))140ms.StoreMessageInfo(mi)141}142}143144func (x *ListAuditLogsResponse) String() string {145return protoimpl.X.MessageStringOf(x)146}147148func (*ListAuditLogsResponse) ProtoMessage() {}149150func (x *ListAuditLogsResponse) ProtoReflect() protoreflect.Message {151mi := &file_gitpod_v1_auditlogs_proto_msgTypes[1]152if protoimpl.UnsafeEnabled && x != nil {153ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))154if ms.LoadMessageInfo() == nil {155ms.StoreMessageInfo(mi)156}157return ms158}159return mi.MessageOf(x)160}161162// Deprecated: Use ListAuditLogsResponse.ProtoReflect.Descriptor instead.163func (*ListAuditLogsResponse) Descriptor() ([]byte, []int) {164return file_gitpod_v1_auditlogs_proto_rawDescGZIP(), []int{1}165}166167func (x *ListAuditLogsResponse) GetPagination() *PaginationResponse {168if x != nil {169return x.Pagination170}171return nil172}173174func (x *ListAuditLogsResponse) GetAuditLogs() []*AuditLog {175if x != nil {176return x.AuditLogs177}178return nil179}180181// AuditLog represents an audit log entry182// typescript shape:183type AuditLog struct {184state protoimpl.MessageState185sizeCache protoimpl.SizeCache186unknownFields protoimpl.UnknownFields187188// id is the unique identifier of the audit log189Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`190// timestamp is the time when the audit log was created191Timestamp *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`192// action is the action that was performed193Action string `protobuf:"bytes,3,opt,name=action,proto3" json:"action,omitempty"`194// organization_id is the ID of the organization that contains the workspaces195OrganizationId string `protobuf:"bytes,4,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`196// actor_id is the ID of the user that performed the action197ActorId string `protobuf:"bytes,5,opt,name=actor_id,json=actorId,proto3" json:"actor_id,omitempty"`198// args contains a serialized JSON array off the arguments that were passed to the action199Args string `protobuf:"bytes,6,opt,name=args,proto3" json:"args,omitempty"`200}201202func (x *AuditLog) Reset() {203*x = AuditLog{}204if protoimpl.UnsafeEnabled {205mi := &file_gitpod_v1_auditlogs_proto_msgTypes[2]206ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))207ms.StoreMessageInfo(mi)208}209}210211func (x *AuditLog) String() string {212return protoimpl.X.MessageStringOf(x)213}214215func (*AuditLog) ProtoMessage() {}216217func (x *AuditLog) ProtoReflect() protoreflect.Message {218mi := &file_gitpod_v1_auditlogs_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 AuditLog.ProtoReflect.Descriptor instead.230func (*AuditLog) Descriptor() ([]byte, []int) {231return file_gitpod_v1_auditlogs_proto_rawDescGZIP(), []int{2}232}233234func (x *AuditLog) GetId() string {235if x != nil {236return x.Id237}238return ""239}240241func (x *AuditLog) GetTimestamp() *timestamppb.Timestamp {242if x != nil {243return x.Timestamp244}245return nil246}247248func (x *AuditLog) GetAction() string {249if x != nil {250return x.Action251}252return ""253}254255func (x *AuditLog) GetOrganizationId() string {256if x != nil {257return x.OrganizationId258}259return ""260}261262func (x *AuditLog) GetActorId() string {263if x != nil {264return x.ActorId265}266return ""267}268269func (x *AuditLog) GetArgs() string {270if x != nil {271return x.Args272}273return ""274}275276var File_gitpod_v1_auditlogs_proto protoreflect.FileDescriptor277278var file_gitpod_v1_auditlogs_proto_rawDesc = []byte{2790x0a, 0x19, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x76, 0x31, 0x2f, 0x61, 0x75, 0x64, 0x69,2800x74, 0x6c, 0x6f, 0x67, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x09, 0x67, 0x69, 0x74,2810x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x1a, 0x1a, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x76,2820x31, 0x2f, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f,2830x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f,2840x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72,2850x6f, 0x74, 0x6f, 0x22, 0x8c, 0x02, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x64, 0x69,2860x74, 0x4c, 0x6f, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3c, 0x0a, 0x0a,2870x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,2880x32, 0x1c, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x67,2890x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x0a,2900x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x72,2910x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,2920x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,2930x6e, 0x49, 0x64, 0x12, 0x2e, 0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28,2940x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,2950x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x04, 0x66,2960x72, 0x6f, 0x6d, 0x12, 0x2a, 0x0a, 0x02, 0x74, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,2970x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,2980x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x02, 0x74, 0x6f, 0x12,2990x19, 0x0a, 0x08, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,3000x09, 0x52, 0x07, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x63,3010x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69,3020x6f, 0x6e, 0x22, 0x8a, 0x01, 0x0a, 0x15, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x64, 0x69, 0x74,3030x4c, 0x6f, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3d, 0x0a, 0x0a,3040x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,3050x32, 0x1d, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x67,3060x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x52,3070x0a, 0x70, 0x61, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x32, 0x0a, 0x0a, 0x61,3080x75, 0x64, 0x69, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,3090x13, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x75, 0x64, 0x69,3100x74, 0x4c, 0x6f, 0x67, 0x52, 0x09, 0x61, 0x75, 0x64, 0x69, 0x74, 0x4c, 0x6f, 0x67, 0x73, 0x22,3110xc4, 0x01, 0x0a, 0x08, 0x41, 0x75, 0x64, 0x69, 0x74, 0x4c, 0x6f, 0x67, 0x12, 0x0e, 0x0a, 0x02,3120x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x38, 0x0a, 0x09,3130x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,3140x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,3150x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d,3160x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,3170x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27,3180x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,3190x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a,3200x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x63, 0x74, 0x6f, 0x72,3210x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x63, 0x74, 0x6f, 0x72,3220x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x67, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,3230x52, 0x04, 0x61, 0x72, 0x67, 0x73, 0x32, 0x67, 0x0a, 0x0f, 0x41, 0x75, 0x64, 0x69, 0x74, 0x4c,3240x6f, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x54, 0x0a, 0x0d, 0x4c, 0x69, 0x73,3250x74, 0x41, 0x75, 0x64, 0x69, 0x74, 0x4c, 0x6f, 0x67, 0x73, 0x12, 0x1f, 0x2e, 0x67, 0x69, 0x74,3260x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x64, 0x69, 0x74,3270x4c, 0x6f, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x2e, 0x67, 0x69,3280x74, 0x70, 0x6f, 0x64, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x75, 0x64, 0x69,3290x74, 0x4c, 0x6f, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42,3300x51, 0x0a, 0x16, 0x69, 0x6f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x70, 0x75, 0x62,3310x6c, 0x69, 0x63, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x5a, 0x37, 0x67, 0x69, 0x74, 0x68, 0x75,3320x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2d, 0x69, 0x6f, 0x2f,3330x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74,3340x73, 0x2f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x2d, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x6f, 0x2f,3350x76, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,336}337338var (339file_gitpod_v1_auditlogs_proto_rawDescOnce sync.Once340file_gitpod_v1_auditlogs_proto_rawDescData = file_gitpod_v1_auditlogs_proto_rawDesc341)342343func file_gitpod_v1_auditlogs_proto_rawDescGZIP() []byte {344file_gitpod_v1_auditlogs_proto_rawDescOnce.Do(func() {345file_gitpod_v1_auditlogs_proto_rawDescData = protoimpl.X.CompressGZIP(file_gitpod_v1_auditlogs_proto_rawDescData)346})347return file_gitpod_v1_auditlogs_proto_rawDescData348}349350var file_gitpod_v1_auditlogs_proto_msgTypes = make([]protoimpl.MessageInfo, 3)351var file_gitpod_v1_auditlogs_proto_goTypes = []interface{}{352(*ListAuditLogsRequest)(nil), // 0: gitpod.v1.ListAuditLogsRequest353(*ListAuditLogsResponse)(nil), // 1: gitpod.v1.ListAuditLogsResponse354(*AuditLog)(nil), // 2: gitpod.v1.AuditLog355(*PaginationRequest)(nil), // 3: gitpod.v1.PaginationRequest356(*timestamppb.Timestamp)(nil), // 4: google.protobuf.Timestamp357(*PaginationResponse)(nil), // 5: gitpod.v1.PaginationResponse358}359var file_gitpod_v1_auditlogs_proto_depIdxs = []int32{3603, // 0: gitpod.v1.ListAuditLogsRequest.pagination:type_name -> gitpod.v1.PaginationRequest3614, // 1: gitpod.v1.ListAuditLogsRequest.from:type_name -> google.protobuf.Timestamp3624, // 2: gitpod.v1.ListAuditLogsRequest.to:type_name -> google.protobuf.Timestamp3635, // 3: gitpod.v1.ListAuditLogsResponse.pagination:type_name -> gitpod.v1.PaginationResponse3642, // 4: gitpod.v1.ListAuditLogsResponse.audit_logs:type_name -> gitpod.v1.AuditLog3654, // 5: gitpod.v1.AuditLog.timestamp:type_name -> google.protobuf.Timestamp3660, // 6: gitpod.v1.AuditLogService.ListAuditLogs:input_type -> gitpod.v1.ListAuditLogsRequest3671, // 7: gitpod.v1.AuditLogService.ListAuditLogs:output_type -> gitpod.v1.ListAuditLogsResponse3687, // [7:8] is the sub-list for method output_type3696, // [6:7] is the sub-list for method input_type3706, // [6:6] is the sub-list for extension type_name3716, // [6:6] is the sub-list for extension extendee3720, // [0:6] is the sub-list for field type_name373}374375func init() { file_gitpod_v1_auditlogs_proto_init() }376func file_gitpod_v1_auditlogs_proto_init() {377if File_gitpod_v1_auditlogs_proto != nil {378return379}380file_gitpod_v1_pagination_proto_init()381if !protoimpl.UnsafeEnabled {382file_gitpod_v1_auditlogs_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {383switch v := v.(*ListAuditLogsRequest); i {384case 0:385return &v.state386case 1:387return &v.sizeCache388case 2:389return &v.unknownFields390default:391return nil392}393}394file_gitpod_v1_auditlogs_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {395switch v := v.(*ListAuditLogsResponse); i {396case 0:397return &v.state398case 1:399return &v.sizeCache400case 2:401return &v.unknownFields402default:403return nil404}405}406file_gitpod_v1_auditlogs_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {407switch v := v.(*AuditLog); i {408case 0:409return &v.state410case 1:411return &v.sizeCache412case 2:413return &v.unknownFields414default:415return nil416}417}418}419type x struct{}420out := protoimpl.TypeBuilder{421File: protoimpl.DescBuilder{422GoPackagePath: reflect.TypeOf(x{}).PkgPath(),423RawDescriptor: file_gitpod_v1_auditlogs_proto_rawDesc,424NumEnums: 0,425NumMessages: 3,426NumExtensions: 0,427NumServices: 1,428},429GoTypes: file_gitpod_v1_auditlogs_proto_goTypes,430DependencyIndexes: file_gitpod_v1_auditlogs_proto_depIdxs,431MessageInfos: file_gitpod_v1_auditlogs_proto_msgTypes,432}.Build()433File_gitpod_v1_auditlogs_proto = out.File434file_gitpod_v1_auditlogs_proto_rawDesc = nil435file_gitpod_v1_auditlogs_proto_goTypes = nil436file_gitpod_v1_auditlogs_proto_depIdxs = nil437}438439440