Skip to content

Commit 78bb44a

Browse files
feat: Automated regeneration of drive v3 client (#27204)
Auto-created at 2026-06-28 10:44:54 +0000 using the toys pull request generator.
1 parent 0bf821a commit 78bb44a

5 files changed

Lines changed: 15 additions & 2 deletions

File tree

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274513,6 +274513,7 @@
274513274513
"/drive:v3/File/appProperties/app_property": app_property
274514274514
"/drive:v3/File/capabilities": capabilities
274515274515
"/drive:v3/File/capabilities/canAcceptOwnership": can_accept_ownership
274516+
"/drive:v3/File/capabilities/canAccessViaGenAi": can_access_via_gen_ai
274516274517
"/drive:v3/File/capabilities/canAddChildren": can_add_children
274517274518
"/drive:v3/File/capabilities/canAddFolderFromAnotherDrive": can_add_folder_from_another_drive
274518274519
"/drive:v3/File/capabilities/canAddMyDriveParent": can_add_my_drive_parent

generated/google-apis-drive_v3/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-drive_v3
22

3+
### v0.83.0 (2026-06-28)
4+
5+
* Regenerated from discovery document revision 20260624
6+
37
### v0.82.0 (2026-06-14)
48

59
* Regenerated using generator version 0.19.0

generated/google-apis-drive_v3/lib/google/apis/drive_v3/classes.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2301,6 +2301,12 @@ class Capabilities
23012301
attr_accessor :can_accept_ownership
23022302
alias_method :can_accept_ownership?, :can_accept_ownership
23032303

2304+
# Whether the current user can access this file via Gen AI features.
2305+
# Corresponds to the JSON property `canAccessViaGenAi`
2306+
# @return [Boolean]
2307+
attr_accessor :can_access_via_gen_ai
2308+
alias_method :can_access_via_gen_ai?, :can_access_via_gen_ai
2309+
23042310
# Output only. Whether the current user can add children to this folder. This is
23052311
# always `false` when the item isn't a folder.
23062312
# Corresponds to the JSON property `canAddChildren`
@@ -2611,6 +2617,7 @@ def initialize(**args)
26112617
# Update properties of this object
26122618
def update!(**args)
26132619
@can_accept_ownership = args[:can_accept_ownership] if args.key?(:can_accept_ownership)
2620+
@can_access_via_gen_ai = args[:can_access_via_gen_ai] if args.key?(:can_access_via_gen_ai)
26142621
@can_add_children = args[:can_add_children] if args.key?(:can_add_children)
26152622
@can_add_folder_from_another_drive = args[:can_add_folder_from_another_drive] if args.key?(:can_add_folder_from_another_drive)
26162623
@can_add_my_drive_parent = args[:can_add_my_drive_parent] if args.key?(:can_add_my_drive_parent)

generated/google-apis-drive_v3/lib/google/apis/drive_v3/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DriveV3
1818
# Version of the google-apis-drive_v3 gem
19-
GEM_VERSION = "0.82.0"
19+
GEM_VERSION = "0.83.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.19.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20260428"
25+
REVISION = "20260624"
2626
end
2727
end
2828
end

generated/google-apis-drive_v3/lib/google/apis/drive_v3/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -990,6 +990,7 @@ class Capabilities
990990
# @private
991991
class Representation < Google::Apis::Core::JsonRepresentation
992992
property :can_accept_ownership, as: 'canAcceptOwnership'
993+
property :can_access_via_gen_ai, as: 'canAccessViaGenAi'
993994
property :can_add_children, as: 'canAddChildren'
994995
property :can_add_folder_from_another_drive, as: 'canAddFolderFromAnotherDrive'
995996
property :can_add_my_drive_parent, as: 'canAddMyDriveParent'

0 commit comments

Comments
 (0)