v1beta1.d.ts
49.8 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
/**
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { OAuth2Client, JWT, Compute, UserRefreshClient } from 'google-auth-library';
import { GoogleConfigurable, MethodOptions, GlobalOptions, BodyResponseCallback, APIRequestContext } from 'googleapis-common';
import { GaxiosPromise } from 'gaxios';
export declare namespace alertcenter_v1beta1 {
export interface Options extends GlobalOptions {
version: 'v1beta1';
}
interface StandardParameters {
/**
* V1 error format.
*/
'$.xgafv'?: string;
/**
* OAuth access token.
*/
access_token?: string;
/**
* Data format for response.
*/
alt?: string;
/**
* JSONP
*/
callback?: string;
/**
* Selector specifying which fields to include in a partial response.
*/
fields?: string;
/**
* API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
*/
key?: string;
/**
* OAuth 2.0 token for the current user.
*/
oauth_token?: string;
/**
* Returns response with indentations and line breaks.
*/
prettyPrint?: boolean;
/**
* Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
*/
quotaUser?: string;
/**
* Legacy upload protocol for media (e.g. "media", "multipart").
*/
uploadType?: string;
/**
* Upload protocol for media (e.g. "raw", "multipart").
*/
upload_protocol?: string;
}
/**
* G Suite Alert Center API
*
* Manages alerts on issues affecting your domain.
*
* @example
* const {google} = require('googleapis');
* const alertcenter = google.alertcenter('v1beta1');
*
* @namespace alertcenter
* @type {Function}
* @version v1beta1
* @variation v1beta1
* @param {object=} options Options for Alertcenter
*/
export class Alertcenter {
context: APIRequestContext;
alerts: Resource$Alerts;
v1beta1: Resource$V1beta1;
constructor(options: GlobalOptions, google?: GoogleConfigurable);
}
/**
* Alerts for user account warning events.
*/
export interface Schema$AccountWarning {
/**
* Required. The email of the user that this event belongs to.
*/
email?: string | null;
/**
* Optional. Details of the login action associated with the warning event. This is only available for: * Suspicious login * Suspicious login (less secure app) * Suspicious programmatic login * User suspended (suspicious activity)
*/
loginDetails?: Schema$LoginDetails;
}
/**
* Alerts from G Suite Security Center rules service configured by admin.
*/
export interface Schema$ActivityRule {
/**
* List of action names associated with the rule threshold.
*/
actionNames?: string[] | null;
/**
* Rule create timestamp.
*/
createTime?: string | null;
/**
* Description of the rule.
*/
description?: string | null;
/**
* Alert display name.
*/
displayName?: string | null;
/**
* Rule name.
*/
name?: string | null;
/**
* Query that is used to get the data from the associated source.
*/
query?: string | null;
/**
* List of alert ids superseded by this alert. It is used to indicate that this alert is essentially extension of superseded alerts and we found the relationship after creating these alerts.
*/
supersededAlerts?: string[] | null;
/**
* Alert id superseding this alert. It is used to indicate that superseding alert is essentially extension of this alert and we found the relationship after creating both alerts.
*/
supersedingAlert?: string | null;
/**
* Alert threshold is for example “COUNT > 5”.
*/
threshold?: string | null;
/**
* The trigger sources for this rule. * GMAIL_EVENTS * DEVICE_EVENTS * USER_EVENTS
*/
triggerSource?: string | null;
/**
* The timestamp of the last update to the rule.
*/
updateTime?: string | null;
/**
* Rule window size. Possible values are 1 hour or 24 hours.
*/
windowSize?: string | null;
}
/**
* An alert affecting a customer.
*/
export interface Schema$Alert {
/**
* Output only. The unique identifier for the alert.
*/
alertId?: string | null;
/**
* Output only. The time this alert was created.
*/
createTime?: string | null;
/**
* Output only. The unique identifier of the Google account of the customer.
*/
customerId?: string | null;
/**
* Optional. The data associated with this alert, for example google.apps.alertcenter.type.DeviceCompromised.
*/
data?: {
[key: string]: any;
} | null;
/**
* Output only. `True` if this alert is marked for deletion.
*/
deleted?: boolean | null;
/**
* Optional. The time the event that caused this alert ceased being active. If provided, the end time must not be earlier than the start time. If not provided, it indicates an ongoing alert.
*/
endTime?: string | null;
/**
* Optional. `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of an alert from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform alert updates in order to avoid race conditions: An `etag` is returned in the response which contains alerts, and systems are expected to put that etag in the request to update alert to ensure that their change will be applied to the same version of the alert. If no `etag` is provided in the call to update alert, then the existing alert is overwritten blindly.
*/
etag?: string | null;
/**
* Output only. The metadata associated with this alert.
*/
metadata?: Schema$AlertMetadata;
/**
* Output only. An optional [Security Investigation Tool](https://support.google.com/a/answer/7575955) query for this alert.
*/
securityInvestigationToolLink?: string | null;
/**
* Required. A unique identifier for the system that reported the alert. This is output only after alert is created. Supported sources are any of the following: * Google Operations * Mobile device management * Gmail phishing * Domain wide takeout * State sponsored attack * Google identity
*/
source?: string | null;
/**
* Required. The time the event that caused this alert was started or detected.
*/
startTime?: string | null;
/**
* Required. The type of the alert. This is output only after alert is created. For a list of available alert types see [G Suite Alert types](/admin-sdk/alertcenter/reference/alert-types).
*/
type?: string | null;
/**
* Output only. The time this alert was last updated.
*/
updateTime?: string | null;
}
/**
* A customer feedback about an alert.
*/
export interface Schema$AlertFeedback {
/**
* Output only. The alert identifier.
*/
alertId?: string | null;
/**
* Output only. The time this feedback was created.
*/
createTime?: string | null;
/**
* Output only. The unique identifier of the Google account of the customer.
*/
customerId?: string | null;
/**
* Output only. The email of the user that provided the feedback.
*/
email?: string | null;
/**
* Output only. The unique identifier for the feedback.
*/
feedbackId?: string | null;
/**
* Required. The type of the feedback.
*/
type?: string | null;
}
/**
* An alert metadata.
*/
export interface Schema$AlertMetadata {
/**
* Output only. The alert identifier.
*/
alertId?: string | null;
/**
* The email address of the user assigned to the alert.
*/
assignee?: string | null;
/**
* Output only. The unique identifier of the Google account of the customer.
*/
customerId?: string | null;
/**
* Optional. `etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of an alert metadata from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform metatdata updates in order to avoid race conditions: An `etag` is returned in the response which contains alert metadata, and systems are expected to put that etag in the request to update alert metadata to ensure that their change will be applied to the same version of the alert metadata. If no `etag` is provided in the call to update alert metadata, then the existing alert metadata is overwritten blindly.
*/
etag?: string | null;
/**
* The severity value of the alert. Alert Center will set this field at alert creation time, default's to an empty string when it could not be determined. The supported values for update actions on this field are the following: * HIGH * MEDIUM * LOW
*/
severity?: string | null;
/**
* The current status of the alert. The supported values are the following: * NOT_STARTED * IN_PROGRESS * CLOSED
*/
status?: string | null;
/**
* Output only. The time this metadata was last updated.
*/
updateTime?: string | null;
}
/**
* Alerts from App Maker to notify admins to set up default SQL instance.
*/
export interface Schema$AppMakerSqlSetupNotification {
/**
* List of applications with requests for default SQL set up.
*/
requestInfo?: Schema$RequestInfo[];
}
/**
* Attachment with application-specific information about an alert.
*/
export interface Schema$Attachment {
/**
* A CSV file attachment.
*/
csv?: Schema$Csv;
}
/**
* Alert for setting the domain or IP that malicious email comes from as whitelisted domain or IP in Gmail advanced settings.
*/
export interface Schema$BadWhitelist {
/**
* The domain ID.
*/
domainId?: Schema$DomainId;
/**
* The entity whose actions triggered a Gmail phishing alert.
*/
maliciousEntity?: Schema$MaliciousEntity;
/**
* The list of messages contained by this alert.
*/
messages?: Schema$GmailMessageInfo[];
/**
* The source IP address of the malicious email, for example, `127.0.0.1`.
*/
sourceIp?: string | null;
}
/**
* A request to perform batch delete on alerts.
*/
export interface Schema$BatchDeleteAlertsRequest {
/**
* Required. list of alert ids.
*/
alertId?: string[] | null;
/**
* Optional. The unique identifier of the G Suite organization account of the customer the alerts are associated with.
*/
customerId?: string | null;
}
/**
* Response to batch delete operation on alerts.
*/
export interface Schema$BatchDeleteAlertsResponse {
/**
* The status details for each failed alert_id.
*/
failedAlertStatus?: {
[key: string]: Schema$Status;
} | null;
/**
* The successful list of alert ids.
*/
successAlertIds?: string[] | null;
}
/**
* A request to perform batch undelete on alerts.
*/
export interface Schema$BatchUndeleteAlertsRequest {
/**
* Required. list of alert ids.
*/
alertId?: string[] | null;
/**
* Optional. The unique identifier of the G Suite organization account of the customer the alerts are associated with.
*/
customerId?: string | null;
}
/**
* Response to batch undelete operation on alerts.
*/
export interface Schema$BatchUndeleteAlertsResponse {
/**
* The status details for each failed alert_id.
*/
failedAlertStatus?: {
[key: string]: Schema$Status;
} | null;
/**
* The successful list of alert ids.
*/
successAlertIds?: string[] | null;
}
/**
* A reference to a Cloud Pubsub topic. To register for notifications, the owner of the topic must grant `alerts-api-push-notifications@system.gserviceaccount.com` the `projects.topics.publish` permission.
*/
export interface Schema$CloudPubsubTopic {
/**
* Optional. The format of the payload that would be sent. If not specified the format will be JSON.
*/
payloadFormat?: string | null;
/**
* The `name` field of a Cloud Pubsub [Topic] (https://cloud.google.com/pubsub/docs/reference/rest/v1/projects.topics#Topic).
*/
topicName?: string | null;
}
/**
* A representation of a CSV file attachment, as a list of column headers and a list of data rows.
*/
export interface Schema$Csv {
/**
* The list of data rows in a CSV file, as string arrays rather than as a single comma-separated string.
*/
dataRows?: Schema$CsvRow[];
/**
* The list of headers for data columns in a CSV file.
*/
headers?: string[] | null;
}
/**
* A representation of a single data row in a CSV file.
*/
export interface Schema$CsvRow {
/**
* The data entries in a CSV file row, as a string array rather than a single comma-separated string.
*/
entries?: string[] | null;
}
/**
* A mobile device compromised alert. Derived from audit logs.
*/
export interface Schema$DeviceCompromised {
/**
* The email of the user this alert was created for.
*/
email?: string | null;
/**
* Required. The list of security events.
*/
events?: Schema$DeviceCompromisedSecurityDetail[];
}
/**
* Detailed information of a single MDM device compromised event.
*/
export interface Schema$DeviceCompromisedSecurityDetail {
/**
* The device compromised state. Possible values are "`Compromised`" or "`Not Compromised`".
*/
deviceCompromisedState?: string | null;
/**
* Required. The device ID.
*/
deviceId?: string | null;
/**
* The model of the device.
*/
deviceModel?: string | null;
/**
* The type of the device.
*/
deviceType?: string | null;
/**
* Required for iOS, empty for others.
*/
iosVendorId?: string | null;
/**
* The device resource ID.
*/
resourceId?: string | null;
/**
* The serial number of the device.
*/
serialNumber?: string | null;
}
/**
* Domain ID of Gmail phishing alerts.
*/
export interface Schema$DomainId {
/**
* The primary domain for the customer.
*/
customerPrimaryDomain?: string | null;
}
/**
* A takeout operation for the entire domain was initiated by an admin. Derived from audit logs.
*/
export interface Schema$DomainWideTakeoutInitiated {
/**
* The email of the admin who initiated the takeout.
*/
email?: string | null;
/**
* The takeout request ID.
*/
takeoutRequestId?: string | null;
}
/**
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
*/
export interface Schema$Empty {
}
/**
* Details of a message in phishing spike alert.
*/
export interface Schema$GmailMessageInfo {
/**
* The `SHA256` hash of email's attachment and all MIME parts.
*/
attachmentsSha256Hash?: string[] | null;
/**
* The date the malicious email was sent.
*/
date?: string | null;
/**
* The hash of the message body text.
*/
md5HashMessageBody?: string | null;
/**
* The MD5 Hash of email's subject (only available for reported emails).
*/
md5HashSubject?: string | null;
/**
* The snippet of the message body text (only available for reported emails).
*/
messageBodySnippet?: string | null;
/**
* The message ID.
*/
messageId?: string | null;
/**
* The recipient of this email.
*/
recipient?: string | null;
/**
* The email subject text (only available for reported emails).
*/
subjectText?: string | null;
}
/**
* An incident reported by Google Operations for a G Suite application.
*/
export interface Schema$GoogleOperations {
/**
* The list of emails which correspond to the users directly affected by the incident.
*/
affectedUserEmails?: string[] | null;
/**
* Optional. Application-specific data for an incident, provided when the G Suite application which reported the incident cannot be completely restored to a valid state.
*/
attachmentData?: Schema$Attachment;
/**
* A detailed, freeform incident description.
*/
description?: string | null;
/**
* A one-line incident description.
*/
title?: string | null;
}
/**
* Response message for an alert feedback listing request.
*/
export interface Schema$ListAlertFeedbackResponse {
/**
* The list of alert feedback. Feedback entries for each alert are ordered by creation time descending.
*/
feedback?: Schema$AlertFeedback[];
}
/**
* Response message for an alert listing request.
*/
export interface Schema$ListAlertsResponse {
/**
* The list of alerts.
*/
alerts?: Schema$Alert[];
/**
* The token for the next page. If not empty, indicates that there may be more alerts that match the listing request; this value can be used in a subsequent ListAlertsRequest to get alerts continuing from last result of the current list call.
*/
nextPageToken?: string | null;
}
/**
* The details of the login action.
*/
export interface Schema$LoginDetails {
/**
* Optional. The human-readable IP address (for example, `11.22.33.44`) that is associated with the warning event.
*/
ipAddress?: string | null;
/**
* Optional. The successful login time that is associated with the warning event. This will not be present for blocked login attempts.
*/
loginTime?: string | null;
}
/**
* Proto for all phishing alerts with common payload. Supported types are any of the following: * User reported phishing * User reported spam spike * Suspicious message reported * Phishing reclassification * Malware reclassification
*/
export interface Schema$MailPhishing {
/**
* The domain ID.
*/
domainId?: Schema$DomainId;
/**
* If `true`, the email originated from within the organization.
*/
isInternal?: boolean | null;
/**
* The entity whose actions triggered a Gmail phishing alert.
*/
maliciousEntity?: Schema$MaliciousEntity;
/**
* The list of messages contained by this alert.
*/
messages?: Schema$GmailMessageInfo[];
}
/**
* Entity whose actions triggered a Gmail phishing alert.
*/
export interface Schema$MaliciousEntity {
/**
* The header from display name.
*/
displayName?: string | null;
/**
* The sender email address.
*/
fromHeader?: string | null;
}
/**
* Settings for callback notifications. For more details see [G Suite Alert Notification](/admin-sdk/alertcenter/guides/notifications).
*/
export interface Schema$Notification {
/**
* A Google Cloud Pub/sub topic destination.
*/
cloudPubsubTopic?: Schema$CloudPubsubTopic;
}
/**
* Alert for a spike in user reported phishing. <aside class="warning"><b>Warning</b>: This type has been deprecated. Use [MailPhishing](/admin-sdk/alertcenter/reference/rest/v1beta1/MailPhishing) instead.</aside>
*/
export interface Schema$PhishingSpike {
/**
* The domain ID.
*/
domainId?: Schema$DomainId;
/**
* If `true`, the email originated from within the organization.
*/
isInternal?: boolean | null;
/**
* The entity whose actions triggered a Gmail phishing alert.
*/
maliciousEntity?: Schema$MaliciousEntity;
/**
* The list of messages contained by this alert.
*/
messages?: Schema$GmailMessageInfo[];
}
/**
* Requests for one application that needs default SQL setup.
*/
export interface Schema$RequestInfo {
/**
* List of app developers who triggered notifications for above application.
*/
appDeveloperEmail?: string[] | null;
/**
* Required. The application that requires the SQL setup.
*/
appKey?: string | null;
/**
* Required. Number of requests sent for this application to set up default SQL instance.
*/
numberOfRequests?: string | null;
}
/**
* Customer-level settings.
*/
export interface Schema$Settings {
/**
* The list of notifications.
*/
notifications?: Schema$Notification[];
}
/**
* A state-sponsored attack alert. Derived from audit logs.
*/
export interface Schema$StateSponsoredAttack {
/**
* The email of the user this incident was created for.
*/
email?: string | null;
}
/**
* The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
*/
export interface Schema$Status {
/**
* The status code, which should be an enum value of google.rpc.Code.
*/
code?: number | null;
/**
* A list of messages that carry the error details. There is a common set of message types for APIs to use.
*/
details?: Array<{
[key: string]: any;
}> | null;
/**
* A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
*/
message?: string | null;
}
/**
* A mobile suspicious activity alert. Derived from audit logs.
*/
export interface Schema$SuspiciousActivity {
/**
* The email of the user this alert was created for.
*/
email?: string | null;
/**
* Required. The list of security events.
*/
events?: Schema$SuspiciousActivitySecurityDetail[];
}
/**
* Detailed information of a single MDM suspicious activity event.
*/
export interface Schema$SuspiciousActivitySecurityDetail {
/**
* Required. The device ID.
*/
deviceId?: string | null;
/**
* The model of the device.
*/
deviceModel?: string | null;
/**
* The device property which was changed.
*/
deviceProperty?: string | null;
/**
* The type of the device.
*/
deviceType?: string | null;
/**
* Required for iOS, empty for others.
*/
iosVendorId?: string | null;
/**
* The new value of the device property after the change.
*/
newValue?: string | null;
/**
* The old value of the device property before the change.
*/
oldValue?: string | null;
/**
* The device resource ID.
*/
resourceId?: string | null;
/**
* The serial number of the device.
*/
serialNumber?: string | null;
}
/**
* A request to undelete a specific alert that was marked for deletion.
*/
export interface Schema$UndeleteAlertRequest {
/**
* Optional. The unique identifier of the G Suite organization account of the customer the alert is associated with. Inferred from the caller identity if not provided.
*/
customerId?: string | null;
}
export class Resource$Alerts {
context: APIRequestContext;
feedback: Resource$Alerts$Feedback;
constructor(context: APIRequestContext);
/**
* alertcenter.alerts.batchDelete
* @desc Performs batch delete operation on alerts.
* @alias alertcenter.alerts.batchDelete
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {().BatchDeleteAlertsRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
batchDelete(params?: Params$Resource$Alerts$Batchdelete, options?: MethodOptions): GaxiosPromise<Schema$BatchDeleteAlertsResponse>;
batchDelete(params: Params$Resource$Alerts$Batchdelete, options: MethodOptions | BodyResponseCallback<Schema$BatchDeleteAlertsResponse>, callback: BodyResponseCallback<Schema$BatchDeleteAlertsResponse>): void;
batchDelete(params: Params$Resource$Alerts$Batchdelete, callback: BodyResponseCallback<Schema$BatchDeleteAlertsResponse>): void;
batchDelete(callback: BodyResponseCallback<Schema$BatchDeleteAlertsResponse>): void;
/**
* alertcenter.alerts.batchUndelete
* @desc Performs batch undelete operation on alerts.
* @alias alertcenter.alerts.batchUndelete
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {().BatchUndeleteAlertsRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
batchUndelete(params?: Params$Resource$Alerts$Batchundelete, options?: MethodOptions): GaxiosPromise<Schema$BatchUndeleteAlertsResponse>;
batchUndelete(params: Params$Resource$Alerts$Batchundelete, options: MethodOptions | BodyResponseCallback<Schema$BatchUndeleteAlertsResponse>, callback: BodyResponseCallback<Schema$BatchUndeleteAlertsResponse>): void;
batchUndelete(params: Params$Resource$Alerts$Batchundelete, callback: BodyResponseCallback<Schema$BatchUndeleteAlertsResponse>): void;
batchUndelete(callback: BodyResponseCallback<Schema$BatchUndeleteAlertsResponse>): void;
/**
* alertcenter.alerts.delete
* @desc Marks the specified alert for deletion. An alert that has been marked for deletion is removed from Alert Center after 30 days. Marking an alert for deletion has no effect on an alert which has already been marked for deletion. Attempting to mark a nonexistent alert for deletion results in a `NOT_FOUND` error.
* @alias alertcenter.alerts.delete
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.alertId Required. The identifier of the alert to delete.
* @param {string=} params.customerId Optional. The unique identifier of the G Suite organization account of the customer the alert is associated with. Inferred from the caller identity if not provided.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete(params?: Params$Resource$Alerts$Delete, options?: MethodOptions): GaxiosPromise<Schema$Empty>;
delete(params: Params$Resource$Alerts$Delete, options: MethodOptions | BodyResponseCallback<Schema$Empty>, callback: BodyResponseCallback<Schema$Empty>): void;
delete(params: Params$Resource$Alerts$Delete, callback: BodyResponseCallback<Schema$Empty>): void;
delete(callback: BodyResponseCallback<Schema$Empty>): void;
/**
* alertcenter.alerts.get
* @desc Gets the specified alert. Attempting to get a nonexistent alert returns `NOT_FOUND` error.
* @alias alertcenter.alerts.get
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.alertId Required. The identifier of the alert to retrieve.
* @param {string=} params.customerId Optional. The unique identifier of the G Suite organization account of the customer the alert is associated with. Inferred from the caller identity if not provided.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get(params?: Params$Resource$Alerts$Get, options?: MethodOptions): GaxiosPromise<Schema$Alert>;
get(params: Params$Resource$Alerts$Get, options: MethodOptions | BodyResponseCallback<Schema$Alert>, callback: BodyResponseCallback<Schema$Alert>): void;
get(params: Params$Resource$Alerts$Get, callback: BodyResponseCallback<Schema$Alert>): void;
get(callback: BodyResponseCallback<Schema$Alert>): void;
/**
* alertcenter.alerts.getMetadata
* @desc Returns the metadata of an alert. Attempting to get metadata for a non-existent alert returns `NOT_FOUND` error.
* @alias alertcenter.alerts.getMetadata
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.alertId Required. The identifier of the alert this metadata belongs to.
* @param {string=} params.customerId Optional. The unique identifier of the G Suite organization account of the customer the alert metadata is associated with. Inferred from the caller identity if not provided.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
getMetadata(params?: Params$Resource$Alerts$Getmetadata, options?: MethodOptions): GaxiosPromise<Schema$AlertMetadata>;
getMetadata(params: Params$Resource$Alerts$Getmetadata, options: MethodOptions | BodyResponseCallback<Schema$AlertMetadata>, callback: BodyResponseCallback<Schema$AlertMetadata>): void;
getMetadata(params: Params$Resource$Alerts$Getmetadata, callback: BodyResponseCallback<Schema$AlertMetadata>): void;
getMetadata(callback: BodyResponseCallback<Schema$AlertMetadata>): void;
/**
* alertcenter.alerts.list
* @desc Lists the alerts.
* @alias alertcenter.alerts.list
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string=} params.customerId Optional. The unique identifier of the G Suite organization account of the customer the alerts are associated with. Inferred from the caller identity if not provided.
* @param {string=} params.filter Optional. A query string for filtering alert results. For more details, see [Query filters](/admin-sdk/alertcenter/guides/query-filters) and [Supported query filter fields](/admin-sdk/alertcenter/reference/filter-fields#alerts.list).
* @param {string=} params.orderBy Optional. The sort order of the list results. If not specified results may be returned in arbitrary order. You can sort the results in descending order based on the creation timestamp using `order_by="create_time desc"`. Currently, supported sorting are `create_time asc`, `create_time desc`, `update_time desc`
* @param {integer=} params.pageSize Optional. The requested page size. Server may return fewer items than requested. If unspecified, server picks an appropriate default.
* @param {string=} params.pageToken Optional. A token identifying a page of results the server should return. If empty, a new iteration is started. To continue an iteration, pass in the value from the previous ListAlertsResponse's next_page_token field.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
list(params?: Params$Resource$Alerts$List, options?: MethodOptions): GaxiosPromise<Schema$ListAlertsResponse>;
list(params: Params$Resource$Alerts$List, options: MethodOptions | BodyResponseCallback<Schema$ListAlertsResponse>, callback: BodyResponseCallback<Schema$ListAlertsResponse>): void;
list(params: Params$Resource$Alerts$List, callback: BodyResponseCallback<Schema$ListAlertsResponse>): void;
list(callback: BodyResponseCallback<Schema$ListAlertsResponse>): void;
/**
* alertcenter.alerts.undelete
* @desc Restores, or "undeletes", an alert that was marked for deletion within the past 30 days. Attempting to undelete an alert which was marked for deletion over 30 days ago (which has been removed from the Alert Center database) or a nonexistent alert returns a `NOT_FOUND` error. Attempting to undelete an alert which has not been marked for deletion has no effect.
* @alias alertcenter.alerts.undelete
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.alertId Required. The identifier of the alert to undelete.
* @param {().UndeleteAlertRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
undelete(params?: Params$Resource$Alerts$Undelete, options?: MethodOptions): GaxiosPromise<Schema$Alert>;
undelete(params: Params$Resource$Alerts$Undelete, options: MethodOptions | BodyResponseCallback<Schema$Alert>, callback: BodyResponseCallback<Schema$Alert>): void;
undelete(params: Params$Resource$Alerts$Undelete, callback: BodyResponseCallback<Schema$Alert>): void;
undelete(callback: BodyResponseCallback<Schema$Alert>): void;
}
export interface Params$Resource$Alerts$Batchdelete extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Request body metadata
*/
requestBody?: Schema$BatchDeleteAlertsRequest;
}
export interface Params$Resource$Alerts$Batchundelete extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Request body metadata
*/
requestBody?: Schema$BatchUndeleteAlertsRequest;
}
export interface Params$Resource$Alerts$Delete extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Required. The identifier of the alert to delete.
*/
alertId?: string;
/**
* Optional. The unique identifier of the G Suite organization account of the customer the alert is associated with. Inferred from the caller identity if not provided.
*/
customerId?: string;
}
export interface Params$Resource$Alerts$Get extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Required. The identifier of the alert to retrieve.
*/
alertId?: string;
/**
* Optional. The unique identifier of the G Suite organization account of the customer the alert is associated with. Inferred from the caller identity if not provided.
*/
customerId?: string;
}
export interface Params$Resource$Alerts$Getmetadata extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Required. The identifier of the alert this metadata belongs to.
*/
alertId?: string;
/**
* Optional. The unique identifier of the G Suite organization account of the customer the alert metadata is associated with. Inferred from the caller identity if not provided.
*/
customerId?: string;
}
export interface Params$Resource$Alerts$List extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Optional. The unique identifier of the G Suite organization account of the customer the alerts are associated with. Inferred from the caller identity if not provided.
*/
customerId?: string;
/**
* Optional. A query string for filtering alert results. For more details, see [Query filters](/admin-sdk/alertcenter/guides/query-filters) and [Supported query filter fields](/admin-sdk/alertcenter/reference/filter-fields#alerts.list).
*/
filter?: string;
/**
* Optional. The sort order of the list results. If not specified results may be returned in arbitrary order. You can sort the results in descending order based on the creation timestamp using `order_by="create_time desc"`. Currently, supported sorting are `create_time asc`, `create_time desc`, `update_time desc`
*/
orderBy?: string;
/**
* Optional. The requested page size. Server may return fewer items than requested. If unspecified, server picks an appropriate default.
*/
pageSize?: number;
/**
* Optional. A token identifying a page of results the server should return. If empty, a new iteration is started. To continue an iteration, pass in the value from the previous ListAlertsResponse's next_page_token field.
*/
pageToken?: string;
}
export interface Params$Resource$Alerts$Undelete extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Required. The identifier of the alert to undelete.
*/
alertId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$UndeleteAlertRequest;
}
export class Resource$Alerts$Feedback {
context: APIRequestContext;
constructor(context: APIRequestContext);
/**
* alertcenter.alerts.feedback.create
* @desc Creates new feedback for an alert. Attempting to create a feedback for a non-existent alert returns `NOT_FOUND` error. Attempting to create a feedback for an alert that is marked for deletion returns `FAILED_PRECONDITION' error.
* @alias alertcenter.alerts.feedback.create
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.alertId Required. The identifier of the alert this feedback belongs to.
* @param {string=} params.customerId Optional. The unique identifier of the G Suite organization account of the customer the alert is associated with. Inferred from the caller identity if not provided.
* @param {().AlertFeedback} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
create(params?: Params$Resource$Alerts$Feedback$Create, options?: MethodOptions): GaxiosPromise<Schema$AlertFeedback>;
create(params: Params$Resource$Alerts$Feedback$Create, options: MethodOptions | BodyResponseCallback<Schema$AlertFeedback>, callback: BodyResponseCallback<Schema$AlertFeedback>): void;
create(params: Params$Resource$Alerts$Feedback$Create, callback: BodyResponseCallback<Schema$AlertFeedback>): void;
create(callback: BodyResponseCallback<Schema$AlertFeedback>): void;
/**
* alertcenter.alerts.feedback.list
* @desc Lists all the feedback for an alert. Attempting to list feedbacks for a non-existent alert returns `NOT_FOUND` error.
* @alias alertcenter.alerts.feedback.list
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.alertId Required. The alert identifier. The "-" wildcard could be used to represent all alerts.
* @param {string=} params.customerId Optional. The unique identifier of the G Suite organization account of the customer the alert feedback are associated with. Inferred from the caller identity if not provided.
* @param {string=} params.filter Optional. A query string for filtering alert feedback results. For more details, see [Query filters](/admin-sdk/alertcenter/guides/query-filters) and [Supported query filter fields](/admin-sdk/alertcenter/reference/filter-fields#alerts.feedback.list).
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
list(params?: Params$Resource$Alerts$Feedback$List, options?: MethodOptions): GaxiosPromise<Schema$ListAlertFeedbackResponse>;
list(params: Params$Resource$Alerts$Feedback$List, options: MethodOptions | BodyResponseCallback<Schema$ListAlertFeedbackResponse>, callback: BodyResponseCallback<Schema$ListAlertFeedbackResponse>): void;
list(params: Params$Resource$Alerts$Feedback$List, callback: BodyResponseCallback<Schema$ListAlertFeedbackResponse>): void;
list(callback: BodyResponseCallback<Schema$ListAlertFeedbackResponse>): void;
}
export interface Params$Resource$Alerts$Feedback$Create extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Required. The identifier of the alert this feedback belongs to.
*/
alertId?: string;
/**
* Optional. The unique identifier of the G Suite organization account of the customer the alert is associated with. Inferred from the caller identity if not provided.
*/
customerId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$AlertFeedback;
}
export interface Params$Resource$Alerts$Feedback$List extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Required. The alert identifier. The "-" wildcard could be used to represent all alerts.
*/
alertId?: string;
/**
* Optional. The unique identifier of the G Suite organization account of the customer the alert feedback are associated with. Inferred from the caller identity if not provided.
*/
customerId?: string;
/**
* Optional. A query string for filtering alert feedback results. For more details, see [Query filters](/admin-sdk/alertcenter/guides/query-filters) and [Supported query filter fields](/admin-sdk/alertcenter/reference/filter-fields#alerts.feedback.list).
*/
filter?: string;
}
export class Resource$V1beta1 {
context: APIRequestContext;
constructor(context: APIRequestContext);
/**
* alertcenter.getSettings
* @desc Returns customer-level settings.
* @alias alertcenter.getSettings
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string=} params.customerId Optional. The unique identifier of the G Suite organization account of the customer the alert settings are associated with. Inferred from the caller identity if not provided.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
getSettings(params?: Params$Resource$V1beta1$Getsettings, options?: MethodOptions): GaxiosPromise<Schema$Settings>;
getSettings(params: Params$Resource$V1beta1$Getsettings, options: MethodOptions | BodyResponseCallback<Schema$Settings>, callback: BodyResponseCallback<Schema$Settings>): void;
getSettings(params: Params$Resource$V1beta1$Getsettings, callback: BodyResponseCallback<Schema$Settings>): void;
getSettings(callback: BodyResponseCallback<Schema$Settings>): void;
/**
* alertcenter.updateSettings
* @desc Updates the customer-level settings.
* @alias alertcenter.updateSettings
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string=} params.customerId Optional. The unique identifier of the G Suite organization account of the customer the alert settings are associated with. Inferred from the caller identity if not provided.
* @param {().Settings} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
updateSettings(params?: Params$Resource$V1beta1$Updatesettings, options?: MethodOptions): GaxiosPromise<Schema$Settings>;
updateSettings(params: Params$Resource$V1beta1$Updatesettings, options: MethodOptions | BodyResponseCallback<Schema$Settings>, callback: BodyResponseCallback<Schema$Settings>): void;
updateSettings(params: Params$Resource$V1beta1$Updatesettings, callback: BodyResponseCallback<Schema$Settings>): void;
updateSettings(callback: BodyResponseCallback<Schema$Settings>): void;
}
export interface Params$Resource$V1beta1$Getsettings extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Optional. The unique identifier of the G Suite organization account of the customer the alert settings are associated with. Inferred from the caller identity if not provided.
*/
customerId?: string;
}
export interface Params$Resource$V1beta1$Updatesettings extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Optional. The unique identifier of the G Suite organization account of the customer the alert settings are associated with. Inferred from the caller identity if not provided.
*/
customerId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$Settings;
}
export {};
}