google-apis-driveactivity_v2 0.15.0 → 0.16.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/driveactivity_v2/classes.rb +27 -25
- data/lib/google/apis/driveactivity_v2/gem_version.rb +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98ef40fb7c4413bac7add67ae771d3098bba16f828c6aa28e142e1d6dcde0cfc
|
4
|
+
data.tar.gz: b3e8322af067e3a2fe204e70f58464ba1ce7b0211a770d18bc046769c1870cf5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a93c4485e1f68cf52d181cc9e1be6ac535a177badae893e56ec6c251955091ef57da1607a59af547ffa52073686b0be191cb72a78323b4bb49c9f04ddd44f6e
|
7
|
+
data.tar.gz: df29b85813c1d278279201d63a331e38cd3437d78ae6f17c0430d0dc2eb52adc3937a2f9b546584c251bd91f20a3a46563f9769fb1eeab78bfe8b818fecedd86
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-driveactivity_v2
|
2
2
|
|
3
|
+
### v0.16.0 (2023-01-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230110
|
6
|
+
* Regenerated using generator version 0.11.1
|
7
|
+
|
3
8
|
### v0.15.0 (2022-12-29)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20221218
|
@@ -376,15 +376,15 @@ module Google
|
|
376
376
|
end
|
377
377
|
end
|
378
378
|
|
379
|
-
# How the individual activities are consolidated.
|
380
|
-
# consolidated into one combined activity
|
381
|
-
#
|
382
|
-
#
|
383
|
-
#
|
379
|
+
# How the individual activities are consolidated. If a set of activities is
|
380
|
+
# related they can be consolidated into one combined activity, such as one actor
|
381
|
+
# performing the same action on multiple targets, or multiple actors performing
|
382
|
+
# the same action on a single target. The strategy defines the rules for which
|
383
|
+
# activities are related.
|
384
384
|
class ConsolidationStrategy
|
385
385
|
include Google::Apis::Core::Hashable
|
386
386
|
|
387
|
-
# A strategy
|
387
|
+
# A strategy that consolidates activities using the grouping rules from the
|
388
388
|
# legacy V1 Activity API. Similar actions occurring within a window of time can
|
389
389
|
# be grouped across multiple targets (such as moving a set of files at once) or
|
390
390
|
# multiple actors (such as several users editing the same item). Grouping rules
|
@@ -393,7 +393,7 @@ module Google
|
|
393
393
|
# @return [Google::Apis::DriveactivityV2::Legacy]
|
394
394
|
attr_accessor :legacy
|
395
395
|
|
396
|
-
# A strategy
|
396
|
+
# A strategy that does no consolidation of individual activities.
|
397
397
|
# Corresponds to the JSON property `none`
|
398
398
|
# @return [Google::Apis::DriveactivityV2::NoConsolidation]
|
399
399
|
attr_accessor :none
|
@@ -1089,7 +1089,7 @@ module Google
|
|
1089
1089
|
end
|
1090
1090
|
end
|
1091
1091
|
|
1092
|
-
# A strategy
|
1092
|
+
# A strategy that consolidates activities using the grouping rules from the
|
1093
1093
|
# legacy V1 Activity API. Similar actions occurring within a window of time can
|
1094
1094
|
# be grouped across multiple targets (such as moving a set of files at once) or
|
1095
1095
|
# multiple actors (such as several users editing the same item). Grouping rules
|
@@ -1144,7 +1144,7 @@ module Google
|
|
1144
1144
|
end
|
1145
1145
|
end
|
1146
1146
|
|
1147
|
-
# A strategy
|
1147
|
+
# A strategy that does no consolidation of individual activities.
|
1148
1148
|
class NoConsolidation
|
1149
1149
|
include Google::Apis::Core::Hashable
|
1150
1150
|
|
@@ -1295,17 +1295,17 @@ module Google
|
|
1295
1295
|
class QueryDriveActivityRequest
|
1296
1296
|
include Google::Apis::Core::Hashable
|
1297
1297
|
|
1298
|
-
# Return activities for this Drive folder
|
1299
|
-
# format is `items/ITEM_ID`.
|
1298
|
+
# Return activities for this Drive folder, plus all children and descendants.
|
1299
|
+
# The format is `items/ITEM_ID`.
|
1300
1300
|
# Corresponds to the JSON property `ancestorName`
|
1301
1301
|
# @return [String]
|
1302
1302
|
attr_accessor :ancestor_name
|
1303
1303
|
|
1304
|
-
# How the individual activities are consolidated.
|
1305
|
-
# consolidated into one combined activity
|
1306
|
-
#
|
1307
|
-
#
|
1308
|
-
#
|
1304
|
+
# How the individual activities are consolidated. If a set of activities is
|
1305
|
+
# related they can be consolidated into one combined activity, such as one actor
|
1306
|
+
# performing the same action on multiple targets, or multiple actors performing
|
1307
|
+
# the same action on a single target. The strategy defines the rules for which
|
1308
|
+
# activities are related.
|
1309
1309
|
# Corresponds to the JSON property `consolidationStrategy`
|
1310
1310
|
# @return [Google::Apis::DriveactivityV2::ConsolidationStrategy]
|
1311
1311
|
attr_accessor :consolidation_strategy
|
@@ -1317,9 +1317,11 @@ module Google
|
|
1317
1317
|
# since Jan 1, 1970 or in RFC 3339 format. Examples: - `time > 1452409200000 AND
|
1318
1318
|
# time <= 1492812924310` - `time >= "2016-01-10T01:02:03-05:00"` - `detail.
|
1319
1319
|
# action_detail_case`: Uses the "has" operator (:) and either a singular value
|
1320
|
-
# or a list of allowed action types enclosed in parentheses
|
1321
|
-
#
|
1322
|
-
# detail.action_detail_case:
|
1320
|
+
# or a list of allowed action types enclosed in parentheses, separated by a
|
1321
|
+
# space. To exclude a result from the response, prepend a hyphen (`-`) to the
|
1322
|
+
# beginning of the filter string. Examples: - `detail.action_detail_case:RENAME`
|
1323
|
+
# - `detail.action_detail_case:(CREATE RESTORE)` - `-detail.action_detail_case:
|
1324
|
+
# MOVE`
|
1323
1325
|
# Corresponds to the JSON property `filter`
|
1324
1326
|
# @return [String]
|
1325
1327
|
attr_accessor :filter
|
@@ -1329,17 +1331,17 @@ module Google
|
|
1329
1331
|
# @return [String]
|
1330
1332
|
attr_accessor :item_name
|
1331
1333
|
|
1332
|
-
# The
|
1333
|
-
#
|
1334
|
-
#
|
1335
|
-
#
|
1334
|
+
# The minimum number of activities desired in the response; the server attempts
|
1335
|
+
# to return at least this quantity. The server may also return fewer activities
|
1336
|
+
# if it has a partial response ready before the request times out. If not set, a
|
1337
|
+
# default value is used.
|
1336
1338
|
# Corresponds to the JSON property `pageSize`
|
1337
1339
|
# @return [Fixnum]
|
1338
1340
|
attr_accessor :page_size
|
1339
1341
|
|
1340
|
-
# The token
|
1342
|
+
# The token identifies which page of results to return. Set this to the
|
1341
1343
|
# next_page_token value returned from a previous query to obtain the following
|
1342
|
-
# page of results. If not set, the first page of results
|
1344
|
+
# page of results. If not set, the first page of results is returned.
|
1343
1345
|
# Corresponds to the JSON property `pageToken`
|
1344
1346
|
# @return [String]
|
1345
1347
|
attr_accessor :page_token
|
@@ -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.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.11.
|
22
|
+
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230110"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
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.16.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: 2023-01-
|
11
|
+
date: 2023-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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.16.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Drive Activity API V2
|