google-apis-driveactivity_v2 0.12.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12b6b0dd0a1d22a7269f6ceb5c2ce13bfb070dd6da68accaec1af0189c23167d
|
4
|
+
data.tar.gz: 0101f075e8c5c99ba833c19e2b144bdae0ca6a367d2959e1318e45090c694060
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 20568abdcd3fb1bdd351a0c3cd6077737bcefe977ce579efeaa659c3057af83a6c2f53611750cfc73898dcd18e685671383e04911e839548f9c69f1ef879bacb
|
7
|
+
data.tar.gz: c700b3c9f81ddd02553c73b1087396a096ec6aa4172d70176f4189302d85d49886f6c9f45e32fb1aa21d31f40592c5a0a15b3bfe7b5aa4fd0dc1818f5c512a64
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-driveactivity_v2
|
2
2
|
|
3
|
+
### v0.14.0 (2022-10-28)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.11.0
|
6
|
+
|
7
|
+
### v0.13.0 (2022-10-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220926
|
10
|
+
|
3
11
|
### v0.12.0 (2022-09-23)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.10.0
|
@@ -69,6 +69,11 @@ module Google
|
|
69
69
|
class ActionDetail
|
70
70
|
include Google::Apis::Core::Hashable
|
71
71
|
|
72
|
+
# Label changes that were made on the Target.
|
73
|
+
# Corresponds to the JSON property `appliedLabelChange`
|
74
|
+
# @return [Google::Apis::DriveactivityV2::AppliedLabelChange]
|
75
|
+
attr_accessor :applied_label_change
|
76
|
+
|
72
77
|
# A change about comments on an object.
|
73
78
|
# Corresponds to the JSON property `comment`
|
74
79
|
# @return [Google::Apis::DriveactivityV2::Comment]
|
@@ -130,6 +135,7 @@ module Google
|
|
130
135
|
|
131
136
|
# Update properties of this object
|
132
137
|
def update!(**args)
|
138
|
+
@applied_label_change = args[:applied_label_change] if args.key?(:applied_label_change)
|
133
139
|
@comment = args[:comment] if args.key?(:comment)
|
134
140
|
@create = args[:create] if args.key?(:create)
|
135
141
|
@delete = args[:delete] if args.key?(:delete)
|
@@ -248,6 +254,64 @@ module Google
|
|
248
254
|
end
|
249
255
|
end
|
250
256
|
|
257
|
+
# Label changes that were made on the Target.
|
258
|
+
class AppliedLabelChange
|
259
|
+
include Google::Apis::Core::Hashable
|
260
|
+
|
261
|
+
# Changes that were made to the Label on the Target.
|
262
|
+
# Corresponds to the JSON property `changes`
|
263
|
+
# @return [Array<Google::Apis::DriveactivityV2::AppliedLabelChangeDetail>]
|
264
|
+
attr_accessor :changes
|
265
|
+
|
266
|
+
def initialize(**args)
|
267
|
+
update!(**args)
|
268
|
+
end
|
269
|
+
|
270
|
+
# Update properties of this object
|
271
|
+
def update!(**args)
|
272
|
+
@changes = args[:changes] if args.key?(:changes)
|
273
|
+
end
|
274
|
+
end
|
275
|
+
|
276
|
+
# A change made to a Label on the Target.
|
277
|
+
class AppliedLabelChangeDetail
|
278
|
+
include Google::Apis::Core::Hashable
|
279
|
+
|
280
|
+
# Field Changes. Only present if `types` contains `LABEL_FIELD_VALUE_CHANGED`.
|
281
|
+
# Corresponds to the JSON property `fieldChanges`
|
282
|
+
# @return [Array<Google::Apis::DriveactivityV2::FieldValueChange>]
|
283
|
+
attr_accessor :field_changes
|
284
|
+
|
285
|
+
# The Label name representing the Label that changed. This name always contains
|
286
|
+
# the revision of the Label that was used when this Action occurred. The format
|
287
|
+
# is `labels/id@revision`.
|
288
|
+
# Corresponds to the JSON property `label`
|
289
|
+
# @return [String]
|
290
|
+
attr_accessor :label
|
291
|
+
|
292
|
+
# The human-readable title of the label that changed.
|
293
|
+
# Corresponds to the JSON property `title`
|
294
|
+
# @return [String]
|
295
|
+
attr_accessor :title
|
296
|
+
|
297
|
+
# The types of changes made to the Label on the Target.
|
298
|
+
# Corresponds to the JSON property `types`
|
299
|
+
# @return [Array<String>]
|
300
|
+
attr_accessor :types
|
301
|
+
|
302
|
+
def initialize(**args)
|
303
|
+
update!(**args)
|
304
|
+
end
|
305
|
+
|
306
|
+
# Update properties of this object
|
307
|
+
def update!(**args)
|
308
|
+
@field_changes = args[:field_changes] if args.key?(:field_changes)
|
309
|
+
@label = args[:label] if args.key?(:label)
|
310
|
+
@title = args[:title] if args.key?(:title)
|
311
|
+
@types = args[:types] if args.key?(:types)
|
312
|
+
end
|
313
|
+
end
|
314
|
+
|
251
315
|
# A comment with an assignment.
|
252
316
|
class Assignment
|
253
317
|
include Google::Apis::Core::Hashable
|
@@ -412,6 +476,25 @@ module Google
|
|
412
476
|
end
|
413
477
|
end
|
414
478
|
|
479
|
+
# Wrapper for Date Field value.
|
480
|
+
class Date
|
481
|
+
include Google::Apis::Core::Hashable
|
482
|
+
|
483
|
+
# Date value.
|
484
|
+
# Corresponds to the JSON property `value`
|
485
|
+
# @return [String]
|
486
|
+
attr_accessor :value
|
487
|
+
|
488
|
+
def initialize(**args)
|
489
|
+
update!(**args)
|
490
|
+
end
|
491
|
+
|
492
|
+
# Update properties of this object
|
493
|
+
def update!(**args)
|
494
|
+
@value = args[:value] if args.key?(:value)
|
495
|
+
end
|
496
|
+
end
|
497
|
+
|
415
498
|
# An object was deleted.
|
416
499
|
class Delete
|
417
500
|
include Google::Apis::Core::Hashable
|
@@ -738,6 +821,105 @@ module Google
|
|
738
821
|
end
|
739
822
|
end
|
740
823
|
|
824
|
+
# Contains a value of a Field.
|
825
|
+
class FieldValue
|
826
|
+
include Google::Apis::Core::Hashable
|
827
|
+
|
828
|
+
# Wrapper for Date Field value.
|
829
|
+
# Corresponds to the JSON property `date`
|
830
|
+
# @return [Google::Apis::DriveactivityV2::Date]
|
831
|
+
attr_accessor :date
|
832
|
+
|
833
|
+
# Wrapper for Integer Field value.
|
834
|
+
# Corresponds to the JSON property `integer`
|
835
|
+
# @return [Google::Apis::DriveactivityV2::Integer]
|
836
|
+
attr_accessor :integer
|
837
|
+
|
838
|
+
# Wrapper for Selection Field value as combined value/display_name pair for
|
839
|
+
# selected choice.
|
840
|
+
# Corresponds to the JSON property `selection`
|
841
|
+
# @return [Google::Apis::DriveactivityV2::Selection]
|
842
|
+
attr_accessor :selection
|
843
|
+
|
844
|
+
# Wrapper for SelectionList Field value.
|
845
|
+
# Corresponds to the JSON property `selectionList`
|
846
|
+
# @return [Google::Apis::DriveactivityV2::SelectionList]
|
847
|
+
attr_accessor :selection_list
|
848
|
+
|
849
|
+
# Wrapper for Text Field value.
|
850
|
+
# Corresponds to the JSON property `text`
|
851
|
+
# @return [Google::Apis::DriveactivityV2::Text]
|
852
|
+
attr_accessor :text
|
853
|
+
|
854
|
+
# Wrapper for Text List Field value.
|
855
|
+
# Corresponds to the JSON property `textList`
|
856
|
+
# @return [Google::Apis::DriveactivityV2::TextList]
|
857
|
+
attr_accessor :text_list
|
858
|
+
|
859
|
+
# Wrapper for User Field value.
|
860
|
+
# Corresponds to the JSON property `user`
|
861
|
+
# @return [Google::Apis::DriveactivityV2::SingleUser]
|
862
|
+
attr_accessor :user
|
863
|
+
|
864
|
+
# Wrapper for UserList Field value.
|
865
|
+
# Corresponds to the JSON property `userList`
|
866
|
+
# @return [Google::Apis::DriveactivityV2::UserList]
|
867
|
+
attr_accessor :user_list
|
868
|
+
|
869
|
+
def initialize(**args)
|
870
|
+
update!(**args)
|
871
|
+
end
|
872
|
+
|
873
|
+
# Update properties of this object
|
874
|
+
def update!(**args)
|
875
|
+
@date = args[:date] if args.key?(:date)
|
876
|
+
@integer = args[:integer] if args.key?(:integer)
|
877
|
+
@selection = args[:selection] if args.key?(:selection)
|
878
|
+
@selection_list = args[:selection_list] if args.key?(:selection_list)
|
879
|
+
@text = args[:text] if args.key?(:text)
|
880
|
+
@text_list = args[:text_list] if args.key?(:text_list)
|
881
|
+
@user = args[:user] if args.key?(:user)
|
882
|
+
@user_list = args[:user_list] if args.key?(:user_list)
|
883
|
+
end
|
884
|
+
end
|
885
|
+
|
886
|
+
# Change to a Field value.
|
887
|
+
class FieldValueChange
|
888
|
+
include Google::Apis::Core::Hashable
|
889
|
+
|
890
|
+
# The human-readable display name for this field.
|
891
|
+
# Corresponds to the JSON property `displayName`
|
892
|
+
# @return [String]
|
893
|
+
attr_accessor :display_name
|
894
|
+
|
895
|
+
# The ID of this field. Field IDs are unique within a Label.
|
896
|
+
# Corresponds to the JSON property `fieldId`
|
897
|
+
# @return [String]
|
898
|
+
attr_accessor :field_id
|
899
|
+
|
900
|
+
# Contains a value of a Field.
|
901
|
+
# Corresponds to the JSON property `newValue`
|
902
|
+
# @return [Google::Apis::DriveactivityV2::FieldValue]
|
903
|
+
attr_accessor :new_value
|
904
|
+
|
905
|
+
# Contains a value of a Field.
|
906
|
+
# Corresponds to the JSON property `oldValue`
|
907
|
+
# @return [Google::Apis::DriveactivityV2::FieldValue]
|
908
|
+
attr_accessor :old_value
|
909
|
+
|
910
|
+
def initialize(**args)
|
911
|
+
update!(**args)
|
912
|
+
end
|
913
|
+
|
914
|
+
# Update properties of this object
|
915
|
+
def update!(**args)
|
916
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
917
|
+
@field_id = args[:field_id] if args.key?(:field_id)
|
918
|
+
@new_value = args[:new_value] if args.key?(:new_value)
|
919
|
+
@old_value = args[:old_value] if args.key?(:old_value)
|
920
|
+
end
|
921
|
+
end
|
922
|
+
|
741
923
|
# This item is deprecated; please see `DriveFile` instead.
|
742
924
|
class File
|
743
925
|
include Google::Apis::Core::Hashable
|
@@ -858,6 +1040,25 @@ module Google
|
|
858
1040
|
end
|
859
1041
|
end
|
860
1042
|
|
1043
|
+
# Wrapper for Integer Field value.
|
1044
|
+
class Integer
|
1045
|
+
include Google::Apis::Core::Hashable
|
1046
|
+
|
1047
|
+
# Integer value.
|
1048
|
+
# Corresponds to the JSON property `value`
|
1049
|
+
# @return [Fixnum]
|
1050
|
+
attr_accessor :value
|
1051
|
+
|
1052
|
+
def initialize(**args)
|
1053
|
+
update!(**args)
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
# Update properties of this object
|
1057
|
+
def update!(**args)
|
1058
|
+
@value = args[:value] if args.key?(:value)
|
1059
|
+
end
|
1060
|
+
end
|
1061
|
+
|
861
1062
|
# A known user.
|
862
1063
|
class KnownUser
|
863
1064
|
include Google::Apis::Core::Hashable
|
@@ -1251,6 +1452,51 @@ module Google
|
|
1251
1452
|
end
|
1252
1453
|
end
|
1253
1454
|
|
1455
|
+
# Wrapper for Selection Field value as combined value/display_name pair for
|
1456
|
+
# selected choice.
|
1457
|
+
class Selection
|
1458
|
+
include Google::Apis::Core::Hashable
|
1459
|
+
|
1460
|
+
# Selection value as human-readable display string.
|
1461
|
+
# Corresponds to the JSON property `displayName`
|
1462
|
+
# @return [String]
|
1463
|
+
attr_accessor :display_name
|
1464
|
+
|
1465
|
+
# Selection value as Field Choice ID.
|
1466
|
+
# Corresponds to the JSON property `value`
|
1467
|
+
# @return [String]
|
1468
|
+
attr_accessor :value
|
1469
|
+
|
1470
|
+
def initialize(**args)
|
1471
|
+
update!(**args)
|
1472
|
+
end
|
1473
|
+
|
1474
|
+
# Update properties of this object
|
1475
|
+
def update!(**args)
|
1476
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
1477
|
+
@value = args[:value] if args.key?(:value)
|
1478
|
+
end
|
1479
|
+
end
|
1480
|
+
|
1481
|
+
# Wrapper for SelectionList Field value.
|
1482
|
+
class SelectionList
|
1483
|
+
include Google::Apis::Core::Hashable
|
1484
|
+
|
1485
|
+
# Selection values.
|
1486
|
+
# Corresponds to the JSON property `values`
|
1487
|
+
# @return [Array<Google::Apis::DriveactivityV2::Selection>]
|
1488
|
+
attr_accessor :values
|
1489
|
+
|
1490
|
+
def initialize(**args)
|
1491
|
+
update!(**args)
|
1492
|
+
end
|
1493
|
+
|
1494
|
+
# Update properties of this object
|
1495
|
+
def update!(**args)
|
1496
|
+
@values = args[:values] if args.key?(:values)
|
1497
|
+
end
|
1498
|
+
end
|
1499
|
+
|
1254
1500
|
# Information about settings changes.
|
1255
1501
|
class SettingsChange
|
1256
1502
|
include Google::Apis::Core::Hashable
|
@@ -1270,6 +1516,25 @@ module Google
|
|
1270
1516
|
end
|
1271
1517
|
end
|
1272
1518
|
|
1519
|
+
# Wrapper for User Field value.
|
1520
|
+
class SingleUser
|
1521
|
+
include Google::Apis::Core::Hashable
|
1522
|
+
|
1523
|
+
# User value as email.
|
1524
|
+
# Corresponds to the JSON property `value`
|
1525
|
+
# @return [String]
|
1526
|
+
attr_accessor :value
|
1527
|
+
|
1528
|
+
def initialize(**args)
|
1529
|
+
update!(**args)
|
1530
|
+
end
|
1531
|
+
|
1532
|
+
# Update properties of this object
|
1533
|
+
def update!(**args)
|
1534
|
+
@value = args[:value] if args.key?(:value)
|
1535
|
+
end
|
1536
|
+
end
|
1537
|
+
|
1273
1538
|
# A suggestion.
|
1274
1539
|
class Suggestion
|
1275
1540
|
include Google::Apis::Core::Hashable
|
@@ -1432,6 +1697,44 @@ module Google
|
|
1432
1697
|
end
|
1433
1698
|
end
|
1434
1699
|
|
1700
|
+
# Wrapper for Text Field value.
|
1701
|
+
class Text
|
1702
|
+
include Google::Apis::Core::Hashable
|
1703
|
+
|
1704
|
+
# Value of Text Field.
|
1705
|
+
# Corresponds to the JSON property `value`
|
1706
|
+
# @return [String]
|
1707
|
+
attr_accessor :value
|
1708
|
+
|
1709
|
+
def initialize(**args)
|
1710
|
+
update!(**args)
|
1711
|
+
end
|
1712
|
+
|
1713
|
+
# Update properties of this object
|
1714
|
+
def update!(**args)
|
1715
|
+
@value = args[:value] if args.key?(:value)
|
1716
|
+
end
|
1717
|
+
end
|
1718
|
+
|
1719
|
+
# Wrapper for Text List Field value.
|
1720
|
+
class TextList
|
1721
|
+
include Google::Apis::Core::Hashable
|
1722
|
+
|
1723
|
+
# Text values.
|
1724
|
+
# Corresponds to the JSON property `values`
|
1725
|
+
# @return [Array<Google::Apis::DriveactivityV2::Text>]
|
1726
|
+
attr_accessor :values
|
1727
|
+
|
1728
|
+
def initialize(**args)
|
1729
|
+
update!(**args)
|
1730
|
+
end
|
1731
|
+
|
1732
|
+
# Update properties of this object
|
1733
|
+
def update!(**args)
|
1734
|
+
@values = args[:values] if args.key?(:values)
|
1735
|
+
end
|
1736
|
+
end
|
1737
|
+
|
1435
1738
|
# Information about time ranges.
|
1436
1739
|
class TimeRange
|
1437
1740
|
include Google::Apis::Core::Hashable
|
@@ -1513,6 +1816,25 @@ module Google
|
|
1513
1816
|
@unknown_user = args[:unknown_user] if args.key?(:unknown_user)
|
1514
1817
|
end
|
1515
1818
|
end
|
1819
|
+
|
1820
|
+
# Wrapper for UserList Field value.
|
1821
|
+
class UserList
|
1822
|
+
include Google::Apis::Core::Hashable
|
1823
|
+
|
1824
|
+
# User values.
|
1825
|
+
# Corresponds to the JSON property `values`
|
1826
|
+
# @return [Array<Google::Apis::DriveactivityV2::SingleUser>]
|
1827
|
+
attr_accessor :values
|
1828
|
+
|
1829
|
+
def initialize(**args)
|
1830
|
+
update!(**args)
|
1831
|
+
end
|
1832
|
+
|
1833
|
+
# Update properties of this object
|
1834
|
+
def update!(**args)
|
1835
|
+
@values = args[:values] if args.key?(:values)
|
1836
|
+
end
|
1837
|
+
end
|
1516
1838
|
end
|
1517
1839
|
end
|
1518
1840
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DriveactivityV2
|
18
18
|
# Version of the google-apis-driveactivity_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220926"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,18 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class AppliedLabelChange
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
73
|
+
class AppliedLabelChangeDetail
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
67
79
|
class Assignment
|
68
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
81
|
|
@@ -100,6 +112,12 @@ module Google
|
|
100
112
|
include Google::Apis::Core::JsonObjectSupport
|
101
113
|
end
|
102
114
|
|
115
|
+
class Date
|
116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
|
+
|
118
|
+
include Google::Apis::Core::JsonObjectSupport
|
119
|
+
end
|
120
|
+
|
103
121
|
class Delete
|
104
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
123
|
|
@@ -166,6 +184,18 @@ module Google
|
|
166
184
|
include Google::Apis::Core::JsonObjectSupport
|
167
185
|
end
|
168
186
|
|
187
|
+
class FieldValue
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
193
|
+
class FieldValueChange
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
169
199
|
class File
|
170
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
201
|
|
@@ -196,6 +226,12 @@ module Google
|
|
196
226
|
include Google::Apis::Core::JsonObjectSupport
|
197
227
|
end
|
198
228
|
|
229
|
+
class Integer
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
199
235
|
class KnownUser
|
200
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
237
|
|
@@ -280,12 +316,30 @@ module Google
|
|
280
316
|
include Google::Apis::Core::JsonObjectSupport
|
281
317
|
end
|
282
318
|
|
319
|
+
class Selection
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
325
|
+
class SelectionList
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
283
331
|
class SettingsChange
|
284
332
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
333
|
|
286
334
|
include Google::Apis::Core::JsonObjectSupport
|
287
335
|
end
|
288
336
|
|
337
|
+
class SingleUser
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
289
343
|
class Suggestion
|
290
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
345
|
|
@@ -322,6 +376,18 @@ module Google
|
|
322
376
|
include Google::Apis::Core::JsonObjectSupport
|
323
377
|
end
|
324
378
|
|
379
|
+
class Text
|
380
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
|
+
|
382
|
+
include Google::Apis::Core::JsonObjectSupport
|
383
|
+
end
|
384
|
+
|
385
|
+
class TextList
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
325
391
|
class TimeRange
|
326
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
393
|
|
@@ -346,6 +412,12 @@ module Google
|
|
346
412
|
include Google::Apis::Core::JsonObjectSupport
|
347
413
|
end
|
348
414
|
|
415
|
+
class UserList
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
349
421
|
class Action
|
350
422
|
# @private
|
351
423
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -364,6 +436,8 @@ module Google
|
|
364
436
|
class ActionDetail
|
365
437
|
# @private
|
366
438
|
class Representation < Google::Apis::Core::JsonRepresentation
|
439
|
+
property :applied_label_change, as: 'appliedLabelChange', class: Google::Apis::DriveactivityV2::AppliedLabelChange, decorator: Google::Apis::DriveactivityV2::AppliedLabelChange::Representation
|
440
|
+
|
367
441
|
property :comment, as: 'comment', class: Google::Apis::DriveactivityV2::Comment, decorator: Google::Apis::DriveactivityV2::Comment::Representation
|
368
442
|
|
369
443
|
property :create, as: 'create', class: Google::Apis::DriveactivityV2::Create, decorator: Google::Apis::DriveactivityV2::Create::Representation
|
@@ -430,6 +504,25 @@ module Google
|
|
430
504
|
end
|
431
505
|
end
|
432
506
|
|
507
|
+
class AppliedLabelChange
|
508
|
+
# @private
|
509
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
510
|
+
collection :changes, as: 'changes', class: Google::Apis::DriveactivityV2::AppliedLabelChangeDetail, decorator: Google::Apis::DriveactivityV2::AppliedLabelChangeDetail::Representation
|
511
|
+
|
512
|
+
end
|
513
|
+
end
|
514
|
+
|
515
|
+
class AppliedLabelChangeDetail
|
516
|
+
# @private
|
517
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
518
|
+
collection :field_changes, as: 'fieldChanges', class: Google::Apis::DriveactivityV2::FieldValueChange, decorator: Google::Apis::DriveactivityV2::FieldValueChange::Representation
|
519
|
+
|
520
|
+
property :label, as: 'label'
|
521
|
+
property :title, as: 'title'
|
522
|
+
collection :types, as: 'types'
|
523
|
+
end
|
524
|
+
end
|
525
|
+
|
433
526
|
class Assignment
|
434
527
|
# @private
|
435
528
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -490,6 +583,13 @@ module Google
|
|
490
583
|
end
|
491
584
|
end
|
492
585
|
|
586
|
+
class Date
|
587
|
+
# @private
|
588
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
589
|
+
property :value, as: 'value'
|
590
|
+
end
|
591
|
+
end
|
592
|
+
|
493
593
|
class Delete
|
494
594
|
# @private
|
495
595
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -600,6 +700,40 @@ module Google
|
|
600
700
|
end
|
601
701
|
end
|
602
702
|
|
703
|
+
class FieldValue
|
704
|
+
# @private
|
705
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
706
|
+
property :date, as: 'date', class: Google::Apis::DriveactivityV2::Date, decorator: Google::Apis::DriveactivityV2::Date::Representation
|
707
|
+
|
708
|
+
property :integer, as: 'integer', class: Google::Apis::DriveactivityV2::Integer, decorator: Google::Apis::DriveactivityV2::Integer::Representation
|
709
|
+
|
710
|
+
property :selection, as: 'selection', class: Google::Apis::DriveactivityV2::Selection, decorator: Google::Apis::DriveactivityV2::Selection::Representation
|
711
|
+
|
712
|
+
property :selection_list, as: 'selectionList', class: Google::Apis::DriveactivityV2::SelectionList, decorator: Google::Apis::DriveactivityV2::SelectionList::Representation
|
713
|
+
|
714
|
+
property :text, as: 'text', class: Google::Apis::DriveactivityV2::Text, decorator: Google::Apis::DriveactivityV2::Text::Representation
|
715
|
+
|
716
|
+
property :text_list, as: 'textList', class: Google::Apis::DriveactivityV2::TextList, decorator: Google::Apis::DriveactivityV2::TextList::Representation
|
717
|
+
|
718
|
+
property :user, as: 'user', class: Google::Apis::DriveactivityV2::SingleUser, decorator: Google::Apis::DriveactivityV2::SingleUser::Representation
|
719
|
+
|
720
|
+
property :user_list, as: 'userList', class: Google::Apis::DriveactivityV2::UserList, decorator: Google::Apis::DriveactivityV2::UserList::Representation
|
721
|
+
|
722
|
+
end
|
723
|
+
end
|
724
|
+
|
725
|
+
class FieldValueChange
|
726
|
+
# @private
|
727
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
728
|
+
property :display_name, as: 'displayName'
|
729
|
+
property :field_id, as: 'fieldId'
|
730
|
+
property :new_value, as: 'newValue', class: Google::Apis::DriveactivityV2::FieldValue, decorator: Google::Apis::DriveactivityV2::FieldValue::Representation
|
731
|
+
|
732
|
+
property :old_value, as: 'oldValue', class: Google::Apis::DriveactivityV2::FieldValue, decorator: Google::Apis::DriveactivityV2::FieldValue::Representation
|
733
|
+
|
734
|
+
end
|
735
|
+
end
|
736
|
+
|
603
737
|
class File
|
604
738
|
# @private
|
605
739
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -640,6 +774,13 @@ module Google
|
|
640
774
|
end
|
641
775
|
end
|
642
776
|
|
777
|
+
class Integer
|
778
|
+
# @private
|
779
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
780
|
+
property :value, :numeric_string => true, as: 'value'
|
781
|
+
end
|
782
|
+
end
|
783
|
+
|
643
784
|
class KnownUser
|
644
785
|
# @private
|
645
786
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -768,6 +909,22 @@ module Google
|
|
768
909
|
end
|
769
910
|
end
|
770
911
|
|
912
|
+
class Selection
|
913
|
+
# @private
|
914
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
915
|
+
property :display_name, as: 'displayName'
|
916
|
+
property :value, as: 'value'
|
917
|
+
end
|
918
|
+
end
|
919
|
+
|
920
|
+
class SelectionList
|
921
|
+
# @private
|
922
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
923
|
+
collection :values, as: 'values', class: Google::Apis::DriveactivityV2::Selection, decorator: Google::Apis::DriveactivityV2::Selection::Representation
|
924
|
+
|
925
|
+
end
|
926
|
+
end
|
927
|
+
|
771
928
|
class SettingsChange
|
772
929
|
# @private
|
773
930
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -776,6 +933,13 @@ module Google
|
|
776
933
|
end
|
777
934
|
end
|
778
935
|
|
936
|
+
class SingleUser
|
937
|
+
# @private
|
938
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
939
|
+
property :value, as: 'value'
|
940
|
+
end
|
941
|
+
end
|
942
|
+
|
779
943
|
class Suggestion
|
780
944
|
# @private
|
781
945
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -834,6 +998,21 @@ module Google
|
|
834
998
|
end
|
835
999
|
end
|
836
1000
|
|
1001
|
+
class Text
|
1002
|
+
# @private
|
1003
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1004
|
+
property :value, as: 'value'
|
1005
|
+
end
|
1006
|
+
end
|
1007
|
+
|
1008
|
+
class TextList
|
1009
|
+
# @private
|
1010
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1011
|
+
collection :values, as: 'values', class: Google::Apis::DriveactivityV2::Text, decorator: Google::Apis::DriveactivityV2::Text::Representation
|
1012
|
+
|
1013
|
+
end
|
1014
|
+
end
|
1015
|
+
|
837
1016
|
class TimeRange
|
838
1017
|
# @private
|
839
1018
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -865,6 +1044,14 @@ module Google
|
|
865
1044
|
|
866
1045
|
end
|
867
1046
|
end
|
1047
|
+
|
1048
|
+
class UserList
|
1049
|
+
# @private
|
1050
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1051
|
+
collection :values, as: 'values', class: Google::Apis::DriveactivityV2::SingleUser, decorator: Google::Apis::DriveactivityV2::SingleUser::Representation
|
1052
|
+
|
1053
|
+
end
|
1054
|
+
end
|
868
1055
|
end
|
869
1056
|
end
|
870
1057
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-driveactivity_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.
|
19
|
+
version: 0.9.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.9.
|
29
|
+
version: 0.9.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-driveactivity_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-driveactivity_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-driveactivity_v2/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-driveactivity_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|