-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
driveactivity-gen.go
2387 lines (2038 loc) · 96.8 KB
/
driveactivity-gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2023 Google LLC.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Code generated file. DO NOT EDIT.
// Package driveactivity provides access to the Drive Activity API.
//
// For product documentation, see: https://developers.google.com/drive/activity/
//
// # Creating a client
//
// Usage example:
//
// import "google.golang.org/api/driveactivity/v2"
// ...
// ctx := context.Background()
// driveactivityService, err := driveactivity.NewService(ctx)
//
// In this example, Google Application Default Credentials are used for authentication.
//
// For information on how to create and obtain Application Default Credentials, see https://developers.google.com/identity/protocols/application-default-credentials.
//
// # Other authentication options
//
// By default, all available scopes (see "Constants") are used to authenticate. To restrict scopes, use option.WithScopes:
//
// driveactivityService, err := driveactivity.NewService(ctx, option.WithScopes(driveactivity.DriveActivityReadonlyScope))
//
// To use an API key for authentication (note: some APIs do not support API keys), use option.WithAPIKey:
//
// driveactivityService, err := driveactivity.NewService(ctx, option.WithAPIKey("AIza..."))
//
// To use an OAuth token (e.g., a user token obtained via a three-legged OAuth flow), use option.WithTokenSource:
//
// config := &oauth2.Config{...}
// // ...
// token, err := config.Exchange(ctx, ...)
// driveactivityService, err := driveactivity.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
//
// See https://godoc.org/google.golang.org/api/option/ for details on options.
package driveactivity // import "google.golang.org/api/driveactivity/v2"
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"strconv"
"strings"
googleapi "google.golang.org/api/googleapi"
internal "google.golang.org/api/internal"
gensupport "google.golang.org/api/internal/gensupport"
option "google.golang.org/api/option"
internaloption "google.golang.org/api/option/internaloption"
htransport "google.golang.org/api/transport/http"
)
// Always reference these packages, just in case the auto-generated code
// below doesn't.
var _ = bytes.NewBuffer
var _ = strconv.Itoa
var _ = fmt.Sprintf
var _ = json.NewDecoder
var _ = io.Copy
var _ = url.Parse
var _ = gensupport.MarshalJSON
var _ = googleapi.Version
var _ = errors.New
var _ = strings.Replace
var _ = context.Canceled
var _ = internaloption.WithDefaultEndpoint
const apiId = "driveactivity:v2"
const apiName = "driveactivity"
const apiVersion = "v2"
const basePath = "https://driveactivity.googleapis.com/"
const mtlsBasePath = "https://driveactivity.mtls.googleapis.com/"
// OAuth2 scopes used by this API.
const (
// View and add to the activity record of files in your Google Drive
DriveActivityScope = "https://www.googleapis.com/auth/drive.activity"
// View the activity record of files in your Google Drive
DriveActivityReadonlyScope = "https://www.googleapis.com/auth/drive.activity.readonly"
)
// NewService creates a new Service.
func NewService(ctx context.Context, opts ...option.ClientOption) (*Service, error) {
scopesOption := internaloption.WithDefaultScopes(
"https://www.googleapis.com/auth/drive.activity",
"https://www.googleapis.com/auth/drive.activity.readonly",
)
// NOTE: prepend, so we don't override user-specified scopes.
opts = append([]option.ClientOption{scopesOption}, opts...)
opts = append(opts, internaloption.WithDefaultEndpoint(basePath))
opts = append(opts, internaloption.WithDefaultMTLSEndpoint(mtlsBasePath))
client, endpoint, err := htransport.NewClient(ctx, opts...)
if err != nil {
return nil, err
}
s, err := New(client)
if err != nil {
return nil, err
}
if endpoint != "" {
s.BasePath = endpoint
}
return s, nil
}
// New creates a new Service. It uses the provided http.Client for requests.
//
// Deprecated: please use NewService instead.
// To provide a custom HTTP client, use option.WithHTTPClient.
// If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.
func New(client *http.Client) (*Service, error) {
if client == nil {
return nil, errors.New("client is nil")
}
s := &Service{client: client, BasePath: basePath}
s.Activity = NewActivityService(s)
return s, nil
}
type Service struct {
client *http.Client
BasePath string // API endpoint base URL
UserAgent string // optional additional User-Agent fragment
Activity *ActivityService
}
func (s *Service) userAgent() string {
if s.UserAgent == "" {
return googleapi.UserAgent
}
return googleapi.UserAgent + " " + s.UserAgent
}
func NewActivityService(s *Service) *ActivityService {
rs := &ActivityService{s: s}
return rs
}
type ActivityService struct {
s *Service
}
// Action: Information about the action.
type Action struct {
// Actor: The actor responsible for this action (or empty if all actors
// are responsible).
Actor *Actor `json:"actor,omitempty"`
// Detail: The type and detailed information about the action.
Detail *ActionDetail `json:"detail,omitempty"`
// Target: The target this action affects (or empty if affecting all
// targets). This represents the state of the target immediately after
// this action occurred.
Target *Target `json:"target,omitempty"`
// TimeRange: The action occurred over this time range.
TimeRange *TimeRange `json:"timeRange,omitempty"`
// Timestamp: The action occurred at this specific time.
Timestamp string `json:"timestamp,omitempty"`
// ForceSendFields is a list of field names (e.g. "Actor") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Actor") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Action) MarshalJSON() ([]byte, error) {
type NoMethod Action
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ActionDetail: Data describing the type and additional information of
// an action.
type ActionDetail struct {
// AppliedLabelChange: Label was changed.
AppliedLabelChange *AppliedLabelChange `json:"appliedLabelChange,omitempty"`
// Comment: A change about comments was made.
Comment *Comment `json:"comment,omitempty"`
// Create: An object was created.
Create *Create `json:"create,omitempty"`
// Delete: An object was deleted.
Delete *Delete `json:"delete,omitempty"`
// DlpChange: A change happened in data leak prevention status.
DlpChange *DataLeakPreventionChange `json:"dlpChange,omitempty"`
// Edit: An object was edited.
Edit *Edit `json:"edit,omitempty"`
// Move: An object was moved.
Move *Move `json:"move,omitempty"`
// PermissionChange: The permission on an object was changed.
PermissionChange *PermissionChange `json:"permissionChange,omitempty"`
// Reference: An object was referenced in an application outside of
// Drive/Docs.
Reference *ApplicationReference `json:"reference,omitempty"`
// Rename: An object was renamed.
Rename *Rename `json:"rename,omitempty"`
// Restore: A deleted object was restored.
Restore *Restore `json:"restore,omitempty"`
// SettingsChange: Settings were changed.
SettingsChange *SettingsChange `json:"settingsChange,omitempty"`
// ForceSendFields is a list of field names (e.g. "AppliedLabelChange")
// to unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AppliedLabelChange") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *ActionDetail) MarshalJSON() ([]byte, error) {
type NoMethod ActionDetail
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Actor: The actor of a Drive activity.
type Actor struct {
// Administrator: An administrator.
Administrator *Administrator `json:"administrator,omitempty"`
// Anonymous: An anonymous user.
Anonymous *AnonymousUser `json:"anonymous,omitempty"`
// Impersonation: An account acting on behalf of another.
Impersonation *Impersonation `json:"impersonation,omitempty"`
// System: A non-user actor (i.e. system triggered).
System *SystemEvent `json:"system,omitempty"`
// User: An end user.
User *User `json:"user,omitempty"`
// ForceSendFields is a list of field names (e.g. "Administrator") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Administrator") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Actor) MarshalJSON() ([]byte, error) {
type NoMethod Actor
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Administrator: Empty message representing an administrator.
type Administrator struct {
}
// AnonymousUser: Empty message representing an anonymous user or
// indicating the authenticated user should be anonymized.
type AnonymousUser struct {
}
// Anyone: Represents any user (including a logged out user).
type Anyone struct {
}
// ApplicationReference: Activity in applications other than Drive.
type ApplicationReference struct {
// Type: The reference type corresponding to this event.
//
// Possible values:
// "UNSPECIFIED_REFERENCE_TYPE" - The type is not available.
// "LINK" - The links of one or more Drive items were posted.
// "DISCUSS" - Comments were made regarding a Drive item.
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Type") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Type") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ApplicationReference) MarshalJSON() ([]byte, error) {
type NoMethod ApplicationReference
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AppliedLabelChange: Label changes that were made on the Target.
type AppliedLabelChange struct {
// Changes: Changes that were made to the Label on the Target.
Changes []*AppliedLabelChangeDetail `json:"changes,omitempty"`
// ForceSendFields is a list of field names (e.g. "Changes") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Changes") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AppliedLabelChange) MarshalJSON() ([]byte, error) {
type NoMethod AppliedLabelChange
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// AppliedLabelChangeDetail: A change made to a Label on the Target.
type AppliedLabelChangeDetail struct {
// FieldChanges: Field Changes. Only present if `types` contains
// `LABEL_FIELD_VALUE_CHANGED`.
FieldChanges []*FieldValueChange `json:"fieldChanges,omitempty"`
// Label: The Label name representing the Label that changed. This name
// always contains the revision of the Label that was used when this
// Action occurred. The format is `labels/id@revision`.
Label string `json:"label,omitempty"`
// Title: The human-readable title of the label that changed.
Title string `json:"title,omitempty"`
// Types: The types of changes made to the Label on the Target.
//
// Possible values:
// "TYPE_UNSPECIFIED" - The type of change to this Label is not
// available.
// "LABEL_ADDED" - The identified Label was added to the Target.
// "LABEL_REMOVED" - The identified Label was removed from the Target.
// "LABEL_FIELD_VALUE_CHANGED" - Field values were changed on the
// Target.
// "LABEL_APPLIED_BY_ITEM_CREATE" - The Label was applied as a
// side-effect of Drive item creation.
Types []string `json:"types,omitempty"`
// ForceSendFields is a list of field names (e.g. "FieldChanges") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "FieldChanges") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *AppliedLabelChangeDetail) MarshalJSON() ([]byte, error) {
type NoMethod AppliedLabelChangeDetail
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Assignment: A comment with an assignment.
type Assignment struct {
// AssignedUser: The user to whom the comment was assigned.
AssignedUser *User `json:"assignedUser,omitempty"`
// Subtype: The sub-type of this event.
//
// Possible values:
// "SUBTYPE_UNSPECIFIED" - Subtype not available.
// "ADDED" - An assignment was added.
// "DELETED" - An assignment was deleted.
// "REPLY_ADDED" - An assignment reply was added.
// "REPLY_DELETED" - An assignment reply was deleted.
// "RESOLVED" - An assignment was resolved.
// "REOPENED" - A resolved assignment was reopened.
// "REASSIGNED" - An assignment was reassigned.
Subtype string `json:"subtype,omitempty"`
// ForceSendFields is a list of field names (e.g. "AssignedUser") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "AssignedUser") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Assignment) MarshalJSON() ([]byte, error) {
type NoMethod Assignment
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Comment: A change about comments on an object.
type Comment struct {
// Assignment: A change on an assignment.
Assignment *Assignment `json:"assignment,omitempty"`
// MentionedUsers: Users who are mentioned in this comment.
MentionedUsers []*User `json:"mentionedUsers,omitempty"`
// Post: A change on a regular posted comment.
Post *Post `json:"post,omitempty"`
// Suggestion: A change on a suggestion.
Suggestion *Suggestion `json:"suggestion,omitempty"`
// ForceSendFields is a list of field names (e.g. "Assignment") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Assignment") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Comment) MarshalJSON() ([]byte, error) {
type NoMethod Comment
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// ConsolidationStrategy: How the individual activities are
// consolidated. If a set of activities is related they can be
// consolidated into one combined activity, such as one actor performing
// the same action on multiple targets, or multiple actors performing
// the same action on a single target. The strategy defines the rules
// for which activities are related.
type ConsolidationStrategy struct {
// Legacy: The individual activities are consolidated using the legacy
// strategy.
Legacy *Legacy `json:"legacy,omitempty"`
// None: The individual activities are not consolidated.
None *NoConsolidation `json:"none,omitempty"`
// ForceSendFields is a list of field names (e.g. "Legacy") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Legacy") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *ConsolidationStrategy) MarshalJSON() ([]byte, error) {
type NoMethod ConsolidationStrategy
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Copy: An object was created by copying an existing object.
type Copy struct {
// OriginalObject: The original object.
OriginalObject *TargetReference `json:"originalObject,omitempty"`
// ForceSendFields is a list of field names (e.g. "OriginalObject") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "OriginalObject") to
// include in API requests with the JSON null value. By default, fields
// with empty values are omitted from API requests. However, any field
// with an empty value appearing in NullFields will be sent to the
// server as null. It is an error if a field in this list has a
// non-empty value. This may be used to include null fields in Patch
// requests.
NullFields []string `json:"-"`
}
func (s *Copy) MarshalJSON() ([]byte, error) {
type NoMethod Copy
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Create: An object was created.
type Create struct {
// Copy: If present, indicates the object was created by copying an
// existing Drive object.
Copy *Copy `json:"copy,omitempty"`
// New: If present, indicates the object was newly created (e.g. as a
// blank document), not derived from a Drive object or external object.
New *New1 `json:"new,omitempty"`
// Upload: If present, indicates the object originated externally and
// was uploaded to Drive.
Upload *Upload `json:"upload,omitempty"`
// ForceSendFields is a list of field names (e.g. "Copy") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Copy") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Create) MarshalJSON() ([]byte, error) {
type NoMethod Create
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DataLeakPreventionChange: A change in the object's data leak
// prevention status.
type DataLeakPreventionChange struct {
// Type: The type of Data Leak Prevention (DLP) change.
//
// Possible values:
// "TYPE_UNSPECIFIED" - An update to the DLP state that is neither
// FLAGGED or CLEARED.
// "FLAGGED" - Document has been flagged as containing sensitive
// content.
// "CLEARED" - Document is no longer flagged as containing sensitive
// content.
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Type") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Type") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DataLeakPreventionChange) MarshalJSON() ([]byte, error) {
type NoMethod DataLeakPreventionChange
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Date: Wrapper for Date Field value.
type Date struct {
// Value: Date value.
Value string `json:"value,omitempty"`
// ForceSendFields is a list of field names (e.g. "Value") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Value") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Date) MarshalJSON() ([]byte, error) {
type NoMethod Date
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Delete: An object was deleted.
type Delete struct {
// Type: The type of delete action taken.
//
// Possible values:
// "TYPE_UNSPECIFIED" - Deletion type is not available.
// "TRASH" - An object was put into the trash.
// "PERMANENT_DELETE" - An object was deleted permanently.
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Type") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Type") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Delete) MarshalJSON() ([]byte, error) {
type NoMethod Delete
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DeletedUser: A user whose account has since been deleted.
type DeletedUser struct {
}
// Domain: Information about a domain.
type Domain struct {
// LegacyId: An opaque string used to identify this domain.
LegacyId string `json:"legacyId,omitempty"`
// Name: The name of the domain, e.g. `google.com`.
Name string `json:"name,omitempty"`
// ForceSendFields is a list of field names (e.g. "LegacyId") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "LegacyId") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Domain) MarshalJSON() ([]byte, error) {
type NoMethod Domain
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Drive: Information about a shared drive.
type Drive struct {
// Name: The resource name of the shared drive. The format is
// `COLLECTION_ID/DRIVE_ID`. Clients should not assume a specific
// collection ID for this resource name.
Name string `json:"name,omitempty"`
// Root: The root of this shared drive.
Root *DriveItem `json:"root,omitempty"`
// Title: The title of the shared drive.
Title string `json:"title,omitempty"`
// ForceSendFields is a list of field names (e.g. "Name") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Name") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *Drive) MarshalJSON() ([]byte, error) {
type NoMethod Drive
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DriveActivity: A single Drive activity comprising one or more Actions
// by one or more Actors on one or more Targets. Some Action groupings
// occur spontaneously, such as moving an item into a shared folder
// triggering a permission change. Other groupings of related Actions,
// such as multiple Actors editing one item or moving multiple files
// into a new folder, are controlled by the selection of a
// ConsolidationStrategy in the QueryDriveActivityRequest.
type DriveActivity struct {
// Actions: Details on all actions in this activity.
Actions []*Action `json:"actions,omitempty"`
// Actors: All actor(s) responsible for the activity.
Actors []*Actor `json:"actors,omitempty"`
// PrimaryActionDetail: Key information about the primary action for
// this activity. This is either representative, or the most important,
// of all actions in the activity, according to the
// ConsolidationStrategy in the request.
PrimaryActionDetail *ActionDetail `json:"primaryActionDetail,omitempty"`
// Targets: All Google Drive objects this activity is about (e.g. file,
// folder, drive). This represents the state of the target immediately
// after the actions occurred.
Targets []*Target `json:"targets,omitempty"`
// TimeRange: The activity occurred over this time range.
TimeRange *TimeRange `json:"timeRange,omitempty"`
// Timestamp: The activity occurred at this specific time.
Timestamp string `json:"timestamp,omitempty"`
// ForceSendFields is a list of field names (e.g. "Actions") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Actions") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DriveActivity) MarshalJSON() ([]byte, error) {
type NoMethod DriveActivity
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DriveFile: A Drive item which is a file.
type DriveFile struct {
}
// DriveFolder: A Drive item which is a folder.
type DriveFolder struct {
// Type: The type of Drive folder.
//
// Possible values:
// "TYPE_UNSPECIFIED" - The folder type is unknown.
// "MY_DRIVE_ROOT" - The folder is the root of a user's MyDrive.
// "SHARED_DRIVE_ROOT" - The folder is the root of a shared drive.
// "STANDARD_FOLDER" - The folder is a standard, non-root, folder.
Type string `json:"type,omitempty"`
// ForceSendFields is a list of field names (e.g. "Type") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Type") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DriveFolder) MarshalJSON() ([]byte, error) {
type NoMethod DriveFolder
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DriveItem: A Drive item, such as a file or folder.
type DriveItem struct {
// DriveFile: The Drive item is a file.
DriveFile *DriveFile `json:"driveFile,omitempty"`
// DriveFolder: The Drive item is a folder. Includes information about
// the type of folder.
DriveFolder *DriveFolder `json:"driveFolder,omitempty"`
// File: This field is deprecated; please use the `driveFile` field
// instead.
File *File `json:"file,omitempty"`
// Folder: This field is deprecated; please use the `driveFolder` field
// instead.
Folder *Folder `json:"folder,omitempty"`
// MimeType: The MIME type of the Drive item. See
// https://developers.google.com/drive/v3/web/mime-types.
MimeType string `json:"mimeType,omitempty"`
// Name: The target Drive item. The format is `items/ITEM_ID`.
Name string `json:"name,omitempty"`
// Owner: Information about the owner of this Drive item.
Owner *Owner `json:"owner,omitempty"`
// Title: The title of the Drive item.
Title string `json:"title,omitempty"`
// ForceSendFields is a list of field names (e.g. "DriveFile") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DriveFile") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DriveItem) MarshalJSON() ([]byte, error) {
type NoMethod DriveItem
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DriveItemReference: A lightweight reference to a Drive item, such as
// a file or folder.
type DriveItemReference struct {
// DriveFile: The Drive item is a file.
DriveFile *DriveFile `json:"driveFile,omitempty"`
// DriveFolder: The Drive item is a folder. Includes information about
// the type of folder.
DriveFolder *DriveFolder `json:"driveFolder,omitempty"`
// File: This field is deprecated; please use the `driveFile` field
// instead.
File *File `json:"file,omitempty"`
// Folder: This field is deprecated; please use the `driveFolder` field
// instead.
Folder *Folder `json:"folder,omitempty"`
// Name: The target Drive item. The format is `items/ITEM_ID`.
Name string `json:"name,omitempty"`
// Title: The title of the Drive item.
Title string `json:"title,omitempty"`
// ForceSendFields is a list of field names (e.g. "DriveFile") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DriveFile") to include in
// API requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DriveItemReference) MarshalJSON() ([]byte, error) {
type NoMethod DriveItemReference
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// DriveReference: A lightweight reference to a shared drive.
type DriveReference struct {
// Name: The resource name of the shared drive. The format is
// `COLLECTION_ID/DRIVE_ID`. Clients should not assume a specific
// collection ID for this resource name.
Name string `json:"name,omitempty"`
// Title: The title of the shared drive.
Title string `json:"title,omitempty"`
// ForceSendFields is a list of field names (e.g. "Name") to
// unconditionally include in API requests. By default, fields with
// empty or default values are omitted from API requests. However, any
// non-pointer, non-interface field appearing in ForceSendFields will be
// sent to the server regardless of whether the field is empty or not.
// This may be used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Name") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *DriveReference) MarshalJSON() ([]byte, error) {
type NoMethod DriveReference
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}