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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fb3da54c0883d5a3dfc05f179cbc9c2020a95a4ad8597290d70d18a928e26b17
4
- data.tar.gz: 774c1ce62073b82ff1fd48a6df73a3cd4a7d3b16293a550b3548c842206f5fc7
3
+ metadata.gz: 98ef40fb7c4413bac7add67ae771d3098bba16f828c6aa28e142e1d6dcde0cfc
4
+ data.tar.gz: b3e8322af067e3a2fe204e70f58464ba1ce7b0211a770d18bc046769c1870cf5
5
5
  SHA512:
6
- metadata.gz: d0e3c17e6222c262da23309fe8ad52d0808aef98af9bf7713fec901b1abf86d72ef86fdce1930823c1e85840fcc5f41f4fac3e9a03eca5048690e1511e3cfa64
7
- data.tar.gz: a48fba96dd376f371fa932c737d9b2bf576d674ca069dbfee0a5024f340a5191fa4a9889b133252ed9d2de68b9f0a048ca49d64d17f3c205842d18d9c5e7afa5
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. A set of activities may be
380
- # consolidated into one combined activity if they are related in some way, such
381
- # as one actor performing the same action on multiple targets, or multiple
382
- # actors performing the same action on a single target. The strategy defines the
383
- # rules for which activities are related.
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 which consolidates activities using the grouping rules from the
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 which does no consolidation of individual activities.
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 which consolidates activities using the grouping rules from the
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 which does no consolidation of individual activities.
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 and all children and descendants. The
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. A set of activities may be
1305
- # consolidated into one combined activity if they are related in some way, such
1306
- # as one actor performing the same action on multiple targets, or multiple
1307
- # actors performing the same action on a single target. The strategy defines the
1308
- # rules for which activities are related.
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. Examples: - `detail.
1321
- # action_detail_case: RENAME` - `detail.action_detail_case:(CREATE EDIT)` - `-
1322
- # detail.action_detail_case:MOVE`
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 miminum number of activities desired in the response; the server will
1333
- # attempt to return at least this quanitity. The server may also return fewer
1334
- # activities if it has a partial response ready before the request times out. If
1335
- # not set, a default value is used.
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 identifying which page of results to return. Set this to the
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 will be returned.
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.15.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.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221218"
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.15.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-04 00:00:00.000000000 Z
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.15.0
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.3.14
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