google-apis-drive_v3 0.75.0 → 0.77.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 +8 -0
- data/lib/google/apis/drive_v3/classes.rb +5 -5
- data/lib/google/apis/drive_v3/gem_version.rb +2 -2
- data/lib/google/apis/drive_v3/service.rb +33 -22
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c7e15704cde2627c7a49429aaf1687637318a2c1e93ec687468b9a9041969703
|
|
4
|
+
data.tar.gz: 3587f05c005a88c912fdef1faf049f8b1195b1bde22bd40033464ee2f653a833
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 811161b9c9758e864229ed650b2002c6be745376a8bcd3502cd4ed30f5f1d1a5f86e4dc370bc195e9f3a573af4ceb84ba5c01dd0eab981ab40f0ba9ead928fd0
|
|
7
|
+
data.tar.gz: e951156ff5d78a7e5a826344ab52b01d1ddda839e7925e596f981e83c1140ca811a50cdda625ca6eb4031973dbf2cd82b2cbe3e8c68667791b06f01fba582d2a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-drive_v3
|
|
2
2
|
|
|
3
|
+
### v0.77.0 (2026-02-01)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260128
|
|
6
|
+
|
|
7
|
+
### v0.76.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251210
|
|
10
|
+
|
|
3
11
|
### v0.75.0 (2025-12-07)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251201
|
|
@@ -3543,8 +3543,8 @@ module Google
|
|
|
3543
3543
|
class Reply
|
|
3544
3544
|
include Google::Apis::Core::Hashable
|
|
3545
3545
|
|
|
3546
|
-
# The action the reply performed to the parent comment.
|
|
3547
|
-
# resolve` * `reopen`
|
|
3546
|
+
# The action the reply performed to the parent comment. The supported values are:
|
|
3547
|
+
# * `resolve` * `reopen`
|
|
3548
3548
|
# Corresponds to the JSON property `action`
|
|
3549
3549
|
# @return [String]
|
|
3550
3550
|
attr_accessor :action
|
|
@@ -3561,8 +3561,8 @@ module Google
|
|
|
3561
3561
|
attr_accessor :author
|
|
3562
3562
|
|
|
3563
3563
|
# The plain text content of the reply. This field is used for setting the
|
|
3564
|
-
# content, while `htmlContent` should be displayed. This is required
|
|
3565
|
-
# if no `action` is specified.
|
|
3564
|
+
# content, while `htmlContent` should be displayed. This field is required by
|
|
3565
|
+
# the `create` method if no `action` value is specified.
|
|
3566
3566
|
# Corresponds to the JSON property `content`
|
|
3567
3567
|
# @return [String]
|
|
3568
3568
|
attr_accessor :content
|
|
@@ -3645,7 +3645,7 @@ module Google
|
|
|
3645
3645
|
# @return [String]
|
|
3646
3646
|
attr_accessor :next_page_token
|
|
3647
3647
|
|
|
3648
|
-
# The list of replies. If nextPageToken is populated, then this list may be
|
|
3648
|
+
# The list of replies. If `nextPageToken` is populated, then this list may be
|
|
3649
3649
|
# incomplete and an additional page of results should be fetched.
|
|
3650
3650
|
# Corresponds to the JSON property `replies`
|
|
3651
3651
|
# @return [Array<Google::Apis::DriveV3::Reply>]
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.77.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 = "20260128"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1484,12 +1484,13 @@ module Google
|
|
|
1484
1484
|
# want trashed files to appear in the list, use the `trashed=false` query
|
|
1485
1485
|
# parameter to remove trashed files from the results.
|
|
1486
1486
|
# @param [String] corpora
|
|
1487
|
-
#
|
|
1488
|
-
#
|
|
1489
|
-
# drive` to `allDrives` for efficiency. By default, corpora is
|
|
1490
|
-
# However, this can change depending on the filter set through
|
|
1491
|
-
# For more information, see [File organization](https://
|
|
1492
|
-
# workspace/drive/api/guides/about-files#file-organization)
|
|
1487
|
+
# Specifies a collection of items (files or documents) to which the query
|
|
1488
|
+
# applies. Supported items include: * `user` * `domain` * `drive` * `allDrives`
|
|
1489
|
+
# Prefer `user` or `drive` to `allDrives` for efficiency. By default, corpora is
|
|
1490
|
+
# set to `user`. However, this can change depending on the filter set through
|
|
1491
|
+
# the `q` parameter. For more information, see [File organization](https://
|
|
1492
|
+
# developers.google.com/workspace/drive/api/guides/about-files#file-organization)
|
|
1493
|
+
# .
|
|
1493
1494
|
# @param [String] corpus
|
|
1494
1495
|
# Deprecated: The source of files to list. Use `corpora` instead.
|
|
1495
1496
|
# @param [String] drive_id
|
|
@@ -1506,14 +1507,16 @@ module Google
|
|
|
1506
1507
|
# Deprecated: Use `includeItemsFromAllDrives` instead.
|
|
1507
1508
|
# @param [String] order_by
|
|
1508
1509
|
# A comma-separated list of sort keys. Valid keys are: * `createdTime`: When the
|
|
1509
|
-
# file was created.
|
|
1510
|
-
#
|
|
1511
|
-
#
|
|
1512
|
-
#
|
|
1513
|
-
#
|
|
1514
|
-
#
|
|
1515
|
-
#
|
|
1516
|
-
#
|
|
1510
|
+
# file was created. Avoid using this key for queries on large item collections
|
|
1511
|
+
# as it might result in timeouts or other issues. For time-related sorting on
|
|
1512
|
+
# large item collections, use `modifiedTime` instead. * `folder`: The folder ID.
|
|
1513
|
+
# This field is sorted using alphabetical ordering. * `modifiedByMeTime`: The
|
|
1514
|
+
# last time the file was modified by the user. * `modifiedTime`: The last time
|
|
1515
|
+
# the file was modified by anyone. * `name`: The name of the file. This field is
|
|
1516
|
+
# sorted using alphabetical ordering, so 1, 12, 2, 22. * `name_natural`: The
|
|
1517
|
+
# name of the file. This field is sorted using natural sort ordering, so 1, 2,
|
|
1518
|
+
# 12, 22. * `quotaBytesUsed`: The number of storage quota bytes used by the file.
|
|
1519
|
+
# * `recency`: The most recent timestamp from the file's date-time fields. * `
|
|
1517
1520
|
# sharedWithMeTime`: When the file was shared with the user, if applicable. * `
|
|
1518
1521
|
# starred`: Whether the user has starred the file. * `viewedByMeTime`: The last
|
|
1519
1522
|
# time the file was viewed by the user. Each key sorts ascending by default, but
|
|
@@ -2133,7 +2136,9 @@ module Google
|
|
|
2133
2136
|
execute_or_queue_command(command, &block)
|
|
2134
2137
|
end
|
|
2135
2138
|
|
|
2136
|
-
# Creates a reply to a comment.
|
|
2139
|
+
# Creates a reply to a comment. For more information, see [Manage comments and
|
|
2140
|
+
# replies](https://developers.google.com/workspace/drive/api/guides/manage-
|
|
2141
|
+
# comments).
|
|
2137
2142
|
# @param [String] file_id
|
|
2138
2143
|
# The ID of the file.
|
|
2139
2144
|
# @param [String] comment_id
|
|
@@ -2169,7 +2174,8 @@ module Google
|
|
|
2169
2174
|
execute_or_queue_command(command, &block)
|
|
2170
2175
|
end
|
|
2171
2176
|
|
|
2172
|
-
# Deletes a reply.
|
|
2177
|
+
# Deletes a reply. For more information, see [Manage comments and replies](https:
|
|
2178
|
+
# //developers.google.com/workspace/drive/api/guides/manage-comments).
|
|
2173
2179
|
# @param [String] file_id
|
|
2174
2180
|
# The ID of the file.
|
|
2175
2181
|
# @param [String] comment_id
|
|
@@ -2203,7 +2209,8 @@ module Google
|
|
|
2203
2209
|
execute_or_queue_command(command, &block)
|
|
2204
2210
|
end
|
|
2205
2211
|
|
|
2206
|
-
# Gets a reply by ID.
|
|
2212
|
+
# Gets a reply by ID. For more information, see [Manage comments and replies](
|
|
2213
|
+
# https://developers.google.com/workspace/drive/api/guides/manage-comments).
|
|
2207
2214
|
# @param [String] file_id
|
|
2208
2215
|
# The ID of the file.
|
|
2209
2216
|
# @param [String] comment_id
|
|
@@ -2211,7 +2218,7 @@ module Google
|
|
|
2211
2218
|
# @param [String] reply_id
|
|
2212
2219
|
# The ID of the reply.
|
|
2213
2220
|
# @param [Boolean] include_deleted
|
|
2214
|
-
# Whether to return deleted replies. Deleted replies
|
|
2221
|
+
# Whether to return deleted replies. Deleted replies don't include their
|
|
2215
2222
|
# original content.
|
|
2216
2223
|
# @param [String] fields
|
|
2217
2224
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -2243,19 +2250,21 @@ module Google
|
|
|
2243
2250
|
execute_or_queue_command(command, &block)
|
|
2244
2251
|
end
|
|
2245
2252
|
|
|
2246
|
-
# Lists a comment's replies.
|
|
2253
|
+
# Lists a comment's replies. For more information, see [Manage comments and
|
|
2254
|
+
# replies](https://developers.google.com/workspace/drive/api/guides/manage-
|
|
2255
|
+
# comments).
|
|
2247
2256
|
# @param [String] file_id
|
|
2248
2257
|
# The ID of the file.
|
|
2249
2258
|
# @param [String] comment_id
|
|
2250
2259
|
# The ID of the comment.
|
|
2251
2260
|
# @param [Boolean] include_deleted
|
|
2252
|
-
# Whether to include deleted replies. Deleted replies
|
|
2261
|
+
# Whether to include deleted replies. Deleted replies don't include their
|
|
2253
2262
|
# original content.
|
|
2254
2263
|
# @param [Fixnum] page_size
|
|
2255
2264
|
# The maximum number of replies to return per page.
|
|
2256
2265
|
# @param [String] page_token
|
|
2257
2266
|
# The token for continuing a previous list request on the next page. This should
|
|
2258
|
-
# be set to the value of
|
|
2267
|
+
# be set to the value of `nextPageToken` from the previous response.
|
|
2259
2268
|
# @param [String] fields
|
|
2260
2269
|
# Selector specifying which fields to include in a partial response.
|
|
2261
2270
|
# @param [String] quota_user
|
|
@@ -2287,7 +2296,9 @@ module Google
|
|
|
2287
2296
|
execute_or_queue_command(command, &block)
|
|
2288
2297
|
end
|
|
2289
2298
|
|
|
2290
|
-
# Updates a reply with patch semantics.
|
|
2299
|
+
# Updates a reply with patch semantics. For more information, see [Manage
|
|
2300
|
+
# comments and replies](https://developers.google.com/workspace/drive/api/guides/
|
|
2301
|
+
# manage-comments).
|
|
2291
2302
|
# @param [String] file_id
|
|
2292
2303
|
# The ID of the file.
|
|
2293
2304
|
# @param [String] comment_id
|
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.
|
|
4
|
+
version: 0.77.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.77.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:
|