@maxim_mazurok/gapi.client.admin-reports_v1 0.2.20260316 → 0.2.20260324
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +53 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://admin.googleapis.com/$discovery/rest?version=reports_v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260324
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -92,6 +92,31 @@ declare namespace gapi.client {
|
|
|
92
92
|
}>;
|
|
93
93
|
/** Resource ids associated with the event. */
|
|
94
94
|
resourceIds?: string[];
|
|
95
|
+
/** Includes sensitive parameter value pairs for various applications. */
|
|
96
|
+
sensitiveParameters?: Array<{
|
|
97
|
+
/** Boolean value of the parameter. */
|
|
98
|
+
boolValue?: boolean;
|
|
99
|
+
/** Integer value of the parameter. */
|
|
100
|
+
intValue?: string;
|
|
101
|
+
/** Nested parameter value pairs associated with this parameter. Complex value type for a parameter are returned as a list of parameter values. For example, the address parameter may have a value as `[{parameter: [{name: city, value: abc}]}]` */
|
|
102
|
+
messageValue?: {
|
|
103
|
+
/** Parameter values */
|
|
104
|
+
parameter?: NestedParameter[];
|
|
105
|
+
};
|
|
106
|
+
/** Integer values of the parameter. */
|
|
107
|
+
multiIntValue?: string[];
|
|
108
|
+
/** List of `messageValue` objects. */
|
|
109
|
+
multiMessageValue?: Array<{
|
|
110
|
+
/** Parameter values */
|
|
111
|
+
parameter?: NestedParameter[];
|
|
112
|
+
}>;
|
|
113
|
+
/** String values of the parameter. */
|
|
114
|
+
multiValue?: string[];
|
|
115
|
+
/** The name of the parameter. */
|
|
116
|
+
name?: string;
|
|
117
|
+
/** String value of the parameter. */
|
|
118
|
+
value?: string;
|
|
119
|
+
}>;
|
|
95
120
|
/** Status of the event. Note: Not all events have status. */
|
|
96
121
|
status?: ActivityEventsStatus;
|
|
97
122
|
/** Type of event. The Google Workspace service or feature that an administrator changes is identified in the `type` property which identifies an event using the `eventName` property. For a full list of the API's `type` categories, see the list of event names for various applications above in `applicationName`. */
|
|
@@ -479,6 +504,31 @@ declare namespace gapi.client {
|
|
|
479
504
|
}>;
|
|
480
505
|
/** Resource ids associated with the event. */
|
|
481
506
|
resourceIds?: string[];
|
|
507
|
+
/** Includes sensitive parameter value pairs for various applications. */
|
|
508
|
+
sensitiveParameters?: Array<{
|
|
509
|
+
/** Boolean value of the parameter. */
|
|
510
|
+
boolValue?: boolean;
|
|
511
|
+
/** Integer value of the parameter. */
|
|
512
|
+
intValue?: string;
|
|
513
|
+
/** Nested parameter value pairs associated with this parameter. Complex value type for a parameter are returned as a list of parameter values. For example, the address parameter may have a value as `[{parameter: [{name: city, value: abc}]}]` */
|
|
514
|
+
messageValue?: {
|
|
515
|
+
/** Parameter values */
|
|
516
|
+
parameter?: NestedParameter[];
|
|
517
|
+
};
|
|
518
|
+
/** Integer values of the parameter. */
|
|
519
|
+
multiIntValue?: string[];
|
|
520
|
+
/** List of `messageValue` objects. */
|
|
521
|
+
multiMessageValue?: Array<{
|
|
522
|
+
/** Parameter values */
|
|
523
|
+
parameter?: NestedParameter[];
|
|
524
|
+
}>;
|
|
525
|
+
/** String values of the parameter. */
|
|
526
|
+
multiValue?: string[];
|
|
527
|
+
/** The name of the parameter. */
|
|
528
|
+
name?: string;
|
|
529
|
+
/** String value of the parameter. */
|
|
530
|
+
value?: string;
|
|
531
|
+
}>;
|
|
482
532
|
/** Status of the event. Note: Not all events have status. */
|
|
483
533
|
status?: ActivityEventsStatus;
|
|
484
534
|
/** Type of event. The Google Workspace service or feature that an administrator changes is identified in the `type` property which identifies an event using the `eventName` property. For a full list of the API's `type` categories, see the list of event names for various applications above in `applicationName`. */
|
|
@@ -809,6 +859,8 @@ declare namespace gapi.client {
|
|
|
809
859
|
filters?: string;
|
|
810
860
|
/** Comma separated group ids (obfuscated) on which user activities are filtered, i.e. the response will contain activities for only those users that are a part of at least one of the group ids mentioned here. Format: "id:abc123,id:xyz456" *Important:* To filter by groups, you must explicitly add the groups to your filtering groups allowlist. For more information about adding groups to filtering groups allowlist, see [Filter results by Google Group](https://support.google.com/a/answer/11482175) */
|
|
811
861
|
groupIdFilter?: string;
|
|
862
|
+
/** Optional. When set to `true`, this field allows sensitive user-generated content to be included in the returned audit logs. This parameter is supported only for Rules (DLP) and Chat applications; using it with any other application will result in a permission error. */
|
|
863
|
+
includeSensitiveData?: boolean;
|
|
812
864
|
/** 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. */
|
|
813
865
|
key?: string;
|
|
814
866
|
/** Determines how many activity records are shown on each response page. For example, if the request sets `maxResults=1` and the report has two activities, the report has two pages. The response's `nextPageToken` property has the token to the second page. The `maxResults` query string is optional in the request. The default value is 1000. */
|