google-apis-drive_v3 0.64.0 → 0.65.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/gem_version.rb +2 -2
- data/lib/google/apis/drive_v3/service.rb +4 -1
- 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: 51c887edf375a9d55cd1b2d07c13246879c7db6b28b83343347dd11e4084642b
|
4
|
+
data.tar.gz: 9b0792286f9814d34df7198bd12f33dcc86907d659fb9732848ad12cfc681f5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8fc28df20c6e5b8f4fd4a4eb509b4fe3c1601a1c8b2efa2894687b56a09d550964317b9e81bacacef559ccbe7a607276a801f25f37d5cca7607f77a6ddd48988
|
7
|
+
data.tar.gz: 7a3e937c5b6923b510b0c59396f2e1c2a8e0387d6ce0552691bd0314b4865023c470f1ad3953f804edaeb7fec53cb04f0b3e51dffe8537eedf6dcf042ccbeed1
|
data/CHANGELOG.md
CHANGED
@@ -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.65.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.17.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250506"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1828,6 +1828,8 @@ module Google
|
|
1828
1828
|
# @param [Google::Apis::DriveV3::Permission] permission_object
|
1829
1829
|
# @param [String] email_message
|
1830
1830
|
# A plain text custom message to include in the notification email.
|
1831
|
+
# @param [Boolean] enforce_expansive_access
|
1832
|
+
# Whether the request should enforce expansive access rules.
|
1831
1833
|
# @param [Boolean] enforce_single_parent
|
1832
1834
|
# Deprecated: See `moveToNewOwnersRoot` for details.
|
1833
1835
|
# @param [Boolean] move_to_new_owners_root
|
@@ -1869,7 +1871,7 @@ module Google
|
|
1869
1871
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1870
1872
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1871
1873
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1872
|
-
def create_permission(file_id, permission_object = nil, email_message: nil, enforce_single_parent: nil, move_to_new_owners_root: nil, send_notification_email: nil, supports_all_drives: nil, supports_team_drives: nil, transfer_ownership: nil, use_domain_admin_access: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1874
|
+
def create_permission(file_id, permission_object = nil, email_message: nil, enforce_expansive_access: nil, enforce_single_parent: nil, move_to_new_owners_root: nil, send_notification_email: nil, supports_all_drives: nil, supports_team_drives: nil, transfer_ownership: nil, use_domain_admin_access: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1873
1875
|
command = make_simple_command(:post, 'files/{fileId}/permissions', options)
|
1874
1876
|
command.request_representation = Google::Apis::DriveV3::Permission::Representation
|
1875
1877
|
command.request_object = permission_object
|
@@ -1877,6 +1879,7 @@ module Google
|
|
1877
1879
|
command.response_class = Google::Apis::DriveV3::Permission
|
1878
1880
|
command.params['fileId'] = file_id unless file_id.nil?
|
1879
1881
|
command.query['emailMessage'] = email_message unless email_message.nil?
|
1882
|
+
command.query['enforceExpansiveAccess'] = enforce_expansive_access unless enforce_expansive_access.nil?
|
1880
1883
|
command.query['enforceSingleParent'] = enforce_single_parent unless enforce_single_parent.nil?
|
1881
1884
|
command.query['moveToNewOwnersRoot'] = move_to_new_owners_root unless move_to_new_owners_root.nil?
|
1882
1885
|
command.query['sendNotificationEmail'] = send_notification_email unless send_notification_email.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.
|
4
|
+
version: 0.65.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.65.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:
|