google-apis-drive_v3 0.43.0 → 0.44.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 +4 -0
- data/lib/google/apis/drive_v3/classes.rb +23 -9
- data/lib/google/apis/drive_v3/gem_version.rb +2 -2
- data/lib/google/apis/drive_v3/service.rb +5 -5
- 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: 3d87d5f18da24b09c24ba98ce66ec651a87e07eb853b6f32b575262fafcdc3a6
|
4
|
+
data.tar.gz: 0b00b782aaf881aeaac080bbc8ae2e8ec43579dd2ab6d27f5f538ca6ab926361
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4810dcc45b68cb5a2a50caccc062fd374d59688a34efe62de15276de57ded60004d8dc552fcba3adba64e03122f32ed2ddc4df02c0382e5499a8ac05215ae93b
|
7
|
+
data.tar.gz: 6cfa28820c6bbb73fbf1bb670723171be6d4c50ae96c650a08b6a9c80f6102cec26c3b411b733237a9db38d418571bf4a034475258eb69ea29311e7fe195f979
|
data/CHANGELOG.md
CHANGED
@@ -226,7 +226,9 @@ module Google
|
|
226
226
|
# @return [String]
|
227
227
|
attr_accessor :change_type
|
228
228
|
|
229
|
-
# Representation of a shared drive.
|
229
|
+
# Representation of a shared drive. Some resource methods (such as `drives.
|
230
|
+
# update`) require a `driveId`. Use the `drives.list` method to retrieve the ID
|
231
|
+
# for a shared drive.
|
230
232
|
# Corresponds to the JSON property `drive`
|
231
233
|
# @return [Google::Apis::DriveV3::Drive]
|
232
234
|
attr_accessor :drive
|
@@ -236,7 +238,8 @@ module Google
|
|
236
238
|
# @return [String]
|
237
239
|
attr_accessor :drive_id
|
238
240
|
|
239
|
-
# The metadata for a file.
|
241
|
+
# The metadata for a file. Some resource methods (such as `files.update`)
|
242
|
+
# require a `fileId`. Use the `files.list` method to retrieve the ID for a file.
|
240
243
|
# Corresponds to the JSON property `file`
|
241
244
|
# @return [Google::Apis::DriveV3::File]
|
242
245
|
attr_accessor :file
|
@@ -419,7 +422,9 @@ module Google
|
|
419
422
|
end
|
420
423
|
end
|
421
424
|
|
422
|
-
# A comment on a file.
|
425
|
+
# A comment on a file. Some resource methods (such as `comments.update`) require
|
426
|
+
# a `commentId`. Use the `comments.list` method to retrieve the ID for a comment
|
427
|
+
# in a file.
|
423
428
|
class Comment
|
424
429
|
include Google::Apis::Core::Hashable
|
425
430
|
|
@@ -637,7 +642,9 @@ module Google
|
|
637
642
|
end
|
638
643
|
end
|
639
644
|
|
640
|
-
# Representation of a shared drive.
|
645
|
+
# Representation of a shared drive. Some resource methods (such as `drives.
|
646
|
+
# update`) require a `driveId`. Use the `drives.list` method to retrieve the ID
|
647
|
+
# for a shared drive.
|
641
648
|
class Drive
|
642
649
|
include Google::Apis::Core::Hashable
|
643
650
|
|
@@ -1051,7 +1058,8 @@ module Google
|
|
1051
1058
|
end
|
1052
1059
|
end
|
1053
1060
|
|
1054
|
-
# The metadata for a file.
|
1061
|
+
# The metadata for a file. Some resource methods (such as `files.update`)
|
1062
|
+
# require a `fileId`. Use the `files.list` method to retrieve the ID for a file.
|
1055
1063
|
class File
|
1056
1064
|
include Google::Apis::Core::Hashable
|
1057
1065
|
|
@@ -2568,8 +2576,10 @@ module Google
|
|
2568
2576
|
end
|
2569
2577
|
end
|
2570
2578
|
|
2571
|
-
# A permission for a file. A permission grants a user, group, domain or the
|
2572
|
-
# world access to a file or a folder hierarchy.
|
2579
|
+
# A permission for a file. A permission grants a user, group, domain, or the
|
2580
|
+
# world access to a file or a folder hierarchy. Some resource methods (such as `
|
2581
|
+
# permissions.update`) require a `permissionId`. Use the `permissions.list`
|
2582
|
+
# method to retrieve the ID for a file, folder, or shared drive.
|
2573
2583
|
class Permission
|
2574
2584
|
include Google::Apis::Core::Hashable
|
2575
2585
|
|
@@ -2817,7 +2827,9 @@ module Google
|
|
2817
2827
|
end
|
2818
2828
|
end
|
2819
2829
|
|
2820
|
-
# A reply to a comment on a file.
|
2830
|
+
# A reply to a comment on a file. Some resource methods (such as `replies.update`
|
2831
|
+
# ) require a `replyId`. Use the `replies.list` method to retrieve the ID for a
|
2832
|
+
# reply.
|
2821
2833
|
class Reply
|
2822
2834
|
include Google::Apis::Core::Hashable
|
2823
2835
|
|
@@ -2927,7 +2939,9 @@ module Google
|
|
2927
2939
|
end
|
2928
2940
|
end
|
2929
2941
|
|
2930
|
-
# The metadata for a revision to a file.
|
2942
|
+
# The metadata for a revision to a file. Some resource methods (such as `
|
2943
|
+
# revisions.update`) require a `revisionId`. Use the `revisions.list` method to
|
2944
|
+
# retrieve the ID for a revision.
|
2931
2945
|
class Revision
|
2932
2946
|
include Google::Apis::Core::Hashable
|
2933
2947
|
|
@@ -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.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230822"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -530,7 +530,7 @@ module Google
|
|
530
530
|
execute_or_queue_command(command, &block)
|
531
531
|
end
|
532
532
|
|
533
|
-
# Permanently deletes a shared drive for which the user is an organizer
|
533
|
+
# Permanently deletes a shared drive for which the user is an `organizer`. The
|
534
534
|
# shared drive cannot contain any untrashed items.
|
535
535
|
# @param [String] drive_id
|
536
536
|
# The ID of the shared drive.
|
@@ -903,9 +903,9 @@ module Google
|
|
903
903
|
end
|
904
904
|
|
905
905
|
# Permanently deletes a file owned by the user without moving it to the trash.
|
906
|
-
# If the file belongs to a shared drive the user must be an organizer on the
|
907
|
-
# parent. If the target is a folder, all descendants owned by the user
|
908
|
-
# deleted.
|
906
|
+
# If the file belongs to a shared drive, the user must be an `organizer` on the
|
907
|
+
# parent folder. If the target is a folder, all descendants owned by the user
|
908
|
+
# are also deleted.
|
909
909
|
# @param [String] file_id
|
910
910
|
# The ID of the file.
|
911
911
|
# @param [Boolean] enforce_single_parent
|
@@ -1205,7 +1205,7 @@ module Google
|
|
1205
1205
|
|
1206
1206
|
# Lists the labels on a file.
|
1207
1207
|
# @param [String] file_id
|
1208
|
-
# The ID for the file
|
1208
|
+
# The ID for the file.
|
1209
1209
|
# @param [Fixnum] max_results
|
1210
1210
|
# The maximum number of labels to return per page. When not set, defaults to 100.
|
1211
1211
|
# @param [String] page_token
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.44.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-
|
11
|
+
date: 2023-08-27 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-drive_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.44.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-drive_v3
|
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.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Google Drive API V3
|