google-apis-drive_v3 0.85.0 → 0.87.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: f637325e5d42f85d228a0bb09a29f5d8a300882feddfde366f78456d5929f9df
4
- data.tar.gz: 20d17ec8002d03a95de88bc648ffe993bd2672ad92965714ca77bd2239c0b884
3
+ metadata.gz: 5b45449457ea915f49834aa462c182a49c1cbbf98954ec5a6744ba5f3752a7ea
4
+ data.tar.gz: c0fa5e0c388bf80a66a4d5ae3fc6b00c99c55628caa9fcab2b922becbef5d7eb
5
5
  SHA512:
6
- metadata.gz: 80378a8d56147c886a1301f795076b64d792ced150c24ebbc845f6eaa3e796c1e0b34b1ff2998004b7ab59c4f95b0430f89aa30c10a2001a156bfdd006c8e73c
7
- data.tar.gz: d922c31103ab9a435b2a178fb2e0ce4a108894a454a3c3cd0a5f292d66409ecd2350ed5fee42a4c27e13b54a5056d3e14e16068081d4f57b567bdce57384db99
6
+ metadata.gz: 7ee9eac45a713fcadf3960c4a96227888ff8586244d2664baf40267dfcbeeaf3ec68756c3855730efba895a46b154b298b7c0999edb497732e587a48fa648242
7
+ data.tar.gz: afa20a4a1e5b9ac6601831ee178aa8f2fa0d09dcbf9afbabe6ca5ff68ce6e5992acf94638fd8fff829bc17f492177e26af68176e8cd42318a6df78c34d323157
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-drive_v3
2
2
 
3
+ ### v0.87.0 (2026-09-06)
4
+
5
+ * Regenerated from discovery document revision 20260901
6
+
7
+ ### v0.86.0 (2026-08-30)
8
+
9
+ * Regenerated from discovery document revision 20260823
10
+
3
11
  ### v0.85.0 (2026-07-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20260720
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DriveV3
18
18
  # Version of the google-apis-drive_v3 gem
19
- GEM_VERSION = "0.85.0"
19
+ GEM_VERSION = "0.87.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260720"
25
+ REVISION = "20260901"
26
26
  end
27
27
  end
28
28
  end
@@ -385,7 +385,12 @@ module Google
385
385
  end
386
386
 
387
387
  # Lists the approvals on a file. For more information, see [Manage approvals](
388
- # https://developers.google.com/workspace/drive/api/guides/approvals).
388
+ # https://developers.google.com/workspace/drive/api/guides/approvals). By
389
+ # default, this method returns a minimal response that may not include the items
390
+ # array. To retrieve approval details, you must explicitly specify the fields
391
+ # you want using the `fields` query parameter. To return the exact fields you
392
+ # need, see [Return specific fields](https://developers.google.com/workspace/
393
+ # drive/api/guides/fields-parameter).
389
394
  # @param [String] file_id
390
395
  # Required. The ID of the file that the approval is on.
391
396
  # @param [Fixnum] page_size
@@ -1293,6 +1298,8 @@ module Google
1293
1298
  # @param [String] file_id
1294
1299
  # The ID of the file.
1295
1300
  # @param [Google::Apis::DriveV3::File] file_object
1301
+ # @param [Boolean] copy_comments
1302
+ # Whether to copy the comments associated with the file.
1296
1303
  # @param [Boolean] enforce_single_parent
1297
1304
  # Deprecated: Copying files into multiple folders is no longer supported. Use
1298
1305
  # shortcuts instead.
@@ -1335,13 +1342,14 @@ module Google
1335
1342
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1336
1343
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1337
1344
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1338
- def copy_file(file_id, file_object = nil, enforce_single_parent: nil, ignore_default_visibility: nil, include_labels: nil, include_permissions_for_view: nil, keep_revision_forever: nil, ocr_language: nil, supports_all_drives: nil, supports_team_drives: nil, fields: nil, quota_user: nil, options: nil, &block)
1345
+ def copy_file(file_id, file_object = nil, copy_comments: nil, enforce_single_parent: nil, ignore_default_visibility: nil, include_labels: nil, include_permissions_for_view: nil, keep_revision_forever: nil, ocr_language: nil, supports_all_drives: nil, supports_team_drives: nil, fields: nil, quota_user: nil, options: nil, &block)
1339
1346
  command = make_simple_command(:post, 'files/{fileId}/copy', options)
1340
1347
  command.request_representation = Google::Apis::DriveV3::File::Representation
1341
1348
  command.request_object = file_object
1342
1349
  command.response_representation = Google::Apis::DriveV3::File::Representation
1343
1350
  command.response_class = Google::Apis::DriveV3::File
1344
1351
  command.params['fileId'] = file_id unless file_id.nil?
1352
+ command.query['copyComments'] = copy_comments unless copy_comments.nil?
1345
1353
  command.query['enforceSingleParent'] = enforce_single_parent unless enforce_single_parent.nil?
1346
1354
  command.query['ignoreDefaultVisibility'] = ignore_default_visibility unless ignore_default_visibility.nil?
1347
1355
  command.query['includeLabels'] = include_labels unless include_labels.nil?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-drive_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.85.0
4
+ version: 0.87.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-drive_v3/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.85.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.87.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-drive_v3
62
62
  rdoc_options: []
63
63
  require_paths: