File tree Expand file tree Collapse file tree
generated/google-apis-drive_v3 Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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
2828end
Original file line number Diff line number Diff 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'
You can’t perform that action at this time.
0 commit comments