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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '017877a9de3e560844afbe5ab20f572ebc9095a5330d274964e97a94d9ba7af4'
4
- data.tar.gz: 5db7503564131c669a2206ebb529c89aff2c734d5ea1e3742011551460a001fa
3
+ metadata.gz: 51c887edf375a9d55cd1b2d07c13246879c7db6b28b83343347dd11e4084642b
4
+ data.tar.gz: 9b0792286f9814d34df7198bd12f33dcc86907d659fb9732848ad12cfc681f5d
5
5
  SHA512:
6
- metadata.gz: 865720f0ee4eadcac496601a125c98fa8467ea1cd591a160aa1263953f6cfb985add7e2f3c2b977f0fa73d941f728d4e954454d4f36a8435e7a8397eca0b1c37
7
- data.tar.gz: 485e51d1e87564416d3576d5e440d84b630113dcf295776c1901447533e078b2cc492b540938acf466c2c1354f697a5e68f6b7fb837e3f3906c415edb4b76fcd
6
+ metadata.gz: 8fc28df20c6e5b8f4fd4a4eb509b4fe3c1601a1c8b2efa2894687b56a09d550964317b9e81bacacef559ccbe7a607276a801f25f37d5cca7607f77a6ddd48988
7
+ data.tar.gz: 7a3e937c5b6923b510b0c59396f2e1c2a8e0387d6ce0552691bd0314b4865023c470f1ad3953f804edaeb7fec53cb04f0b3e51dffe8537eedf6dcf042ccbeed1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-drive_v3
2
2
 
3
+ ### v0.65.0 (2025-05-11)
4
+
5
+ * Regenerated from discovery document revision 20250506
6
+
3
7
  ### v0.64.0 (2025-05-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20250427
@@ -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.64.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 = "20250427"
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.64.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.64.0
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: