1// Copyright 2021 Google LLC
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// Code generated by protoc-gen-go. DO NOT EDIT.
16// versions:
17// 	protoc-gen-go v1.26.0
18// 	protoc        v3.12.2
19// source: google/apps/drive/activity/v2/actor.proto
20
21package activity
22
23import (
24	reflect "reflect"
25	sync "sync"
26
27	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
28	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
29)
30
31const (
32	// Verify that this generated code is sufficiently up-to-date.
33	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
34	// Verify that runtime/protoimpl is sufficiently up-to-date.
35	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
36)
37
38// The types of system events that may trigger activity.
39type SystemEvent_Type int32
40
41const (
42	// The event type is unspecified.
43	SystemEvent_TYPE_UNSPECIFIED SystemEvent_Type = 0
44	// The event is a consequence of a user account being deleted.
45	SystemEvent_USER_DELETION SystemEvent_Type = 1
46	// The event is due to the system automatically purging trash.
47	SystemEvent_TRASH_AUTO_PURGE SystemEvent_Type = 2
48)
49
50// Enum value maps for SystemEvent_Type.
51var (
52	SystemEvent_Type_name = map[int32]string{
53		0: "TYPE_UNSPECIFIED",
54		1: "USER_DELETION",
55		2: "TRASH_AUTO_PURGE",
56	}
57	SystemEvent_Type_value = map[string]int32{
58		"TYPE_UNSPECIFIED": 0,
59		"USER_DELETION":    1,
60		"TRASH_AUTO_PURGE": 2,
61	}
62)
63
64func (x SystemEvent_Type) Enum() *SystemEvent_Type {
65	p := new(SystemEvent_Type)
66	*p = x
67	return p
68}
69
70func (x SystemEvent_Type) String() string {
71	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
72}
73
74func (SystemEvent_Type) Descriptor() protoreflect.EnumDescriptor {
75	return file_google_apps_drive_activity_v2_actor_proto_enumTypes[0].Descriptor()
76}
77
78func (SystemEvent_Type) Type() protoreflect.EnumType {
79	return &file_google_apps_drive_activity_v2_actor_proto_enumTypes[0]
80}
81
82func (x SystemEvent_Type) Number() protoreflect.EnumNumber {
83	return protoreflect.EnumNumber(x)
84}
85
86// Deprecated: Use SystemEvent_Type.Descriptor instead.
87func (SystemEvent_Type) EnumDescriptor() ([]byte, []int) {
88	return file_google_apps_drive_activity_v2_actor_proto_rawDescGZIP(), []int{4, 0}
89}
90
91// The actor of a Drive activity.
92type Actor struct {
93	state         protoimpl.MessageState
94	sizeCache     protoimpl.SizeCache
95	unknownFields protoimpl.UnknownFields
96
97	// The type of actor.
98	//
99	// Types that are assignable to Type:
100	//	*Actor_User
101	//	*Actor_Anonymous
102	//	*Actor_Impersonation
103	//	*Actor_System
104	//	*Actor_Administrator
105	Type isActor_Type `protobuf_oneof:"type"`
106}
107
108func (x *Actor) Reset() {
109	*x = Actor{}
110	if protoimpl.UnsafeEnabled {
111		mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[0]
112		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
113		ms.StoreMessageInfo(mi)
114	}
115}
116
117func (x *Actor) String() string {
118	return protoimpl.X.MessageStringOf(x)
119}
120
121func (*Actor) ProtoMessage() {}
122
123func (x *Actor) ProtoReflect() protoreflect.Message {
124	mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[0]
125	if protoimpl.UnsafeEnabled && x != nil {
126		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
127		if ms.LoadMessageInfo() == nil {
128			ms.StoreMessageInfo(mi)
129		}
130		return ms
131	}
132	return mi.MessageOf(x)
133}
134
135// Deprecated: Use Actor.ProtoReflect.Descriptor instead.
136func (*Actor) Descriptor() ([]byte, []int) {
137	return file_google_apps_drive_activity_v2_actor_proto_rawDescGZIP(), []int{0}
138}
139
140func (m *Actor) GetType() isActor_Type {
141	if m != nil {
142		return m.Type
143	}
144	return nil
145}
146
147func (x *Actor) GetUser() *User {
148	if x, ok := x.GetType().(*Actor_User); ok {
149		return x.User
150	}
151	return nil
152}
153
154func (x *Actor) GetAnonymous() *AnonymousUser {
155	if x, ok := x.GetType().(*Actor_Anonymous); ok {
156		return x.Anonymous
157	}
158	return nil
159}
160
161func (x *Actor) GetImpersonation() *Impersonation {
162	if x, ok := x.GetType().(*Actor_Impersonation); ok {
163		return x.Impersonation
164	}
165	return nil
166}
167
168func (x *Actor) GetSystem() *SystemEvent {
169	if x, ok := x.GetType().(*Actor_System); ok {
170		return x.System
171	}
172	return nil
173}
174
175func (x *Actor) GetAdministrator() *Administrator {
176	if x, ok := x.GetType().(*Actor_Administrator); ok {
177		return x.Administrator
178	}
179	return nil
180}
181
182type isActor_Type interface {
183	isActor_Type()
184}
185
186type Actor_User struct {
187	// An end user.
188	User *User `protobuf:"bytes,1,opt,name=user,proto3,oneof"`
189}
190
191type Actor_Anonymous struct {
192	// An anonymous user.
193	Anonymous *AnonymousUser `protobuf:"bytes,2,opt,name=anonymous,proto3,oneof"`
194}
195
196type Actor_Impersonation struct {
197	// An account acting on behalf of another.
198	Impersonation *Impersonation `protobuf:"bytes,3,opt,name=impersonation,proto3,oneof"`
199}
200
201type Actor_System struct {
202	// A non-user actor (i.e. system triggered).
203	System *SystemEvent `protobuf:"bytes,4,opt,name=system,proto3,oneof"`
204}
205
206type Actor_Administrator struct {
207	// An administrator.
208	Administrator *Administrator `protobuf:"bytes,5,opt,name=administrator,proto3,oneof"`
209}
210
211func (*Actor_User) isActor_Type() {}
212
213func (*Actor_Anonymous) isActor_Type() {}
214
215func (*Actor_Impersonation) isActor_Type() {}
216
217func (*Actor_System) isActor_Type() {}
218
219func (*Actor_Administrator) isActor_Type() {}
220
221// Information about an end user.
222type User struct {
223	state         protoimpl.MessageState
224	sizeCache     protoimpl.SizeCache
225	unknownFields protoimpl.UnknownFields
226
227	// The type of user, such as known, unknown, and deleted.
228	//
229	// Types that are assignable to Type:
230	//	*User_KnownUser_
231	//	*User_DeletedUser_
232	//	*User_UnknownUser_
233	Type isUser_Type `protobuf_oneof:"type"`
234}
235
236func (x *User) Reset() {
237	*x = User{}
238	if protoimpl.UnsafeEnabled {
239		mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[1]
240		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
241		ms.StoreMessageInfo(mi)
242	}
243}
244
245func (x *User) String() string {
246	return protoimpl.X.MessageStringOf(x)
247}
248
249func (*User) ProtoMessage() {}
250
251func (x *User) ProtoReflect() protoreflect.Message {
252	mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[1]
253	if protoimpl.UnsafeEnabled && x != nil {
254		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
255		if ms.LoadMessageInfo() == nil {
256			ms.StoreMessageInfo(mi)
257		}
258		return ms
259	}
260	return mi.MessageOf(x)
261}
262
263// Deprecated: Use User.ProtoReflect.Descriptor instead.
264func (*User) Descriptor() ([]byte, []int) {
265	return file_google_apps_drive_activity_v2_actor_proto_rawDescGZIP(), []int{1}
266}
267
268func (m *User) GetType() isUser_Type {
269	if m != nil {
270		return m.Type
271	}
272	return nil
273}
274
275func (x *User) GetKnownUser() *User_KnownUser {
276	if x, ok := x.GetType().(*User_KnownUser_); ok {
277		return x.KnownUser
278	}
279	return nil
280}
281
282func (x *User) GetDeletedUser() *User_DeletedUser {
283	if x, ok := x.GetType().(*User_DeletedUser_); ok {
284		return x.DeletedUser
285	}
286	return nil
287}
288
289func (x *User) GetUnknownUser() *User_UnknownUser {
290	if x, ok := x.GetType().(*User_UnknownUser_); ok {
291		return x.UnknownUser
292	}
293	return nil
294}
295
296type isUser_Type interface {
297	isUser_Type()
298}
299
300type User_KnownUser_ struct {
301	// A known user.
302	KnownUser *User_KnownUser `protobuf:"bytes,2,opt,name=known_user,json=knownUser,proto3,oneof"`
303}
304
305type User_DeletedUser_ struct {
306	// A user whose account has since been deleted.
307	DeletedUser *User_DeletedUser `protobuf:"bytes,3,opt,name=deleted_user,json=deletedUser,proto3,oneof"`
308}
309
310type User_UnknownUser_ struct {
311	// A user about whom nothing is currently known.
312	UnknownUser *User_UnknownUser `protobuf:"bytes,4,opt,name=unknown_user,json=unknownUser,proto3,oneof"`
313}
314
315func (*User_KnownUser_) isUser_Type() {}
316
317func (*User_DeletedUser_) isUser_Type() {}
318
319func (*User_UnknownUser_) isUser_Type() {}
320
321// Empty message representing an anonymous user or indicating the authenticated
322// user should be anonymized.
323type AnonymousUser struct {
324	state         protoimpl.MessageState
325	sizeCache     protoimpl.SizeCache
326	unknownFields protoimpl.UnknownFields
327}
328
329func (x *AnonymousUser) Reset() {
330	*x = AnonymousUser{}
331	if protoimpl.UnsafeEnabled {
332		mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[2]
333		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
334		ms.StoreMessageInfo(mi)
335	}
336}
337
338func (x *AnonymousUser) String() string {
339	return protoimpl.X.MessageStringOf(x)
340}
341
342func (*AnonymousUser) ProtoMessage() {}
343
344func (x *AnonymousUser) ProtoReflect() protoreflect.Message {
345	mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[2]
346	if protoimpl.UnsafeEnabled && x != nil {
347		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
348		if ms.LoadMessageInfo() == nil {
349			ms.StoreMessageInfo(mi)
350		}
351		return ms
352	}
353	return mi.MessageOf(x)
354}
355
356// Deprecated: Use AnonymousUser.ProtoReflect.Descriptor instead.
357func (*AnonymousUser) Descriptor() ([]byte, []int) {
358	return file_google_apps_drive_activity_v2_actor_proto_rawDescGZIP(), []int{2}
359}
360
361// Information about an impersonation, where an admin acts on behalf of an end
362// user. Information about the acting admin is not currently available.
363type Impersonation struct {
364	state         protoimpl.MessageState
365	sizeCache     protoimpl.SizeCache
366	unknownFields protoimpl.UnknownFields
367
368	// The impersonated user.
369	ImpersonatedUser *User `protobuf:"bytes,1,opt,name=impersonated_user,json=impersonatedUser,proto3" json:"impersonated_user,omitempty"`
370}
371
372func (x *Impersonation) Reset() {
373	*x = Impersonation{}
374	if protoimpl.UnsafeEnabled {
375		mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[3]
376		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
377		ms.StoreMessageInfo(mi)
378	}
379}
380
381func (x *Impersonation) String() string {
382	return protoimpl.X.MessageStringOf(x)
383}
384
385func (*Impersonation) ProtoMessage() {}
386
387func (x *Impersonation) ProtoReflect() protoreflect.Message {
388	mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[3]
389	if protoimpl.UnsafeEnabled && x != nil {
390		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
391		if ms.LoadMessageInfo() == nil {
392			ms.StoreMessageInfo(mi)
393		}
394		return ms
395	}
396	return mi.MessageOf(x)
397}
398
399// Deprecated: Use Impersonation.ProtoReflect.Descriptor instead.
400func (*Impersonation) Descriptor() ([]byte, []int) {
401	return file_google_apps_drive_activity_v2_actor_proto_rawDescGZIP(), []int{3}
402}
403
404func (x *Impersonation) GetImpersonatedUser() *User {
405	if x != nil {
406		return x.ImpersonatedUser
407	}
408	return nil
409}
410
411// Event triggered by system operations instead of end users.
412type SystemEvent struct {
413	state         protoimpl.MessageState
414	sizeCache     protoimpl.SizeCache
415	unknownFields protoimpl.UnknownFields
416
417	// The type of the system event that may triggered activity.
418	Type SystemEvent_Type `protobuf:"varint,1,opt,name=type,proto3,enum=google.apps.drive.activity.v2.SystemEvent_Type" json:"type,omitempty"`
419}
420
421func (x *SystemEvent) Reset() {
422	*x = SystemEvent{}
423	if protoimpl.UnsafeEnabled {
424		mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[4]
425		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
426		ms.StoreMessageInfo(mi)
427	}
428}
429
430func (x *SystemEvent) String() string {
431	return protoimpl.X.MessageStringOf(x)
432}
433
434func (*SystemEvent) ProtoMessage() {}
435
436func (x *SystemEvent) ProtoReflect() protoreflect.Message {
437	mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[4]
438	if protoimpl.UnsafeEnabled && x != nil {
439		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
440		if ms.LoadMessageInfo() == nil {
441			ms.StoreMessageInfo(mi)
442		}
443		return ms
444	}
445	return mi.MessageOf(x)
446}
447
448// Deprecated: Use SystemEvent.ProtoReflect.Descriptor instead.
449func (*SystemEvent) Descriptor() ([]byte, []int) {
450	return file_google_apps_drive_activity_v2_actor_proto_rawDescGZIP(), []int{4}
451}
452
453func (x *SystemEvent) GetType() SystemEvent_Type {
454	if x != nil {
455		return x.Type
456	}
457	return SystemEvent_TYPE_UNSPECIFIED
458}
459
460// Empty message representing an administrator.
461type Administrator struct {
462	state         protoimpl.MessageState
463	sizeCache     protoimpl.SizeCache
464	unknownFields protoimpl.UnknownFields
465}
466
467func (x *Administrator) Reset() {
468	*x = Administrator{}
469	if protoimpl.UnsafeEnabled {
470		mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[5]
471		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
472		ms.StoreMessageInfo(mi)
473	}
474}
475
476func (x *Administrator) String() string {
477	return protoimpl.X.MessageStringOf(x)
478}
479
480func (*Administrator) ProtoMessage() {}
481
482func (x *Administrator) ProtoReflect() protoreflect.Message {
483	mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[5]
484	if protoimpl.UnsafeEnabled && x != nil {
485		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
486		if ms.LoadMessageInfo() == nil {
487			ms.StoreMessageInfo(mi)
488		}
489		return ms
490	}
491	return mi.MessageOf(x)
492}
493
494// Deprecated: Use Administrator.ProtoReflect.Descriptor instead.
495func (*Administrator) Descriptor() ([]byte, []int) {
496	return file_google_apps_drive_activity_v2_actor_proto_rawDescGZIP(), []int{5}
497}
498
499// A known user.
500type User_KnownUser struct {
501	state         protoimpl.MessageState
502	sizeCache     protoimpl.SizeCache
503	unknownFields protoimpl.UnknownFields
504
505	// The identifier for this user that can be used with the People API to get
506	// more information. The format is `people/ACCOUNT_ID`. See
507	// https://developers.google.com/people/.
508	PersonName string `protobuf:"bytes,1,opt,name=person_name,json=personName,proto3" json:"person_name,omitempty"`
509	// True if this is the user making the request.
510	IsCurrentUser bool `protobuf:"varint,2,opt,name=is_current_user,json=isCurrentUser,proto3" json:"is_current_user,omitempty"`
511}
512
513func (x *User_KnownUser) Reset() {
514	*x = User_KnownUser{}
515	if protoimpl.UnsafeEnabled {
516		mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[6]
517		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
518		ms.StoreMessageInfo(mi)
519	}
520}
521
522func (x *User_KnownUser) String() string {
523	return protoimpl.X.MessageStringOf(x)
524}
525
526func (*User_KnownUser) ProtoMessage() {}
527
528func (x *User_KnownUser) ProtoReflect() protoreflect.Message {
529	mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[6]
530	if protoimpl.UnsafeEnabled && x != nil {
531		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
532		if ms.LoadMessageInfo() == nil {
533			ms.StoreMessageInfo(mi)
534		}
535		return ms
536	}
537	return mi.MessageOf(x)
538}
539
540// Deprecated: Use User_KnownUser.ProtoReflect.Descriptor instead.
541func (*User_KnownUser) Descriptor() ([]byte, []int) {
542	return file_google_apps_drive_activity_v2_actor_proto_rawDescGZIP(), []int{1, 0}
543}
544
545func (x *User_KnownUser) GetPersonName() string {
546	if x != nil {
547		return x.PersonName
548	}
549	return ""
550}
551
552func (x *User_KnownUser) GetIsCurrentUser() bool {
553	if x != nil {
554		return x.IsCurrentUser
555	}
556	return false
557}
558
559// A user whose account has since been deleted.
560type User_DeletedUser struct {
561	state         protoimpl.MessageState
562	sizeCache     protoimpl.SizeCache
563	unknownFields protoimpl.UnknownFields
564}
565
566func (x *User_DeletedUser) Reset() {
567	*x = User_DeletedUser{}
568	if protoimpl.UnsafeEnabled {
569		mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[7]
570		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
571		ms.StoreMessageInfo(mi)
572	}
573}
574
575func (x *User_DeletedUser) String() string {
576	return protoimpl.X.MessageStringOf(x)
577}
578
579func (*User_DeletedUser) ProtoMessage() {}
580
581func (x *User_DeletedUser) ProtoReflect() protoreflect.Message {
582	mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[7]
583	if protoimpl.UnsafeEnabled && x != nil {
584		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
585		if ms.LoadMessageInfo() == nil {
586			ms.StoreMessageInfo(mi)
587		}
588		return ms
589	}
590	return mi.MessageOf(x)
591}
592
593// Deprecated: Use User_DeletedUser.ProtoReflect.Descriptor instead.
594func (*User_DeletedUser) Descriptor() ([]byte, []int) {
595	return file_google_apps_drive_activity_v2_actor_proto_rawDescGZIP(), []int{1, 1}
596}
597
598// A user about whom nothing is currently known.
599type User_UnknownUser struct {
600	state         protoimpl.MessageState
601	sizeCache     protoimpl.SizeCache
602	unknownFields protoimpl.UnknownFields
603}
604
605func (x *User_UnknownUser) Reset() {
606	*x = User_UnknownUser{}
607	if protoimpl.UnsafeEnabled {
608		mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[8]
609		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
610		ms.StoreMessageInfo(mi)
611	}
612}
613
614func (x *User_UnknownUser) String() string {
615	return protoimpl.X.MessageStringOf(x)
616}
617
618func (*User_UnknownUser) ProtoMessage() {}
619
620func (x *User_UnknownUser) ProtoReflect() protoreflect.Message {
621	mi := &file_google_apps_drive_activity_v2_actor_proto_msgTypes[8]
622	if protoimpl.UnsafeEnabled && x != nil {
623		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
624		if ms.LoadMessageInfo() == nil {
625			ms.StoreMessageInfo(mi)
626		}
627		return ms
628	}
629	return mi.MessageOf(x)
630}
631
632// Deprecated: Use User_UnknownUser.ProtoReflect.Descriptor instead.
633func (*User_UnknownUser) Descriptor() ([]byte, []int) {
634	return file_google_apps_drive_activity_v2_actor_proto_rawDescGZIP(), []int{1, 2}
635}
636
637var File_google_apps_drive_activity_v2_actor_proto protoreflect.FileDescriptor
638
639var file_google_apps_drive_activity_v2_actor_proto_rawDesc = []byte{
640	0x0a, 0x29, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x70, 0x73, 0x2f, 0x64, 0x72,
641	0x69, 0x76, 0x65, 0x2f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2f, 0x76, 0x32, 0x2f,
642	0x61, 0x63, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1d, 0x67, 0x6f, 0x6f,
643	0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x61,
644	0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x76, 0x32, 0x1a, 0x2a, 0x67, 0x6f, 0x6f, 0x67,
645	0x6c, 0x65, 0x2f, 0x61, 0x70, 0x70, 0x73, 0x2f, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2f, 0x61, 0x63,
646	0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2f, 0x76, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
647	0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x8a, 0x03, 0x0a, 0x05, 0x41, 0x63, 0x74, 0x6f, 0x72,
648	0x12, 0x39, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23,
649	0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69,
650	0x76, 0x65, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x76, 0x32, 0x2e, 0x55,
651	0x73, 0x65, 0x72, 0x48, 0x00, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x4c, 0x0a, 0x09, 0x61,
652	0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x6f, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c,
653	0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69,
654	0x76, 0x65, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x76, 0x32, 0x2e, 0x41,
655	0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x6f, 0x75, 0x73, 0x55, 0x73, 0x65, 0x72, 0x48, 0x00, 0x52, 0x09,
656	0x61, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x6f, 0x75, 0x73, 0x12, 0x54, 0x0a, 0x0d, 0x69, 0x6d, 0x70,
657	0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
658	0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64,
659	0x72, 0x69, 0x76, 0x65, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x76, 0x32,
660	0x2e, 0x49, 0x6d, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00,
661	0x52, 0x0d, 0x69, 0x6d, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12,
662	0x44, 0x0a, 0x06, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
663	0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72,
664	0x69, 0x76, 0x65, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x76, 0x32, 0x2e,
665	0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x06, 0x73,
666	0x79, 0x73, 0x74, 0x65, 0x6d, 0x12, 0x54, 0x0a, 0x0d, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x69, 0x73,
667	0x74, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67,
668	0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65,
669	0x2e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x76, 0x32, 0x2e, 0x41, 0x64, 0x6d,
670	0x69, 0x6e, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x61, 0x64,
671	0x6d, 0x69, 0x6e, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x42, 0x06, 0x0a, 0x04, 0x74,
672	0x79, 0x70, 0x65, 0x22, 0xfe, 0x02, 0x0a, 0x04, 0x55, 0x73, 0x65, 0x72, 0x12, 0x4e, 0x0a, 0x0a,
673	0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
674	0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64,
675	0x72, 0x69, 0x76, 0x65, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x76, 0x32,
676	0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x48,
677	0x00, 0x52, 0x09, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x12, 0x54, 0x0a, 0x0c,
678	0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01,
679	0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73,
680	0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e,
681	0x76, 0x32, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x55,
682	0x73, 0x65, 0x72, 0x48, 0x00, 0x52, 0x0b, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x55, 0x73,
683	0x65, 0x72, 0x12, 0x54, 0x0a, 0x0c, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x5f, 0x75, 0x73,
684	0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
685	0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x61, 0x63, 0x74,
686	0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x76, 0x32, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x2e, 0x55, 0x6e,
687	0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x48, 0x00, 0x52, 0x0b, 0x75, 0x6e, 0x6b,
688	0x6e, 0x6f, 0x77, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x1a, 0x54, 0x0a, 0x09, 0x4b, 0x6e, 0x6f, 0x77,
689	0x6e, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x5f,
690	0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73,
691	0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x69, 0x73, 0x5f, 0x63, 0x75, 0x72,
692	0x72, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
693	0x0d, 0x69, 0x73, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x1a, 0x0d,
694	0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x1a, 0x0d, 0x0a,
695	0x0b, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x55, 0x73, 0x65, 0x72, 0x42, 0x06, 0x0a, 0x04,
696	0x74, 0x79, 0x70, 0x65, 0x22, 0x0f, 0x0a, 0x0d, 0x41, 0x6e, 0x6f, 0x6e, 0x79, 0x6d, 0x6f, 0x75,
697	0x73, 0x55, 0x73, 0x65, 0x72, 0x22, 0x61, 0x0a, 0x0d, 0x49, 0x6d, 0x70, 0x65, 0x72, 0x73, 0x6f,
698	0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x50, 0x0a, 0x11, 0x69, 0x6d, 0x70, 0x65, 0x72, 0x73,
699	0x6f, 0x6e, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
700	0x0b, 0x32, 0x23, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e,
701	0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x76,
702	0x32, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x10, 0x69, 0x6d, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e,
703	0x61, 0x74, 0x65, 0x64, 0x55, 0x73, 0x65, 0x72, 0x22, 0x99, 0x01, 0x0a, 0x0b, 0x53, 0x79, 0x73,
704	0x74, 0x65, 0x6d, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x43, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65,
705	0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
706	0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x61, 0x63, 0x74, 0x69, 0x76,
707	0x69, 0x74, 0x79, 0x2e, 0x76, 0x32, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x45, 0x76, 0x65,
708	0x6e, 0x74, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x45, 0x0a,
709	0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x10, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e,
710	0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x11, 0x0a, 0x0d, 0x55,
711	0x53, 0x45, 0x52, 0x5f, 0x44, 0x45, 0x4c, 0x45, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x01, 0x12, 0x14,
712	0x0a, 0x10, 0x54, 0x52, 0x41, 0x53, 0x48, 0x5f, 0x41, 0x55, 0x54, 0x4f, 0x5f, 0x50, 0x55, 0x52,
713	0x47, 0x45, 0x10, 0x02, 0x22, 0x0f, 0x0a, 0x0d, 0x41, 0x64, 0x6d, 0x69, 0x6e, 0x69, 0x73, 0x74,
714	0x72, 0x61, 0x74, 0x6f, 0x72, 0x42, 0xbf, 0x01, 0x0a, 0x21, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
715	0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x73, 0x2e, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2e,
716	0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x76, 0x32, 0x42, 0x0a, 0x41, 0x63, 0x74,
717	0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
718	0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
719	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
720	0x2f, 0x61, 0x70, 0x70, 0x73, 0x2f, 0x64, 0x72, 0x69, 0x76, 0x65, 0x2f, 0x61, 0x63, 0x74, 0x69,
721	0x76, 0x69, 0x74, 0x79, 0x2f, 0x76, 0x32, 0x3b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
722	0xa2, 0x02, 0x04, 0x47, 0x41, 0x44, 0x41, 0xaa, 0x02, 0x1d, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
723	0x2e, 0x41, 0x70, 0x70, 0x73, 0x2e, 0x44, 0x72, 0x69, 0x76, 0x65, 0x2e, 0x41, 0x63, 0x74, 0x69,
724	0x76, 0x69, 0x74, 0x79, 0x2e, 0x56, 0x32, 0xca, 0x02, 0x1d, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
725	0x5c, 0x41, 0x70, 0x70, 0x73, 0x5c, 0x44, 0x72, 0x69, 0x76, 0x65, 0x5c, 0x41, 0x63, 0x74, 0x69,
726	0x76, 0x69, 0x74, 0x79, 0x5c, 0x56, 0x32, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
727}
728
729var (
730	file_google_apps_drive_activity_v2_actor_proto_rawDescOnce sync.Once
731	file_google_apps_drive_activity_v2_actor_proto_rawDescData = file_google_apps_drive_activity_v2_actor_proto_rawDesc
732)
733
734func file_google_apps_drive_activity_v2_actor_proto_rawDescGZIP() []byte {
735	file_google_apps_drive_activity_v2_actor_proto_rawDescOnce.Do(func() {
736		file_google_apps_drive_activity_v2_actor_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_apps_drive_activity_v2_actor_proto_rawDescData)
737	})
738	return file_google_apps_drive_activity_v2_actor_proto_rawDescData
739}
740
741var file_google_apps_drive_activity_v2_actor_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
742var file_google_apps_drive_activity_v2_actor_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
743var file_google_apps_drive_activity_v2_actor_proto_goTypes = []interface{}{
744	(SystemEvent_Type)(0),    // 0: google.apps.drive.activity.v2.SystemEvent.Type
745	(*Actor)(nil),            // 1: google.apps.drive.activity.v2.Actor
746	(*User)(nil),             // 2: google.apps.drive.activity.v2.User
747	(*AnonymousUser)(nil),    // 3: google.apps.drive.activity.v2.AnonymousUser
748	(*Impersonation)(nil),    // 4: google.apps.drive.activity.v2.Impersonation
749	(*SystemEvent)(nil),      // 5: google.apps.drive.activity.v2.SystemEvent
750	(*Administrator)(nil),    // 6: google.apps.drive.activity.v2.Administrator
751	(*User_KnownUser)(nil),   // 7: google.apps.drive.activity.v2.User.KnownUser
752	(*User_DeletedUser)(nil), // 8: google.apps.drive.activity.v2.User.DeletedUser
753	(*User_UnknownUser)(nil), // 9: google.apps.drive.activity.v2.User.UnknownUser
754}
755var file_google_apps_drive_activity_v2_actor_proto_depIdxs = []int32{
756	2,  // 0: google.apps.drive.activity.v2.Actor.user:type_name -> google.apps.drive.activity.v2.User
757	3,  // 1: google.apps.drive.activity.v2.Actor.anonymous:type_name -> google.apps.drive.activity.v2.AnonymousUser
758	4,  // 2: google.apps.drive.activity.v2.Actor.impersonation:type_name -> google.apps.drive.activity.v2.Impersonation
759	5,  // 3: google.apps.drive.activity.v2.Actor.system:type_name -> google.apps.drive.activity.v2.SystemEvent
760	6,  // 4: google.apps.drive.activity.v2.Actor.administrator:type_name -> google.apps.drive.activity.v2.Administrator
761	7,  // 5: google.apps.drive.activity.v2.User.known_user:type_name -> google.apps.drive.activity.v2.User.KnownUser
762	8,  // 6: google.apps.drive.activity.v2.User.deleted_user:type_name -> google.apps.drive.activity.v2.User.DeletedUser
763	9,  // 7: google.apps.drive.activity.v2.User.unknown_user:type_name -> google.apps.drive.activity.v2.User.UnknownUser
764	2,  // 8: google.apps.drive.activity.v2.Impersonation.impersonated_user:type_name -> google.apps.drive.activity.v2.User
765	0,  // 9: google.apps.drive.activity.v2.SystemEvent.type:type_name -> google.apps.drive.activity.v2.SystemEvent.Type
766	10, // [10:10] is the sub-list for method output_type
767	10, // [10:10] is the sub-list for method input_type
768	10, // [10:10] is the sub-list for extension type_name
769	10, // [10:10] is the sub-list for extension extendee
770	0,  // [0:10] is the sub-list for field type_name
771}
772
773func init() { file_google_apps_drive_activity_v2_actor_proto_init() }
774func file_google_apps_drive_activity_v2_actor_proto_init() {
775	if File_google_apps_drive_activity_v2_actor_proto != nil {
776		return
777	}
778	file_google_apps_drive_activity_v2_common_proto_init()
779	if !protoimpl.UnsafeEnabled {
780		file_google_apps_drive_activity_v2_actor_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
781			switch v := v.(*Actor); i {
782			case 0:
783				return &v.state
784			case 1:
785				return &v.sizeCache
786			case 2:
787				return &v.unknownFields
788			default:
789				return nil
790			}
791		}
792		file_google_apps_drive_activity_v2_actor_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
793			switch v := v.(*User); i {
794			case 0:
795				return &v.state
796			case 1:
797				return &v.sizeCache
798			case 2:
799				return &v.unknownFields
800			default:
801				return nil
802			}
803		}
804		file_google_apps_drive_activity_v2_actor_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
805			switch v := v.(*AnonymousUser); i {
806			case 0:
807				return &v.state
808			case 1:
809				return &v.sizeCache
810			case 2:
811				return &v.unknownFields
812			default:
813				return nil
814			}
815		}
816		file_google_apps_drive_activity_v2_actor_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
817			switch v := v.(*Impersonation); i {
818			case 0:
819				return &v.state
820			case 1:
821				return &v.sizeCache
822			case 2:
823				return &v.unknownFields
824			default:
825				return nil
826			}
827		}
828		file_google_apps_drive_activity_v2_actor_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
829			switch v := v.(*SystemEvent); i {
830			case 0:
831				return &v.state
832			case 1:
833				return &v.sizeCache
834			case 2:
835				return &v.unknownFields
836			default:
837				return nil
838			}
839		}
840		file_google_apps_drive_activity_v2_actor_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
841			switch v := v.(*Administrator); i {
842			case 0:
843				return &v.state
844			case 1:
845				return &v.sizeCache
846			case 2:
847				return &v.unknownFields
848			default:
849				return nil
850			}
851		}
852		file_google_apps_drive_activity_v2_actor_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
853			switch v := v.(*User_KnownUser); i {
854			case 0:
855				return &v.state
856			case 1:
857				return &v.sizeCache
858			case 2:
859				return &v.unknownFields
860			default:
861				return nil
862			}
863		}
864		file_google_apps_drive_activity_v2_actor_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
865			switch v := v.(*User_DeletedUser); i {
866			case 0:
867				return &v.state
868			case 1:
869				return &v.sizeCache
870			case 2:
871				return &v.unknownFields
872			default:
873				return nil
874			}
875		}
876		file_google_apps_drive_activity_v2_actor_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
877			switch v := v.(*User_UnknownUser); i {
878			case 0:
879				return &v.state
880			case 1:
881				return &v.sizeCache
882			case 2:
883				return &v.unknownFields
884			default:
885				return nil
886			}
887		}
888	}
889	file_google_apps_drive_activity_v2_actor_proto_msgTypes[0].OneofWrappers = []interface{}{
890		(*Actor_User)(nil),
891		(*Actor_Anonymous)(nil),
892		(*Actor_Impersonation)(nil),
893		(*Actor_System)(nil),
894		(*Actor_Administrator)(nil),
895	}
896	file_google_apps_drive_activity_v2_actor_proto_msgTypes[1].OneofWrappers = []interface{}{
897		(*User_KnownUser_)(nil),
898		(*User_DeletedUser_)(nil),
899		(*User_UnknownUser_)(nil),
900	}
901	type x struct{}
902	out := protoimpl.TypeBuilder{
903		File: protoimpl.DescBuilder{
904			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
905			RawDescriptor: file_google_apps_drive_activity_v2_actor_proto_rawDesc,
906			NumEnums:      1,
907			NumMessages:   9,
908			NumExtensions: 0,
909			NumServices:   0,
910		},
911		GoTypes:           file_google_apps_drive_activity_v2_actor_proto_goTypes,
912		DependencyIndexes: file_google_apps_drive_activity_v2_actor_proto_depIdxs,
913		EnumInfos:         file_google_apps_drive_activity_v2_actor_proto_enumTypes,
914		MessageInfos:      file_google_apps_drive_activity_v2_actor_proto_msgTypes,
915	}.Build()
916	File_google_apps_drive_activity_v2_actor_proto = out.File
917	file_google_apps_drive_activity_v2_actor_proto_rawDesc = nil
918	file_google_apps_drive_activity_v2_actor_proto_goTypes = nil
919	file_google_apps_drive_activity_v2_actor_proto_depIdxs = nil
920}
921