File tree Expand file tree Collapse file tree 5 files changed +18
-3
lines changed
generated/google-apis-vault_v1 Expand file tree Collapse file tree 5 files changed +18
-3
lines changed Original file line number Diff line number Diff line change @@ -353727,6 +353727,7 @@
353727
353727
"/vault:v1/DriveOptions/clientSideEncryptedOption": client_side_encrypted_option
353728
353728
"/vault:v1/DriveOptions/includeSharedDrives": include_shared_drives
353729
353729
"/vault:v1/DriveOptions/includeTeamDrives": include_team_drives
353730
+ "/vault:v1/DriveOptions/sharedDrivesOption": shared_drives_option
353730
353731
"/vault:v1/DriveOptions/versionDate": version_date
353731
353732
"/vault:v1/Empty": empty
353732
353733
"/vault:v1/Export": export
Original file line number Diff line number Diff line change 1
1
# Release history for google-apis-vault_v1
2
2
3
+ ### v0.36.0 (2025-06-01)
4
+
5
+ * Regenerated from discovery document revision 20250527
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
### v0.35.0 (2025-05-04)
4
9
5
10
* Regenerated from discovery document revision 20250331
Original file line number Diff line number Diff line change @@ -619,6 +619,13 @@ class DriveOptions
619
619
attr_accessor :include_team_drives
620
620
alias_method :include_team_drives? , :include_team_drives
621
621
622
+ # Optional. Options to include or exclude documents in shared drives. We
623
+ # recommend using this field over include_shared_drives. This field overrides
624
+ # include_shared_drives and include_team_drives when set.
625
+ # Corresponds to the JSON property `sharedDrivesOption`
626
+ # @return [String]
627
+ attr_accessor :shared_drives_option
628
+
622
629
# Search the current version of the Drive file, but export the contents of the
623
630
# last version saved before 12:00 AM UTC on the specified date. Enter the date
624
631
# in UTC.
@@ -635,6 +642,7 @@ def update!(**args)
635
642
@client_side_encrypted_option = args [ :client_side_encrypted_option ] if args . key? ( :client_side_encrypted_option )
636
643
@include_shared_drives = args [ :include_shared_drives ] if args . key? ( :include_shared_drives )
637
644
@include_team_drives = args [ :include_team_drives ] if args . key? ( :include_team_drives )
645
+ @shared_drives_option = args [ :shared_drives_option ] if args . key? ( :shared_drives_option )
638
646
@version_date = args [ :version_date ] if args . key? ( :version_date )
639
647
end
640
648
end
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ module Google
16
16
module Apis
17
17
module VaultV1
18
18
# Version of the google-apis-vault_v1 gem
19
- GEM_VERSION = "0.35 .0"
19
+ GEM_VERSION = "0.36 .0"
20
20
21
21
# Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17 .0"
22
+ GENERATOR_VERSION = "0.18 .0"
23
23
24
24
# Revision of the discovery document this client was generated from
25
- REVISION = "20250331 "
25
+ REVISION = "20250527 "
26
26
end
27
27
end
28
28
end
Original file line number Diff line number Diff line change @@ -636,6 +636,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
636
636
property :client_side_encrypted_option , as : 'clientSideEncryptedOption'
637
637
property :include_shared_drives , as : 'includeSharedDrives'
638
638
property :include_team_drives , as : 'includeTeamDrives'
639
+ property :shared_drives_option , as : 'sharedDrivesOption'
639
640
property :version_date , as : 'versionDate'
640
641
end
641
642
end
You can’t perform that action at this time.
0 commit comments