google-apis-admin_reports_v1 0.33.0 → 0.34.0
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1d7e974889eddbb4188a2c0fff9b8a2f1938066b210c03c732493b76fc7c531a
|
|
4
|
+
data.tar.gz: 6b40138e7cac65885174deb00adfc6433a2d478e856d035271699c6c415e5b7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37c9124bb19897374d792d6f164396f29969e0f1b2b8a0df0fbaf1ec8df4f1abc13365689701837b055e267954c69d556aa7bda787950ce56e24bf1d87ad95d7
|
|
7
|
+
data.tar.gz: a2ff14e4cac3665113eac084e56fdbbf31508aea99cbd476b1565af8c45e2ac6ad60605dd06b3c9c0d9f75225f8f916eaebfabcab93073f4b0ed30d422f9ff2d
|
data/CHANGELOG.md
CHANGED
|
@@ -240,6 +240,11 @@ module Google
|
|
|
240
240
|
# @return [Array<String>]
|
|
241
241
|
attr_accessor :resource_ids
|
|
242
242
|
|
|
243
|
+
# Includes sensitive parameter value pairs for various applications.
|
|
244
|
+
# Corresponds to the JSON property `sensitiveParameters`
|
|
245
|
+
# @return [Array<Google::Apis::AdminReportsV1::Activity::Event::SensitiveParameter>]
|
|
246
|
+
attr_accessor :sensitive_parameters
|
|
247
|
+
|
|
243
248
|
# Status of the event. Note: Not all events have status.
|
|
244
249
|
# Corresponds to the JSON property `status`
|
|
245
250
|
# @return [Google::Apis::AdminReportsV1::ActivityEventsStatus]
|
|
@@ -262,6 +267,7 @@ module Google
|
|
|
262
267
|
@name = args[:name] if args.key?(:name)
|
|
263
268
|
@parameters = args[:parameters] if args.key?(:parameters)
|
|
264
269
|
@resource_ids = args[:resource_ids] if args.key?(:resource_ids)
|
|
270
|
+
@sensitive_parameters = args[:sensitive_parameters] if args.key?(:sensitive_parameters)
|
|
265
271
|
@status = args[:status] if args.key?(:status)
|
|
266
272
|
@type = args[:type] if args.key?(:type)
|
|
267
273
|
end
|
|
@@ -371,6 +377,112 @@ module Google
|
|
|
371
377
|
end
|
|
372
378
|
end
|
|
373
379
|
end
|
|
380
|
+
|
|
381
|
+
#
|
|
382
|
+
class SensitiveParameter
|
|
383
|
+
include Google::Apis::Core::Hashable
|
|
384
|
+
|
|
385
|
+
# Boolean value of the parameter.
|
|
386
|
+
# Corresponds to the JSON property `boolValue`
|
|
387
|
+
# @return [Boolean]
|
|
388
|
+
attr_accessor :bool_value
|
|
389
|
+
alias_method :bool_value?, :bool_value
|
|
390
|
+
|
|
391
|
+
# Integer value of the parameter.
|
|
392
|
+
# Corresponds to the JSON property `intValue`
|
|
393
|
+
# @return [Fixnum]
|
|
394
|
+
attr_accessor :int_value
|
|
395
|
+
|
|
396
|
+
# Nested parameter value pairs associated with this parameter. Complex value
|
|
397
|
+
# type for a parameter are returned as a list of parameter values. For example,
|
|
398
|
+
# the address parameter may have a value as `[`parameter: [`name: city, value:
|
|
399
|
+
# abc`]`]`
|
|
400
|
+
# Corresponds to the JSON property `messageValue`
|
|
401
|
+
# @return [Google::Apis::AdminReportsV1::Activity::Event::SensitiveParameter::MessageValue]
|
|
402
|
+
attr_accessor :message_value
|
|
403
|
+
|
|
404
|
+
# Integer values of the parameter.
|
|
405
|
+
# Corresponds to the JSON property `multiIntValue`
|
|
406
|
+
# @return [Array<Fixnum>]
|
|
407
|
+
attr_accessor :multi_int_value
|
|
408
|
+
|
|
409
|
+
# List of `messageValue` objects.
|
|
410
|
+
# Corresponds to the JSON property `multiMessageValue`
|
|
411
|
+
# @return [Array<Google::Apis::AdminReportsV1::Activity::Event::SensitiveParameter::MultiMessageValue>]
|
|
412
|
+
attr_accessor :multi_message_value
|
|
413
|
+
|
|
414
|
+
# String values of the parameter.
|
|
415
|
+
# Corresponds to the JSON property `multiValue`
|
|
416
|
+
# @return [Array<String>]
|
|
417
|
+
attr_accessor :multi_value
|
|
418
|
+
|
|
419
|
+
# The name of the parameter.
|
|
420
|
+
# Corresponds to the JSON property `name`
|
|
421
|
+
# @return [String]
|
|
422
|
+
attr_accessor :name
|
|
423
|
+
|
|
424
|
+
# String value of the parameter.
|
|
425
|
+
# Corresponds to the JSON property `value`
|
|
426
|
+
# @return [String]
|
|
427
|
+
attr_accessor :value
|
|
428
|
+
|
|
429
|
+
def initialize(**args)
|
|
430
|
+
update!(**args)
|
|
431
|
+
end
|
|
432
|
+
|
|
433
|
+
# Update properties of this object
|
|
434
|
+
def update!(**args)
|
|
435
|
+
@bool_value = args[:bool_value] if args.key?(:bool_value)
|
|
436
|
+
@int_value = args[:int_value] if args.key?(:int_value)
|
|
437
|
+
@message_value = args[:message_value] if args.key?(:message_value)
|
|
438
|
+
@multi_int_value = args[:multi_int_value] if args.key?(:multi_int_value)
|
|
439
|
+
@multi_message_value = args[:multi_message_value] if args.key?(:multi_message_value)
|
|
440
|
+
@multi_value = args[:multi_value] if args.key?(:multi_value)
|
|
441
|
+
@name = args[:name] if args.key?(:name)
|
|
442
|
+
@value = args[:value] if args.key?(:value)
|
|
443
|
+
end
|
|
444
|
+
|
|
445
|
+
# Nested parameter value pairs associated with this parameter. Complex value
|
|
446
|
+
# type for a parameter are returned as a list of parameter values. For example,
|
|
447
|
+
# the address parameter may have a value as `[`parameter: [`name: city, value:
|
|
448
|
+
# abc`]`]`
|
|
449
|
+
class MessageValue
|
|
450
|
+
include Google::Apis::Core::Hashable
|
|
451
|
+
|
|
452
|
+
# Parameter values
|
|
453
|
+
# Corresponds to the JSON property `parameter`
|
|
454
|
+
# @return [Array<Google::Apis::AdminReportsV1::NestedParameter>]
|
|
455
|
+
attr_accessor :parameter
|
|
456
|
+
|
|
457
|
+
def initialize(**args)
|
|
458
|
+
update!(**args)
|
|
459
|
+
end
|
|
460
|
+
|
|
461
|
+
# Update properties of this object
|
|
462
|
+
def update!(**args)
|
|
463
|
+
@parameter = args[:parameter] if args.key?(:parameter)
|
|
464
|
+
end
|
|
465
|
+
end
|
|
466
|
+
|
|
467
|
+
#
|
|
468
|
+
class MultiMessageValue
|
|
469
|
+
include Google::Apis::Core::Hashable
|
|
470
|
+
|
|
471
|
+
# Parameter values
|
|
472
|
+
# Corresponds to the JSON property `parameter`
|
|
473
|
+
# @return [Array<Google::Apis::AdminReportsV1::NestedParameter>]
|
|
474
|
+
attr_accessor :parameter
|
|
475
|
+
|
|
476
|
+
def initialize(**args)
|
|
477
|
+
update!(**args)
|
|
478
|
+
end
|
|
479
|
+
|
|
480
|
+
# Update properties of this object
|
|
481
|
+
def update!(**args)
|
|
482
|
+
@parameter = args[:parameter] if args.key?(:parameter)
|
|
483
|
+
end
|
|
484
|
+
end
|
|
485
|
+
end
|
|
374
486
|
end
|
|
375
487
|
|
|
376
488
|
# Unique identifier for each activity record.
|
|
@@ -603,6 +715,25 @@ module Google
|
|
|
603
715
|
end
|
|
604
716
|
end
|
|
605
717
|
|
|
718
|
+
# Identity of the Google Workspace customer who owns the resource.
|
|
719
|
+
class CustomerIdentity
|
|
720
|
+
include Google::Apis::Core::Hashable
|
|
721
|
+
|
|
722
|
+
# Customer id.
|
|
723
|
+
# Corresponds to the JSON property `id`
|
|
724
|
+
# @return [String]
|
|
725
|
+
attr_accessor :id
|
|
726
|
+
|
|
727
|
+
def initialize(**args)
|
|
728
|
+
update!(**args)
|
|
729
|
+
end
|
|
730
|
+
|
|
731
|
+
# Update properties of this object
|
|
732
|
+
def update!(**args)
|
|
733
|
+
@id = args[:id] if args.key?(:id)
|
|
734
|
+
end
|
|
735
|
+
end
|
|
736
|
+
|
|
606
737
|
# Represents a whole or partial calendar date, such as a birthday. The time of
|
|
607
738
|
# day and time zone are either specified elsewhere or are insignificant. The
|
|
608
739
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
|
@@ -857,6 +988,31 @@ module Google
|
|
|
857
988
|
end
|
|
858
989
|
end
|
|
859
990
|
|
|
991
|
+
# Identity of the group who owns the resource.
|
|
992
|
+
class GroupIdentity
|
|
993
|
+
include Google::Apis::Core::Hashable
|
|
994
|
+
|
|
995
|
+
# Group email.
|
|
996
|
+
# Corresponds to the JSON property `groupEmail`
|
|
997
|
+
# @return [String]
|
|
998
|
+
attr_accessor :group_email
|
|
999
|
+
|
|
1000
|
+
# Group gaia id.
|
|
1001
|
+
# Corresponds to the JSON property `id`
|
|
1002
|
+
# @return [String]
|
|
1003
|
+
attr_accessor :id
|
|
1004
|
+
|
|
1005
|
+
def initialize(**args)
|
|
1006
|
+
update!(**args)
|
|
1007
|
+
end
|
|
1008
|
+
|
|
1009
|
+
# Update properties of this object
|
|
1010
|
+
def update!(**args)
|
|
1011
|
+
@group_email = args[:group_email] if args.key?(:group_email)
|
|
1012
|
+
@id = args[:id] if args.key?(:id)
|
|
1013
|
+
end
|
|
1014
|
+
end
|
|
1015
|
+
|
|
860
1016
|
# JSON template for a parameter used in various reports.
|
|
861
1017
|
class NestedParameter
|
|
862
1018
|
include Google::Apis::Core::Hashable
|
|
@@ -913,6 +1069,62 @@ module Google
|
|
|
913
1069
|
end
|
|
914
1070
|
end
|
|
915
1071
|
|
|
1072
|
+
# Details of the owner of the resource.
|
|
1073
|
+
class OwnerDetails
|
|
1074
|
+
include Google::Apis::Core::Hashable
|
|
1075
|
+
|
|
1076
|
+
# Identity details of the owner(s) of the resource.
|
|
1077
|
+
# Corresponds to the JSON property `ownerIdentity`
|
|
1078
|
+
# @return [Array<Google::Apis::AdminReportsV1::OwnerIdentity>]
|
|
1079
|
+
attr_accessor :owner_identity
|
|
1080
|
+
|
|
1081
|
+
# Type of the owner of the resource.
|
|
1082
|
+
# Corresponds to the JSON property `ownerType`
|
|
1083
|
+
# @return [String]
|
|
1084
|
+
attr_accessor :owner_type
|
|
1085
|
+
|
|
1086
|
+
def initialize(**args)
|
|
1087
|
+
update!(**args)
|
|
1088
|
+
end
|
|
1089
|
+
|
|
1090
|
+
# Update properties of this object
|
|
1091
|
+
def update!(**args)
|
|
1092
|
+
@owner_identity = args[:owner_identity] if args.key?(:owner_identity)
|
|
1093
|
+
@owner_type = args[:owner_type] if args.key?(:owner_type)
|
|
1094
|
+
end
|
|
1095
|
+
end
|
|
1096
|
+
|
|
1097
|
+
# Identity details of the owner of the resource.
|
|
1098
|
+
class OwnerIdentity
|
|
1099
|
+
include Google::Apis::Core::Hashable
|
|
1100
|
+
|
|
1101
|
+
# Identity of the Google Workspace customer who owns the resource.
|
|
1102
|
+
# Corresponds to the JSON property `customerIdentity`
|
|
1103
|
+
# @return [Google::Apis::AdminReportsV1::CustomerIdentity]
|
|
1104
|
+
attr_accessor :customer_identity
|
|
1105
|
+
|
|
1106
|
+
# Identity of the group who owns the resource.
|
|
1107
|
+
# Corresponds to the JSON property `groupIdentity`
|
|
1108
|
+
# @return [Google::Apis::AdminReportsV1::GroupIdentity]
|
|
1109
|
+
attr_accessor :group_identity
|
|
1110
|
+
|
|
1111
|
+
# Identity of the user who owns the resource.
|
|
1112
|
+
# Corresponds to the JSON property `userIdentity`
|
|
1113
|
+
# @return [Google::Apis::AdminReportsV1::UserIdentity]
|
|
1114
|
+
attr_accessor :user_identity
|
|
1115
|
+
|
|
1116
|
+
def initialize(**args)
|
|
1117
|
+
update!(**args)
|
|
1118
|
+
end
|
|
1119
|
+
|
|
1120
|
+
# Update properties of this object
|
|
1121
|
+
def update!(**args)
|
|
1122
|
+
@customer_identity = args[:customer_identity] if args.key?(:customer_identity)
|
|
1123
|
+
@group_identity = args[:group_identity] if args.key?(:group_identity)
|
|
1124
|
+
@user_identity = args[:user_identity] if args.key?(:user_identity)
|
|
1125
|
+
end
|
|
1126
|
+
end
|
|
1127
|
+
|
|
916
1128
|
# The reason why the label/field was applied.
|
|
917
1129
|
class Reason
|
|
918
1130
|
include Google::Apis::Core::Hashable
|
|
@@ -941,11 +1153,18 @@ module Google
|
|
|
941
1153
|
# @return [Array<Google::Apis::AdminReportsV1::AppliedLabel>]
|
|
942
1154
|
attr_accessor :applied_labels
|
|
943
1155
|
|
|
944
|
-
# Identifier of the resource
|
|
1156
|
+
# Identifier of the resource, such as a doc_id for a Drive document, a
|
|
1157
|
+
# conference_id for a Meet conference, or a "gaia_id/rfc2822_message_id" for an
|
|
1158
|
+
# email.
|
|
945
1159
|
# Corresponds to the JSON property `id`
|
|
946
1160
|
# @return [String]
|
|
947
1161
|
attr_accessor :id
|
|
948
1162
|
|
|
1163
|
+
# Details of the owner of the resource.
|
|
1164
|
+
# Corresponds to the JSON property `ownerDetails`
|
|
1165
|
+
# @return [Google::Apis::AdminReportsV1::OwnerDetails]
|
|
1166
|
+
attr_accessor :owner_details
|
|
1167
|
+
|
|
949
1168
|
# Defines relationship of the resource to the events
|
|
950
1169
|
# Corresponds to the JSON property `relation`
|
|
951
1170
|
# @return [String]
|
|
@@ -970,6 +1189,7 @@ module Google
|
|
|
970
1189
|
def update!(**args)
|
|
971
1190
|
@applied_labels = args[:applied_labels] if args.key?(:applied_labels)
|
|
972
1191
|
@id = args[:id] if args.key?(:id)
|
|
1192
|
+
@owner_details = args[:owner_details] if args.key?(:owner_details)
|
|
973
1193
|
@relation = args[:relation] if args.key?(:relation)
|
|
974
1194
|
@title = args[:title] if args.key?(:title)
|
|
975
1195
|
@type = args[:type] if args.key?(:type)
|
|
@@ -1227,6 +1447,31 @@ module Google
|
|
|
1227
1447
|
end
|
|
1228
1448
|
end
|
|
1229
1449
|
end
|
|
1450
|
+
|
|
1451
|
+
# Identity of the user who owns the resource.
|
|
1452
|
+
class UserIdentity
|
|
1453
|
+
include Google::Apis::Core::Hashable
|
|
1454
|
+
|
|
1455
|
+
# User gaia id.
|
|
1456
|
+
# Corresponds to the JSON property `id`
|
|
1457
|
+
# @return [String]
|
|
1458
|
+
attr_accessor :id
|
|
1459
|
+
|
|
1460
|
+
# User email.
|
|
1461
|
+
# Corresponds to the JSON property `userEmail`
|
|
1462
|
+
# @return [String]
|
|
1463
|
+
attr_accessor :user_email
|
|
1464
|
+
|
|
1465
|
+
def initialize(**args)
|
|
1466
|
+
update!(**args)
|
|
1467
|
+
end
|
|
1468
|
+
|
|
1469
|
+
# Update properties of this object
|
|
1470
|
+
def update!(**args)
|
|
1471
|
+
@id = args[:id] if args.key?(:id)
|
|
1472
|
+
@user_email = args[:user_email] if args.key?(:user_email)
|
|
1473
|
+
end
|
|
1474
|
+
end
|
|
1230
1475
|
end
|
|
1231
1476
|
end
|
|
1232
1477
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AdminReportsV1
|
|
18
18
|
# Version of the google-apis-admin_reports_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.34.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260317"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -63,6 +63,24 @@ module Google
|
|
|
63
63
|
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
|
65
65
|
end
|
|
66
|
+
|
|
67
|
+
class SensitiveParameter
|
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
|
+
|
|
70
|
+
class MessageValue
|
|
71
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
72
|
+
|
|
73
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
class MultiMessageValue
|
|
77
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
78
|
+
|
|
79
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
83
|
+
end
|
|
66
84
|
|
|
67
85
|
include Google::Apis::Core::JsonObjectSupport
|
|
68
86
|
end
|
|
@@ -100,6 +118,12 @@ module Google
|
|
|
100
118
|
include Google::Apis::Core::JsonObjectSupport
|
|
101
119
|
end
|
|
102
120
|
|
|
121
|
+
class CustomerIdentity
|
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
123
|
+
|
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
125
|
+
end
|
|
126
|
+
|
|
103
127
|
class Date
|
|
104
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
105
129
|
|
|
@@ -142,12 +166,30 @@ module Google
|
|
|
142
166
|
include Google::Apis::Core::JsonObjectSupport
|
|
143
167
|
end
|
|
144
168
|
|
|
169
|
+
class GroupIdentity
|
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
171
|
+
|
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
173
|
+
end
|
|
174
|
+
|
|
145
175
|
class NestedParameter
|
|
146
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
147
177
|
|
|
148
178
|
include Google::Apis::Core::JsonObjectSupport
|
|
149
179
|
end
|
|
150
180
|
|
|
181
|
+
class OwnerDetails
|
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
|
+
|
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
class OwnerIdentity
|
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
|
+
|
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
191
|
+
end
|
|
192
|
+
|
|
151
193
|
class Reason
|
|
152
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
153
195
|
|
|
@@ -196,6 +238,12 @@ module Google
|
|
|
196
238
|
include Google::Apis::Core::JsonObjectSupport
|
|
197
239
|
end
|
|
198
240
|
|
|
241
|
+
class UserIdentity
|
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
243
|
+
|
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
245
|
+
end
|
|
246
|
+
|
|
199
247
|
class Activities
|
|
200
248
|
# @private
|
|
201
249
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -254,6 +302,8 @@ module Google
|
|
|
254
302
|
collection :parameters, as: 'parameters', class: Google::Apis::AdminReportsV1::Activity::Event::Parameter, decorator: Google::Apis::AdminReportsV1::Activity::Event::Parameter::Representation
|
|
255
303
|
|
|
256
304
|
collection :resource_ids, as: 'resourceIds'
|
|
305
|
+
collection :sensitive_parameters, as: 'sensitiveParameters', class: Google::Apis::AdminReportsV1::Activity::Event::SensitiveParameter, decorator: Google::Apis::AdminReportsV1::Activity::Event::SensitiveParameter::Representation
|
|
306
|
+
|
|
257
307
|
property :status, as: 'status', class: Google::Apis::AdminReportsV1::ActivityEventsStatus, decorator: Google::Apis::AdminReportsV1::ActivityEventsStatus::Representation
|
|
258
308
|
|
|
259
309
|
property :type, as: 'type'
|
|
@@ -290,6 +340,38 @@ module Google
|
|
|
290
340
|
end
|
|
291
341
|
end
|
|
292
342
|
end
|
|
343
|
+
|
|
344
|
+
class SensitiveParameter
|
|
345
|
+
# @private
|
|
346
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
347
|
+
property :bool_value, as: 'boolValue'
|
|
348
|
+
property :int_value, :numeric_string => true, as: 'intValue'
|
|
349
|
+
property :message_value, as: 'messageValue', class: Google::Apis::AdminReportsV1::Activity::Event::SensitiveParameter::MessageValue, decorator: Google::Apis::AdminReportsV1::Activity::Event::SensitiveParameter::MessageValue::Representation
|
|
350
|
+
|
|
351
|
+
collection :multi_int_value, as: 'multiIntValue'
|
|
352
|
+
collection :multi_message_value, as: 'multiMessageValue', class: Google::Apis::AdminReportsV1::Activity::Event::SensitiveParameter::MultiMessageValue, decorator: Google::Apis::AdminReportsV1::Activity::Event::SensitiveParameter::MultiMessageValue::Representation
|
|
353
|
+
|
|
354
|
+
collection :multi_value, as: 'multiValue'
|
|
355
|
+
property :name, as: 'name'
|
|
356
|
+
property :value, as: 'value'
|
|
357
|
+
end
|
|
358
|
+
|
|
359
|
+
class MessageValue
|
|
360
|
+
# @private
|
|
361
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
362
|
+
collection :parameter, as: 'parameter', class: Google::Apis::AdminReportsV1::NestedParameter, decorator: Google::Apis::AdminReportsV1::NestedParameter::Representation
|
|
363
|
+
|
|
364
|
+
end
|
|
365
|
+
end
|
|
366
|
+
|
|
367
|
+
class MultiMessageValue
|
|
368
|
+
# @private
|
|
369
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
370
|
+
collection :parameter, as: 'parameter', class: Google::Apis::AdminReportsV1::NestedParameter, decorator: Google::Apis::AdminReportsV1::NestedParameter::Representation
|
|
371
|
+
|
|
372
|
+
end
|
|
373
|
+
end
|
|
374
|
+
end
|
|
293
375
|
end
|
|
294
376
|
|
|
295
377
|
class Id
|
|
@@ -351,6 +433,13 @@ module Google
|
|
|
351
433
|
end
|
|
352
434
|
end
|
|
353
435
|
|
|
436
|
+
class CustomerIdentity
|
|
437
|
+
# @private
|
|
438
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
439
|
+
property :id, as: 'id'
|
|
440
|
+
end
|
|
441
|
+
end
|
|
442
|
+
|
|
354
443
|
class Date
|
|
355
444
|
# @private
|
|
356
445
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -426,6 +515,14 @@ module Google
|
|
|
426
515
|
end
|
|
427
516
|
end
|
|
428
517
|
|
|
518
|
+
class GroupIdentity
|
|
519
|
+
# @private
|
|
520
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
521
|
+
property :group_email, as: 'groupEmail'
|
|
522
|
+
property :id, as: 'id'
|
|
523
|
+
end
|
|
524
|
+
end
|
|
525
|
+
|
|
429
526
|
class NestedParameter
|
|
430
527
|
# @private
|
|
431
528
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -439,6 +536,27 @@ module Google
|
|
|
439
536
|
end
|
|
440
537
|
end
|
|
441
538
|
|
|
539
|
+
class OwnerDetails
|
|
540
|
+
# @private
|
|
541
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
542
|
+
collection :owner_identity, as: 'ownerIdentity', class: Google::Apis::AdminReportsV1::OwnerIdentity, decorator: Google::Apis::AdminReportsV1::OwnerIdentity::Representation
|
|
543
|
+
|
|
544
|
+
property :owner_type, as: 'ownerType'
|
|
545
|
+
end
|
|
546
|
+
end
|
|
547
|
+
|
|
548
|
+
class OwnerIdentity
|
|
549
|
+
# @private
|
|
550
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
551
|
+
property :customer_identity, as: 'customerIdentity', class: Google::Apis::AdminReportsV1::CustomerIdentity, decorator: Google::Apis::AdminReportsV1::CustomerIdentity::Representation
|
|
552
|
+
|
|
553
|
+
property :group_identity, as: 'groupIdentity', class: Google::Apis::AdminReportsV1::GroupIdentity, decorator: Google::Apis::AdminReportsV1::GroupIdentity::Representation
|
|
554
|
+
|
|
555
|
+
property :user_identity, as: 'userIdentity', class: Google::Apis::AdminReportsV1::UserIdentity, decorator: Google::Apis::AdminReportsV1::UserIdentity::Representation
|
|
556
|
+
|
|
557
|
+
end
|
|
558
|
+
end
|
|
559
|
+
|
|
442
560
|
class Reason
|
|
443
561
|
# @private
|
|
444
562
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -452,6 +570,8 @@ module Google
|
|
|
452
570
|
collection :applied_labels, as: 'appliedLabels', class: Google::Apis::AdminReportsV1::AppliedLabel, decorator: Google::Apis::AdminReportsV1::AppliedLabel::Representation
|
|
453
571
|
|
|
454
572
|
property :id, as: 'id'
|
|
573
|
+
property :owner_details, as: 'ownerDetails', class: Google::Apis::AdminReportsV1::OwnerDetails, decorator: Google::Apis::AdminReportsV1::OwnerDetails::Representation
|
|
574
|
+
|
|
455
575
|
property :relation, as: 'relation'
|
|
456
576
|
property :title, as: 'title'
|
|
457
577
|
property :type, as: 'type'
|
|
@@ -525,6 +645,14 @@ module Google
|
|
|
525
645
|
end
|
|
526
646
|
end
|
|
527
647
|
end
|
|
648
|
+
|
|
649
|
+
class UserIdentity
|
|
650
|
+
# @private
|
|
651
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
652
|
+
property :id, as: 'id'
|
|
653
|
+
property :user_email, as: 'userEmail'
|
|
654
|
+
end
|
|
655
|
+
end
|
|
528
656
|
end
|
|
529
657
|
end
|
|
530
658
|
end
|
|
@@ -141,6 +141,11 @@ module Google
|
|
|
141
141
|
# filtering groups allowlist. For more information about adding groups to
|
|
142
142
|
# filtering groups allowlist, see [Filter results by Google Group](https://
|
|
143
143
|
# support.google.com/a/answer/11482175)
|
|
144
|
+
# @param [Boolean] include_sensitive_data
|
|
145
|
+
# Optional. When set to `true`, this field allows sensitive user-generated
|
|
146
|
+
# content to be included in the returned audit logs. This parameter is supported
|
|
147
|
+
# only for Rules (DLP) and Chat applications; using it with any other
|
|
148
|
+
# application will result in a permission error.
|
|
144
149
|
# @param [Fixnum] max_results
|
|
145
150
|
# Determines how many activity records are shown on each response page. For
|
|
146
151
|
# example, if the request sets `maxResults=1` and the report has two activities,
|
|
@@ -227,7 +232,7 @@ module Google
|
|
|
227
232
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
228
233
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
229
234
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
230
|
-
def list_activities(user_key, application_name, actor_ip_address: nil, application_info_filter: nil, customer_id: nil, end_time: nil, event_name: nil, filters: nil, group_id_filter: nil, max_results: nil, network_info_filter: nil, org_unit_id: nil, page_token: nil, resource_details_filter: nil, start_time: nil, status_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
235
|
+
def list_activities(user_key, application_name, actor_ip_address: nil, application_info_filter: nil, customer_id: nil, end_time: nil, event_name: nil, filters: nil, group_id_filter: nil, include_sensitive_data: nil, max_results: nil, network_info_filter: nil, org_unit_id: nil, page_token: nil, resource_details_filter: nil, start_time: nil, status_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
231
236
|
command = make_simple_command(:get, 'admin/reports/v1/activity/users/{userKey}/applications/{applicationName}', options)
|
|
232
237
|
command.response_representation = Google::Apis::AdminReportsV1::Activities::Representation
|
|
233
238
|
command.response_class = Google::Apis::AdminReportsV1::Activities
|
|
@@ -240,6 +245,7 @@ module Google
|
|
|
240
245
|
command.query['eventName'] = event_name unless event_name.nil?
|
|
241
246
|
command.query['filters'] = filters unless filters.nil?
|
|
242
247
|
command.query['groupIdFilter'] = group_id_filter unless group_id_filter.nil?
|
|
248
|
+
command.query['includeSensitiveData'] = include_sensitive_data unless include_sensitive_data.nil?
|
|
243
249
|
command.query['maxResults'] = max_results unless max_results.nil?
|
|
244
250
|
command.query['networkInfoFilter'] = network_info_filter unless network_info_filter.nil?
|
|
245
251
|
command.query['orgUnitID'] = org_unit_id unless org_unit_id.nil?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-admin_reports_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.34.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admin_reports_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-admin_reports_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-admin_reports_v1/v0.34.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-admin_reports_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|