1// Code generated by protoc-gen-go. DO NOT EDIT.
2// versions:
3// 	protoc-gen-go v1.25.0
4// 	protoc        v3.15.8
5// source: vault/activity/activity_log.proto
6
7package activity
8
9import (
10	proto "github.com/golang/protobuf/proto"
11	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
12	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
13	reflect "reflect"
14	sync "sync"
15)
16
17const (
18	// Verify that this generated code is sufficiently up-to-date.
19	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
20	// Verify that runtime/protoimpl is sufficiently up-to-date.
21	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
22)
23
24// This is a compile-time assertion that a sufficiently up-to-date version
25// of the legacy proto package is being used.
26const _ = proto.ProtoPackageIsVersion4
27
28// EntityRecord is generated the first time an entity is active
29// each month.
30type EntityRecord struct {
31	state         protoimpl.MessageState
32	sizeCache     protoimpl.SizeCache
33	unknownFields protoimpl.UnknownFields
34
35	EntityID    string `sentinel:"" protobuf:"bytes,1,opt,name=entity_id,json=entityId,proto3" json:"entity_id,omitempty"`
36	NamespaceID string `sentinel:"" protobuf:"bytes,2,opt,name=namespace_id,json=namespaceID,proto3" json:"namespace_id,omitempty"`
37	// using the Timestamp type would cost us an extra
38	// 4 bytes per record to store nanoseconds.
39	Timestamp int64 `sentinel:"" protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
40}
41
42func (x *EntityRecord) Reset() {
43	*x = EntityRecord{}
44	if protoimpl.UnsafeEnabled {
45		mi := &file_vault_activity_activity_log_proto_msgTypes[0]
46		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
47		ms.StoreMessageInfo(mi)
48	}
49}
50
51func (x *EntityRecord) String() string {
52	return protoimpl.X.MessageStringOf(x)
53}
54
55func (*EntityRecord) ProtoMessage() {}
56
57func (x *EntityRecord) ProtoReflect() protoreflect.Message {
58	mi := &file_vault_activity_activity_log_proto_msgTypes[0]
59	if protoimpl.UnsafeEnabled && x != nil {
60		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
61		if ms.LoadMessageInfo() == nil {
62			ms.StoreMessageInfo(mi)
63		}
64		return ms
65	}
66	return mi.MessageOf(x)
67}
68
69// Deprecated: Use EntityRecord.ProtoReflect.Descriptor instead.
70func (*EntityRecord) Descriptor() ([]byte, []int) {
71	return file_vault_activity_activity_log_proto_rawDescGZIP(), []int{0}
72}
73
74func (x *EntityRecord) GetEntityID() string {
75	if x != nil {
76		return x.EntityID
77	}
78	return ""
79}
80
81func (x *EntityRecord) GetNamespaceID() string {
82	if x != nil {
83		return x.NamespaceID
84	}
85	return ""
86}
87
88func (x *EntityRecord) GetTimestamp() int64 {
89	if x != nil {
90		return x.Timestamp
91	}
92	return 0
93}
94
95type LogFragment struct {
96	state         protoimpl.MessageState
97	sizeCache     protoimpl.SizeCache
98	unknownFields protoimpl.UnknownFields
99
100	// hostname (or node ID?) where the fragment originated,
101	// used for debugging.
102	OriginatingNode string `sentinel:"" protobuf:"bytes,1,opt,name=originating_node,json=originatingNode,proto3" json:"originating_node,omitempty"`
103	// active entities not yet in a log segment
104	Entities []*EntityRecord `sentinel:"" protobuf:"bytes,2,rep,name=entities,proto3" json:"entities,omitempty"`
105	// token counts not yet in a log segment,
106	// indexed by namespace ID
107	NonEntityTokens map[string]uint64 `sentinel:"" protobuf:"bytes,3,rep,name=non_entity_tokens,json=nonEntityTokens,proto3" json:"non_entity_tokens,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
108}
109
110func (x *LogFragment) Reset() {
111	*x = LogFragment{}
112	if protoimpl.UnsafeEnabled {
113		mi := &file_vault_activity_activity_log_proto_msgTypes[1]
114		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
115		ms.StoreMessageInfo(mi)
116	}
117}
118
119func (x *LogFragment) String() string {
120	return protoimpl.X.MessageStringOf(x)
121}
122
123func (*LogFragment) ProtoMessage() {}
124
125func (x *LogFragment) ProtoReflect() protoreflect.Message {
126	mi := &file_vault_activity_activity_log_proto_msgTypes[1]
127	if protoimpl.UnsafeEnabled && x != nil {
128		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
129		if ms.LoadMessageInfo() == nil {
130			ms.StoreMessageInfo(mi)
131		}
132		return ms
133	}
134	return mi.MessageOf(x)
135}
136
137// Deprecated: Use LogFragment.ProtoReflect.Descriptor instead.
138func (*LogFragment) Descriptor() ([]byte, []int) {
139	return file_vault_activity_activity_log_proto_rawDescGZIP(), []int{1}
140}
141
142func (x *LogFragment) GetOriginatingNode() string {
143	if x != nil {
144		return x.OriginatingNode
145	}
146	return ""
147}
148
149func (x *LogFragment) GetEntities() []*EntityRecord {
150	if x != nil {
151		return x.Entities
152	}
153	return nil
154}
155
156func (x *LogFragment) GetNonEntityTokens() map[string]uint64 {
157	if x != nil {
158		return x.NonEntityTokens
159	}
160	return nil
161}
162
163type EntityActivityLog struct {
164	state         protoimpl.MessageState
165	sizeCache     protoimpl.SizeCache
166	unknownFields protoimpl.UnknownFields
167
168	Entities []*EntityRecord `sentinel:"" protobuf:"bytes,1,rep,name=entities,proto3" json:"entities,omitempty"`
169}
170
171func (x *EntityActivityLog) Reset() {
172	*x = EntityActivityLog{}
173	if protoimpl.UnsafeEnabled {
174		mi := &file_vault_activity_activity_log_proto_msgTypes[2]
175		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
176		ms.StoreMessageInfo(mi)
177	}
178}
179
180func (x *EntityActivityLog) String() string {
181	return protoimpl.X.MessageStringOf(x)
182}
183
184func (*EntityActivityLog) ProtoMessage() {}
185
186func (x *EntityActivityLog) ProtoReflect() protoreflect.Message {
187	mi := &file_vault_activity_activity_log_proto_msgTypes[2]
188	if protoimpl.UnsafeEnabled && x != nil {
189		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
190		if ms.LoadMessageInfo() == nil {
191			ms.StoreMessageInfo(mi)
192		}
193		return ms
194	}
195	return mi.MessageOf(x)
196}
197
198// Deprecated: Use EntityActivityLog.ProtoReflect.Descriptor instead.
199func (*EntityActivityLog) Descriptor() ([]byte, []int) {
200	return file_vault_activity_activity_log_proto_rawDescGZIP(), []int{2}
201}
202
203func (x *EntityActivityLog) GetEntities() []*EntityRecord {
204	if x != nil {
205		return x.Entities
206	}
207	return nil
208}
209
210type TokenCount struct {
211	state         protoimpl.MessageState
212	sizeCache     protoimpl.SizeCache
213	unknownFields protoimpl.UnknownFields
214
215	CountByNamespaceID map[string]uint64 `sentinel:"" protobuf:"bytes,1,rep,name=count_by_namespace_id,json=countByNamespaceId,proto3" json:"count_by_namespace_id,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
216}
217
218func (x *TokenCount) Reset() {
219	*x = TokenCount{}
220	if protoimpl.UnsafeEnabled {
221		mi := &file_vault_activity_activity_log_proto_msgTypes[3]
222		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
223		ms.StoreMessageInfo(mi)
224	}
225}
226
227func (x *TokenCount) String() string {
228	return protoimpl.X.MessageStringOf(x)
229}
230
231func (*TokenCount) ProtoMessage() {}
232
233func (x *TokenCount) ProtoReflect() protoreflect.Message {
234	mi := &file_vault_activity_activity_log_proto_msgTypes[3]
235	if protoimpl.UnsafeEnabled && x != nil {
236		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
237		if ms.LoadMessageInfo() == nil {
238			ms.StoreMessageInfo(mi)
239		}
240		return ms
241	}
242	return mi.MessageOf(x)
243}
244
245// Deprecated: Use TokenCount.ProtoReflect.Descriptor instead.
246func (*TokenCount) Descriptor() ([]byte, []int) {
247	return file_vault_activity_activity_log_proto_rawDescGZIP(), []int{3}
248}
249
250func (x *TokenCount) GetCountByNamespaceID() map[string]uint64 {
251	if x != nil {
252		return x.CountByNamespaceID
253	}
254	return nil
255}
256
257type LogFragmentResponse struct {
258	state         protoimpl.MessageState
259	sizeCache     protoimpl.SizeCache
260	unknownFields protoimpl.UnknownFields
261}
262
263func (x *LogFragmentResponse) Reset() {
264	*x = LogFragmentResponse{}
265	if protoimpl.UnsafeEnabled {
266		mi := &file_vault_activity_activity_log_proto_msgTypes[4]
267		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
268		ms.StoreMessageInfo(mi)
269	}
270}
271
272func (x *LogFragmentResponse) String() string {
273	return protoimpl.X.MessageStringOf(x)
274}
275
276func (*LogFragmentResponse) ProtoMessage() {}
277
278func (x *LogFragmentResponse) ProtoReflect() protoreflect.Message {
279	mi := &file_vault_activity_activity_log_proto_msgTypes[4]
280	if protoimpl.UnsafeEnabled && x != nil {
281		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
282		if ms.LoadMessageInfo() == nil {
283			ms.StoreMessageInfo(mi)
284		}
285		return ms
286	}
287	return mi.MessageOf(x)
288}
289
290// Deprecated: Use LogFragmentResponse.ProtoReflect.Descriptor instead.
291func (*LogFragmentResponse) Descriptor() ([]byte, []int) {
292	return file_vault_activity_activity_log_proto_rawDescGZIP(), []int{4}
293}
294
295var File_vault_activity_activity_log_proto protoreflect.FileDescriptor
296
297var file_vault_activity_activity_log_proto_rawDesc = []byte{
298	0x0a, 0x21, 0x76, 0x61, 0x75, 0x6c, 0x74, 0x2f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
299	0x2f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x6c, 0x6f, 0x67, 0x2e, 0x70, 0x72,
300	0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x22, 0x6c, 0x0a,
301	0x0c, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x1b, 0x0a,
302	0x09, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
303	0x52, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x6e, 0x61,
304	0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
305	0x52, 0x0b, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x12, 0x1c, 0x0a,
306	0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
307	0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x88, 0x02, 0x0a, 0x0b,
308	0x4c, 0x6f, 0x67, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x29, 0x0a, 0x10, 0x6f,
309	0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18,
310	0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x74, 0x69,
311	0x6e, 0x67, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x32, 0x0a, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69,
312	0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x76,
313	0x69, 0x74, 0x79, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
314	0x52, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x56, 0x0a, 0x11, 0x6e, 0x6f,
315	0x6e, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x73, 0x18,
316	0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
317	0x2e, 0x4c, 0x6f, 0x67, 0x46, 0x72, 0x61, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x4e, 0x6f, 0x6e,
318	0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72,
319	0x79, 0x52, 0x0f, 0x6e, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x54, 0x6f, 0x6b, 0x65,
320	0x6e, 0x73, 0x1a, 0x42, 0x0a, 0x14, 0x4e, 0x6f, 0x6e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x54,
321	0x6f, 0x6b, 0x65, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
322	0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
323	0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c,
324	0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x47, 0x0a, 0x11, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79,
325	0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x4c, 0x6f, 0x67, 0x12, 0x32, 0x0a, 0x08, 0x65,
326	0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e,
327	0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52,
328	0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x22,
329	0xb4, 0x01, 0x0a, 0x0a, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x5f,
330	0x0a, 0x15, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73,
331	0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e,
332	0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x43, 0x6f,
333	0x75, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x73,
334	0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x12, 0x63, 0x6f, 0x75,
335	0x6e, 0x74, 0x42, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x1a,
336	0x45, 0x0a, 0x17, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x70,
337	0x61, 0x63, 0x65, 0x49, 0x64, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
338	0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
339	0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c,
340	0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x15, 0x0a, 0x13, 0x4c, 0x6f, 0x67, 0x46, 0x72, 0x61,
341	0x67, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x2b, 0x5a,
342	0x29, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x68, 0x61, 0x73, 0x68,
343	0x69, 0x63, 0x6f, 0x72, 0x70, 0x2f, 0x76, 0x61, 0x75, 0x6c, 0x74, 0x2f, 0x76, 0x61, 0x75, 0x6c,
344	0x74, 0x2f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
345	0x6f, 0x33,
346}
347
348var (
349	file_vault_activity_activity_log_proto_rawDescOnce sync.Once
350	file_vault_activity_activity_log_proto_rawDescData = file_vault_activity_activity_log_proto_rawDesc
351)
352
353func file_vault_activity_activity_log_proto_rawDescGZIP() []byte {
354	file_vault_activity_activity_log_proto_rawDescOnce.Do(func() {
355		file_vault_activity_activity_log_proto_rawDescData = protoimpl.X.CompressGZIP(file_vault_activity_activity_log_proto_rawDescData)
356	})
357	return file_vault_activity_activity_log_proto_rawDescData
358}
359
360var file_vault_activity_activity_log_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
361var file_vault_activity_activity_log_proto_goTypes = []interface{}{
362	(*EntityRecord)(nil),        // 0: activity.EntityRecord
363	(*LogFragment)(nil),         // 1: activity.LogFragment
364	(*EntityActivityLog)(nil),   // 2: activity.EntityActivityLog
365	(*TokenCount)(nil),          // 3: activity.TokenCount
366	(*LogFragmentResponse)(nil), // 4: activity.LogFragmentResponse
367	nil,                         // 5: activity.LogFragment.NonEntityTokensEntry
368	nil,                         // 6: activity.TokenCount.CountByNamespaceIDEntry
369}
370var file_vault_activity_activity_log_proto_depIDxs = []int32{
371	0, // 0: activity.LogFragment.entities:type_name -> activity.EntityRecord
372	5, // 1: activity.LogFragment.non_entity_tokens:type_name -> activity.LogFragment.NonEntityTokensEntry
373	0, // 2: activity.EntityActivityLog.entities:type_name -> activity.EntityRecord
374	6, // 3: activity.TokenCount.count_by_namespace_id:type_name -> activity.TokenCount.CountByNamespaceIDEntry
375	4, // [4:4] is the sub-list for method output_type
376	4, // [4:4] is the sub-list for method input_type
377	4, // [4:4] is the sub-list for extension type_name
378	4, // [4:4] is the sub-list for extension extendee
379	0, // [0:4] is the sub-list for field type_name
380}
381
382func init() { file_vault_activity_activity_log_proto_init() }
383func file_vault_activity_activity_log_proto_init() {
384	if File_vault_activity_activity_log_proto != nil {
385		return
386	}
387	if !protoimpl.UnsafeEnabled {
388		file_vault_activity_activity_log_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
389			switch v := v.(*EntityRecord); i {
390			case 0:
391				return &v.state
392			case 1:
393				return &v.sizeCache
394			case 2:
395				return &v.unknownFields
396			default:
397				return nil
398			}
399		}
400		file_vault_activity_activity_log_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
401			switch v := v.(*LogFragment); i {
402			case 0:
403				return &v.state
404			case 1:
405				return &v.sizeCache
406			case 2:
407				return &v.unknownFields
408			default:
409				return nil
410			}
411		}
412		file_vault_activity_activity_log_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
413			switch v := v.(*EntityActivityLog); i {
414			case 0:
415				return &v.state
416			case 1:
417				return &v.sizeCache
418			case 2:
419				return &v.unknownFields
420			default:
421				return nil
422			}
423		}
424		file_vault_activity_activity_log_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
425			switch v := v.(*TokenCount); i {
426			case 0:
427				return &v.state
428			case 1:
429				return &v.sizeCache
430			case 2:
431				return &v.unknownFields
432			default:
433				return nil
434			}
435		}
436		file_vault_activity_activity_log_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
437			switch v := v.(*LogFragmentResponse); i {
438			case 0:
439				return &v.state
440			case 1:
441				return &v.sizeCache
442			case 2:
443				return &v.unknownFields
444			default:
445				return nil
446			}
447		}
448	}
449	type x struct{}
450	out := protoimpl.TypeBuilder{
451		File: protoimpl.DescBuilder{
452			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
453			RawDescriptor: file_vault_activity_activity_log_proto_rawDesc,
454			NumEnums:      0,
455			NumMessages:   7,
456			NumExtensions: 0,
457			NumServices:   0,
458		},
459		GoTypes:           file_vault_activity_activity_log_proto_goTypes,
460		DependencyIndexes: file_vault_activity_activity_log_proto_depIDxs,
461		MessageInfos:      file_vault_activity_activity_log_proto_msgTypes,
462	}.Build()
463	File_vault_activity_activity_log_proto = out.File
464	file_vault_activity_activity_log_proto_rawDesc = nil
465	file_vault_activity_activity_log_proto_goTypes = nil
466	file_vault_activity_activity_log_proto_depIDxs = nil
467}
468