google-apis-drive_v3 0.21.0 → 0.22.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3ca534050b7ad676b186586cac96788252e4c09a4b9b7c92c22ed8056ecdca8
|
4
|
+
data.tar.gz: 3ff97437e61268875634d17c586acbc08fc240b4f2dd457cc8845c118288ae54
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b930ccd593f31c3b8e8fa18053a06ca64929d44a286dd9c86fdc04b69ee3a923cdd1f2f5f12a41084025850900edb71f656a5b288bd2e270f07a6b0212ff6b5
|
7
|
+
data.tar.gz: d267450761749f44553958a7c698fd126668bac23d3542a171271decd7cd9e87434bbe474291ae6abf0d3ab05667ab7a03349911c2e58d05dca7491cd1511f83
|
data/CHANGELOG.md
CHANGED
@@ -882,6 +882,12 @@ module Google
|
|
882
882
|
attr_accessor :can_rename_drive
|
883
883
|
alias_method :can_rename_drive?, :can_rename_drive
|
884
884
|
|
885
|
+
# Whether the current user can reset the shared drive restrictions to defaults.
|
886
|
+
# Corresponds to the JSON property `canResetDriveRestrictions`
|
887
|
+
# @return [Boolean]
|
888
|
+
attr_accessor :can_reset_drive_restrictions
|
889
|
+
alias_method :can_reset_drive_restrictions?, :can_reset_drive_restrictions
|
890
|
+
|
885
891
|
# Whether the current user can share files or folders in this shared drive.
|
886
892
|
# Corresponds to the JSON property `canShare`
|
887
893
|
# @return [Boolean]
|
@@ -916,6 +922,7 @@ module Google
|
|
916
922
|
@can_read_revisions = args[:can_read_revisions] if args.key?(:can_read_revisions)
|
917
923
|
@can_rename = args[:can_rename] if args.key?(:can_rename)
|
918
924
|
@can_rename_drive = args[:can_rename_drive] if args.key?(:can_rename_drive)
|
925
|
+
@can_reset_drive_restrictions = args[:can_reset_drive_restrictions] if args.key?(:can_reset_drive_restrictions)
|
919
926
|
@can_share = args[:can_share] if args.key?(:can_share)
|
920
927
|
@can_trash_children = args[:can_trash_children] if args.key?(:can_trash_children)
|
921
928
|
end
|
@@ -2944,6 +2951,12 @@ module Google
|
|
2944
2951
|
attr_accessor :can_rename_team_drive
|
2945
2952
|
alias_method :can_rename_team_drive?, :can_rename_team_drive
|
2946
2953
|
|
2954
|
+
# Whether the current user can reset the Team Drive restrictions to defaults.
|
2955
|
+
# Corresponds to the JSON property `canResetTeamDriveRestrictions`
|
2956
|
+
# @return [Boolean]
|
2957
|
+
attr_accessor :can_reset_team_drive_restrictions
|
2958
|
+
alias_method :can_reset_team_drive_restrictions?, :can_reset_team_drive_restrictions
|
2959
|
+
|
2947
2960
|
# Whether the current user can share files or folders in this Team Drive.
|
2948
2961
|
# Corresponds to the JSON property `canShare`
|
2949
2962
|
# @return [Boolean]
|
@@ -2979,6 +2992,7 @@ module Google
|
|
2979
2992
|
@can_remove_children = args[:can_remove_children] if args.key?(:can_remove_children)
|
2980
2993
|
@can_rename = args[:can_rename] if args.key?(:can_rename)
|
2981
2994
|
@can_rename_team_drive = args[:can_rename_team_drive] if args.key?(:can_rename_team_drive)
|
2995
|
+
@can_reset_team_drive_restrictions = args[:can_reset_team_drive_restrictions] if args.key?(:can_reset_team_drive_restrictions)
|
2982
2996
|
@can_share = args[:can_share] if args.key?(:can_share)
|
2983
2997
|
@can_trash_children = args[:can_trash_children] if args.key?(:can_trash_children)
|
2984
2998
|
end
|
@@ -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.22.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220508"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -485,6 +485,7 @@ module Google
|
|
485
485
|
property :can_read_revisions, as: 'canReadRevisions'
|
486
486
|
property :can_rename, as: 'canRename'
|
487
487
|
property :can_rename_drive, as: 'canRenameDrive'
|
488
|
+
property :can_reset_drive_restrictions, as: 'canResetDriveRestrictions'
|
488
489
|
property :can_share, as: 'canShare'
|
489
490
|
property :can_trash_children, as: 'canTrashChildren'
|
490
491
|
end
|
@@ -908,6 +909,7 @@ module Google
|
|
908
909
|
property :can_remove_children, as: 'canRemoveChildren'
|
909
910
|
property :can_rename, as: 'canRename'
|
910
911
|
property :can_rename_team_drive, as: 'canRenameTeamDrive'
|
912
|
+
property :can_reset_team_drive_restrictions, as: 'canResetTeamDriveRestrictions'
|
911
913
|
property :can_share, as: 'canShare'
|
912
914
|
property :can_trash_children, as: 'canTrashChildren'
|
913
915
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-drive_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-drive_v3/v0.22.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-drive_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|