google-apis-drive_v3 0.83.0 → 0.84.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84f1278a54eb5cdd6ee44a8306d9c38f0c136e72a58b33faec8dc5115ca81cfc
|
|
4
|
+
data.tar.gz: 9980ffc10f59e69a589a3a9a78d658e402bfad1a6a6c202af48115ce914e4145
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cb11716d0bd6ad3ed90dcaafea57b6e3513b64c248c31858c7ae4b00b3fb58e1c54bdd0f3de3cec6b401b3de573c3709f463ce400a79d007004bca7be85f865e
|
|
7
|
+
data.tar.gz: 91ccdf49c308db3aed0bf7b90576ec7fdb910320e41f4d7d33be46ed356f7d66ef61f67c84ddf9952d4271c53c4031c8ca9924d55dd2892618709d5c3ec4cd51
|
data/CHANGELOG.md
CHANGED
|
@@ -605,6 +605,11 @@ module Google
|
|
|
605
605
|
# @return [String]
|
|
606
606
|
attr_accessor :due_time
|
|
607
607
|
|
|
608
|
+
# Output only. The behavior of the approval when the file content changes.
|
|
609
|
+
# Corresponds to the JSON property `fileContentChangeBehavior`
|
|
610
|
+
# @return [String]
|
|
611
|
+
attr_accessor :file_content_change_behavior
|
|
612
|
+
|
|
608
613
|
# Information about a Drive user.
|
|
609
614
|
# Corresponds to the JSON property `initiator`
|
|
610
615
|
# @return [Google::Apis::DriveV3::User]
|
|
@@ -646,6 +651,7 @@ module Google
|
|
|
646
651
|
@complete_time = args[:complete_time] if args.key?(:complete_time)
|
|
647
652
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
648
653
|
@due_time = args[:due_time] if args.key?(:due_time)
|
|
654
|
+
@file_content_change_behavior = args[:file_content_change_behavior] if args.key?(:file_content_change_behavior)
|
|
649
655
|
@initiator = args[:initiator] if args.key?(:initiator)
|
|
650
656
|
@kind = args[:kind] if args.key?(:kind)
|
|
651
657
|
@modify_time = args[:modify_time] if args.key?(:modify_time)
|
|
@@ -4205,6 +4211,11 @@ module Google
|
|
|
4205
4211
|
# @return [String]
|
|
4206
4212
|
attr_accessor :due_time
|
|
4207
4213
|
|
|
4214
|
+
# Optional. The behavior of the approval when the file content changes.
|
|
4215
|
+
# Corresponds to the JSON property `fileContentChangeBehavior`
|
|
4216
|
+
# @return [String]
|
|
4217
|
+
attr_accessor :file_content_change_behavior
|
|
4218
|
+
|
|
4208
4219
|
# Optional. Whether to lock the file when starting the approval.
|
|
4209
4220
|
# Corresponds to the JSON property `lockFile`
|
|
4210
4221
|
# @return [Boolean]
|
|
@@ -4229,6 +4240,7 @@ module Google
|
|
|
4229
4240
|
# Update properties of this object
|
|
4230
4241
|
def update!(**args)
|
|
4231
4242
|
@due_time = args[:due_time] if args.key?(:due_time)
|
|
4243
|
+
@file_content_change_behavior = args[:file_content_change_behavior] if args.key?(:file_content_change_behavior)
|
|
4232
4244
|
@lock_file = args[:lock_file] if args.key?(:lock_file)
|
|
4233
4245
|
@message = args[:message] if args.key?(:message)
|
|
4234
4246
|
@reviewer_emails = args[:reviewer_emails] if args.key?(:reviewer_emails)
|
|
@@ -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.84.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 = "
|
|
25
|
+
REVISION = "20260712"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -618,6 +618,7 @@ module Google
|
|
|
618
618
|
property :complete_time, as: 'completeTime'
|
|
619
619
|
property :create_time, as: 'createTime'
|
|
620
620
|
property :due_time, as: 'dueTime'
|
|
621
|
+
property :file_content_change_behavior, as: 'fileContentChangeBehavior'
|
|
621
622
|
property :initiator, as: 'initiator', class: Google::Apis::DriveV3::User, decorator: Google::Apis::DriveV3::User::Representation
|
|
622
623
|
|
|
623
624
|
property :kind, as: 'kind'
|
|
@@ -1420,6 +1421,7 @@ module Google
|
|
|
1420
1421
|
# @private
|
|
1421
1422
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1422
1423
|
property :due_time, as: 'dueTime'
|
|
1424
|
+
property :file_content_change_behavior, as: 'fileContentChangeBehavior'
|
|
1423
1425
|
property :lock_file, as: 'lockFile'
|
|
1424
1426
|
property :message, as: 'message'
|
|
1425
1427
|
collection :reviewer_emails, as: 'reviewerEmails'
|
|
@@ -647,7 +647,9 @@ module Google
|
|
|
647
647
|
# @param [Boolean] include_team_drive_items
|
|
648
648
|
# Deprecated: Use `includeItemsFromAllDrives` instead.
|
|
649
649
|
# @param [Fixnum] page_size
|
|
650
|
-
# The maximum number of changes to return
|
|
650
|
+
# The maximum number of changes to return. The service may return fewer than
|
|
651
|
+
# this value. If unspecified, at most 100 changes will be returned. The maximum
|
|
652
|
+
# value is 1000; values above 1000 will be coerced to 1000.
|
|
651
653
|
# @param [Boolean] restrict_to_my_drive
|
|
652
654
|
# Whether to restrict the results to changes inside the My Drive hierarchy. This
|
|
653
655
|
# omits changes to files such as those in the Application Data folder or shared
|
|
@@ -732,7 +734,9 @@ module Google
|
|
|
732
734
|
# @param [Boolean] include_team_drive_items
|
|
733
735
|
# Deprecated: Use `includeItemsFromAllDrives` instead.
|
|
734
736
|
# @param [Fixnum] page_size
|
|
735
|
-
# The maximum number of changes to return
|
|
737
|
+
# The maximum number of changes to return. The service may return fewer than
|
|
738
|
+
# this value. If unspecified, at most 100 changes will be returned. The maximum
|
|
739
|
+
# value is 1000; values above 1000 will be coerced to 1000.
|
|
736
740
|
# @param [Boolean] restrict_to_my_drive
|
|
737
741
|
# Whether to restrict the results to changes inside the My Drive hierarchy. This
|
|
738
742
|
# omits changes to files such as those in the Application Data folder or shared
|
|
@@ -939,7 +943,9 @@ module Google
|
|
|
939
943
|
# Whether to include deleted comments. Deleted comments will not include their
|
|
940
944
|
# original content.
|
|
941
945
|
# @param [Fixnum] page_size
|
|
942
|
-
# The maximum number of comments to return
|
|
946
|
+
# The maximum number of comments to return. The service may return fewer than
|
|
947
|
+
# this value. If unspecified, at most 20 comments will be returned. The maximum
|
|
948
|
+
# value is 100; values above 100 will be coerced to 100.
|
|
943
949
|
# @param [String] page_token
|
|
944
950
|
# The token for continuing a previous list request on the next page. This should
|
|
945
951
|
# be set to the value of 'nextPageToken' from the previous response.
|
|
@@ -1169,7 +1175,9 @@ module Google
|
|
|
1169
1175
|
# see the [Search for shared drives](https://developers.google.com/workspace/
|
|
1170
1176
|
# drive/api/guides/search-shareddrives) guide.
|
|
1171
1177
|
# @param [Fixnum] page_size
|
|
1172
|
-
#
|
|
1178
|
+
# The maximum number of shared drives to return. The service may return fewer
|
|
1179
|
+
# than this value. If unspecified, at most 10 shared drives will be returned.
|
|
1180
|
+
# The maximum value is 100; values above 100 will be coerced to 100.
|
|
1173
1181
|
# @param [String] page_token
|
|
1174
1182
|
# Page token for shared drives.
|
|
1175
1183
|
# @param [String] q
|
|
@@ -1801,10 +1809,10 @@ module Google
|
|
|
1801
1809
|
# Each key sorts ascending by default, but can be reversed with the `desc`
|
|
1802
1810
|
# modifier. Example usage: `?orderBy=folder,modifiedTime desc,name`.
|
|
1803
1811
|
# @param [Fixnum] page_size
|
|
1804
|
-
# The maximum number of files to return
|
|
1805
|
-
#
|
|
1806
|
-
#
|
|
1807
|
-
#
|
|
1812
|
+
# The maximum number of files to return. The service may return fewer than this
|
|
1813
|
+
# value. If unspecified, at most 100 files will be returned for shared drives,
|
|
1814
|
+
# and the entire list of files for non-shared drives. The maximum value is 1000;
|
|
1815
|
+
# values above 1000 will be coerced to 1000.
|
|
1808
1816
|
# @param [String] page_token
|
|
1809
1817
|
# The token for continuing a previous list request on the next page. This should
|
|
1810
1818
|
# be set to the value of `nextPageToken` from the previous response.
|
|
@@ -2300,9 +2308,10 @@ module Google
|
|
|
2300
2308
|
# Specifies which additional view's permissions to include in the response. Only
|
|
2301
2309
|
# `published` is supported.
|
|
2302
2310
|
# @param [Fixnum] page_size
|
|
2303
|
-
# The maximum number of permissions to return
|
|
2304
|
-
#
|
|
2305
|
-
#
|
|
2311
|
+
# The maximum number of permissions to return. The service may return fewer than
|
|
2312
|
+
# this value. If unspecified, at most 100 permissions will be returned for
|
|
2313
|
+
# shared drives, and the entire list of permissions for non-shared drives. The
|
|
2314
|
+
# maximum value is 100; values above 100 will be coerced to 100.
|
|
2306
2315
|
# @param [String] page_token
|
|
2307
2316
|
# The token for continuing a previous list request on the next page. This should
|
|
2308
2317
|
# be set to the value of `nextPageToken` from the previous response.
|
|
@@ -2542,7 +2551,9 @@ module Google
|
|
|
2542
2551
|
# Whether to include deleted replies. Deleted replies don't include their
|
|
2543
2552
|
# original content.
|
|
2544
2553
|
# @param [Fixnum] page_size
|
|
2545
|
-
# The maximum number of replies to return
|
|
2554
|
+
# The maximum number of replies to return. The service may return fewer than
|
|
2555
|
+
# this value. If unspecified, at most 20 replies will be returned. The maximum
|
|
2556
|
+
# value is 100; values above 100 will be coerced to 100.
|
|
2546
2557
|
# @param [String] page_token
|
|
2547
2558
|
# The token for continuing a previous list request on the next page. This should
|
|
2548
2559
|
# be set to the value of `nextPageToken` from the previous response.
|
|
@@ -2712,7 +2723,9 @@ module Google
|
|
|
2712
2723
|
# @param [String] file_id
|
|
2713
2724
|
# The ID of the file.
|
|
2714
2725
|
# @param [Fixnum] page_size
|
|
2715
|
-
# The maximum number of revisions to return
|
|
2726
|
+
# The maximum number of revisions to return. The service may return fewer than
|
|
2727
|
+
# this value. If unspecified, at most 200 revisions will be returned. The
|
|
2728
|
+
# maximum value is 1000; values above 1000 will be coerced to 1000.
|
|
2716
2729
|
# @param [String] page_token
|
|
2717
2730
|
# The token for continuing a previous list request on the next page. This should
|
|
2718
2731
|
# be set to the value of 'nextPageToken' from the previous response.
|
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.84.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.84.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:
|