gam7 7.10.6__py3-none-any.whl → 7.10.7__py3-none-any.whl
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.
Potentially problematic release.
This version of gam7 might be problematic. Click here for more details.
- gam/__init__.py +7 -2
- gam/gamlib/glgapi.py +1 -0
- gam/gamlib/glskus.py +2 -0
- {gam7-7.10.6.dist-info → gam7-7.10.7.dist-info}/METADATA +1 -1
- {gam7-7.10.6.dist-info → gam7-7.10.7.dist-info}/RECORD +8 -8
- {gam7-7.10.6.dist-info → gam7-7.10.7.dist-info}/WHEEL +0 -0
- {gam7-7.10.6.dist-info → gam7-7.10.7.dist-info}/entry_points.txt +0 -0
- {gam7-7.10.6.dist-info → gam7-7.10.7.dist-info}/licenses/LICENSE +0 -0
gam/__init__.py
CHANGED
|
@@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki
|
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
|
|
28
|
-
__version__ = '7.10.
|
|
28
|
+
__version__ = '7.10.07'
|
|
29
29
|
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
|
30
30
|
|
|
31
31
|
#pylint: disable=wrong-import-position
|
|
@@ -8864,6 +8864,7 @@ class CSVPrintFile():
|
|
|
8864
8864
|
GAPI.fileOrganizerNotYetEnabledForThisTeamDrive,
|
|
8865
8865
|
GAPI.fileOrganizerOnFoldersInSharedDriveOnly,
|
|
8866
8866
|
GAPI.fileOrganizerOnNonTeamDriveNotSupported,
|
|
8867
|
+
GAPI.cannotModifyInheritedPermission,
|
|
8867
8868
|
GAPI.teamDrivesFolderSharingNotSupported, GAPI.invalidLinkVisibility,
|
|
8868
8869
|
GAPI.invalidSharingRequest, GAPI.fileNeverWritable, GAPI.abusiveContentRestriction) as e:
|
|
8869
8870
|
entityActionFailedWarning([Ent.USER, user, Ent.SPREADSHEET, title,
|
|
@@ -29957,7 +29958,7 @@ DEVICE_ORDERBY_CHOICE_MAP = {
|
|
|
29957
29958
|
# [orderby <DeviceOrderByFieldName> [ascending|descending]]
|
|
29958
29959
|
# [all|company|personal|nocompanydevices|nopersonaldevices]
|
|
29959
29960
|
# [nodeviceusers|oneuserperrow]
|
|
29960
|
-
#
|
|
29961
|
+
# [clientstates]
|
|
29961
29962
|
# [formatjson [quotechar <Character>]]
|
|
29962
29963
|
# [showitemcountonly]
|
|
29963
29964
|
def doPrintCIDevices():
|
|
@@ -59522,6 +59523,7 @@ def _copyPermissions(drive, user, i, count, j, jcount,
|
|
|
59522
59523
|
GAPI.fileOrganizerNotYetEnabledForThisTeamDrive,
|
|
59523
59524
|
GAPI.fileOrganizerOnFoldersInSharedDriveOnly,
|
|
59524
59525
|
GAPI.fileOrganizerOnNonTeamDriveNotSupported,
|
|
59526
|
+
GAPI.cannotModifyInheritedPermission,
|
|
59525
59527
|
GAPI.teamDrivesFolderSharingNotSupported, GAPI.invalidLinkVisibility, GAPI.abusiveContentRestriction) as e:
|
|
59526
59528
|
entityActionFailedWarning(kvList, str(e), k, kcount)
|
|
59527
59529
|
break
|
|
@@ -60629,6 +60631,7 @@ def _updateMoveFilePermissions(drive, user, i, count,
|
|
|
60629
60631
|
GAPI.fileOrganizerNotYetEnabledForThisTeamDrive,
|
|
60630
60632
|
GAPI.fileOrganizerOnFoldersInSharedDriveOnly,
|
|
60631
60633
|
GAPI.fileOrganizerOnNonTeamDriveNotSupported,
|
|
60634
|
+
GAPI.cannotModifyInheritedPermission,
|
|
60632
60635
|
GAPI.teamDrivesFolderSharingNotSupported, GAPI.invalidLinkVisibility, GAPI.abusiveContentRestriction) as e:
|
|
60633
60636
|
entityActionFailedWarning(kvList, str(e), k, kcount)
|
|
60634
60637
|
break
|
|
@@ -63883,6 +63886,7 @@ def createDriveFileACL(users, useDomainAdminAccess=False):
|
|
|
63883
63886
|
GAPI.fileOrganizerNotYetEnabledForThisTeamDrive,
|
|
63884
63887
|
GAPI.fileOrganizerOnFoldersInSharedDriveOnly,
|
|
63885
63888
|
GAPI.fileOrganizerOnNonTeamDriveNotSupported,
|
|
63889
|
+
GAPI.cannotModifyInheritedPermission,
|
|
63886
63890
|
GAPI.teamDrivesFolderSharingNotSupported, GAPI.invalidLinkVisibility,
|
|
63887
63891
|
GAPI.invalidSharingRequest, GAPI.fileNeverWritable, GAPI.abusiveContentRestriction) as e:
|
|
63888
63892
|
entityActionFailedWarning([Ent.USER, user, entityType, fileName, Ent.PERMISSION_ID, permissionId], str(e), j, jcount)
|
|
@@ -64118,6 +64122,7 @@ def createDriveFilePermissions(users, useDomainAdminAccess=False):
|
|
|
64118
64122
|
GAPI.fileOrganizerNotYetEnabledForThisTeamDrive,
|
|
64119
64123
|
GAPI.fileOrganizerOnFoldersInSharedDriveOnly,
|
|
64120
64124
|
GAPI.fileOrganizerOnNonTeamDriveNotSupported,
|
|
64125
|
+
GAPI.cannotModifyInheritedPermission,
|
|
64121
64126
|
GAPI.teamDrivesFolderSharingNotSupported, GAPI.invalidLinkVisibility,
|
|
64122
64127
|
GAPI.invalidSharingRequest, GAPI.fileNeverWritable, GAPI.abusiveContentRestriction,
|
|
64123
64128
|
GAPI.serviceNotAvailable, GAPI.authError, GAPI.domainPolicy) as e:
|
gam/gamlib/glgapi.py
CHANGED
|
@@ -229,6 +229,7 @@ DRIVE3_CREATE_ACL_THROW_REASONS = [BAD_REQUEST, INVALID, INVALID_SHARING_REQUEST
|
|
|
229
229
|
FILE_ORGANIZER_NOT_YET_ENABLED_FOR_THIS_TEAMDRIVE,
|
|
230
230
|
FILE_ORGANIZER_ON_FOLDERS_IN_SHARED_DRIVE_ONLY,
|
|
231
231
|
FILE_ORGANIZER_ON_NON_TEAMDRIVE_NOT_SUPPORTED,
|
|
232
|
+
CANNOT_MODIFY_INHERITED_PERMISSION,
|
|
232
233
|
TEAMDRIVES_FOLDER_SHARING_NOT_SUPPORTED, INVALID_LINK_VISIBILITY, ABUSIVE_CONTENT_RESTRICTION]
|
|
233
234
|
DRIVE3_GET_ACL_REASONS = DRIVE_USER_THROW_REASONS+[FILE_NOT_FOUND, FORBIDDEN, INTERNAL_ERROR,
|
|
234
235
|
INSUFFICIENT_ADMINISTRATOR_PRIVILEGES, INSUFFICIENT_FILE_PERMISSIONS,
|
gam/gamlib/glskus.py
CHANGED
|
@@ -107,6 +107,8 @@ _SKUS = {
|
|
|
107
107
|
'product': '101047', 'aliases': ['aisecurity'], 'displayName': 'AI Security'},
|
|
108
108
|
'1010470007': {
|
|
109
109
|
'product': '101047', 'aliases': ['aimeetingsandmessaging'], 'displayName': 'AI Meetings and Messaging'},
|
|
110
|
+
'1010470008': {
|
|
111
|
+
'product': '101047', 'aliases': ['geminiultra'], 'displayName': 'Google AI Ultra for Business'},
|
|
110
112
|
'1010490001': {
|
|
111
113
|
'product': '101049', 'aliases': ['eeu'], 'displayName': 'Endpoint Education Upgrade'},
|
|
112
114
|
'1010500001': {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
gam/__init__.py,sha256=
|
|
1
|
+
gam/__init__.py,sha256=gqwRxpsHisE3vG2X2AHWvt6mgfwCTjW1rGYI2q0z9ao,3534107
|
|
2
2
|
gam/__main__.py,sha256=amz0-959ph6zkZKqjaar4n60yho-T37w6qWI36qx0CA,1049
|
|
3
3
|
gam/cacerts.pem,sha256=82Ak7btW_2XvocLUvAwPmpx8Chi0oqtZUG1gseLK_t4,50235
|
|
4
4
|
gam/cbcm-v1.1beta1.json,sha256=xO5XloCQQULmPbFBx5bckdqmbLFQ7sJ2TImhE1ysDIY,19439
|
|
@@ -27,12 +27,12 @@ gam/gamlib/glapi.py,sha256=A6kdyCacc9tvTaxMUNvWj8jWbOrss8e8XdkqF1xbN70,34572
|
|
|
27
27
|
gam/gamlib/glcfg.py,sha256=bNTckxzIM_HruxO2DfYsDbEgqOIz1RX6CbU6XOQQQyg,28296
|
|
28
28
|
gam/gamlib/glclargs.py,sha256=Ohe746FOQqMlXlutH-XJ6E1unYNzf_EJhdubnPp3new,42472
|
|
29
29
|
gam/gamlib/glentity.py,sha256=c9-7MAp0HruXEUVq8Nwkllxc4KypFeZRUFkvVzPwrwk,33760
|
|
30
|
-
gam/gamlib/glgapi.py,sha256=
|
|
30
|
+
gam/gamlib/glgapi.py,sha256=2mu7DQGGYmF7ZGXeBQu_mT1FNZgXbEQqcddJjHzbvE4,39833
|
|
31
31
|
gam/gamlib/glgdata.py,sha256=weRppttWm6uRyqtBoGPKoHiNZ2h28nhfUV4J_mbCszY,2707
|
|
32
32
|
gam/gamlib/glglobals.py,sha256=J0xcHggVrUBzHJ5GruenKV-qV1zPKcK2qWgAgN3i5Jw,9608
|
|
33
33
|
gam/gamlib/glindent.py,sha256=RfBa2LDfLIqPLL5vMfC689TCVmqn8xf-qulSzkiatrc,1228
|
|
34
34
|
gam/gamlib/glmsgs.py,sha256=uSshtTyemMcJGCnYMy3hIilYHIh-IHFbCLlY2aAyTGM,33798
|
|
35
|
-
gam/gamlib/glskus.py,sha256=
|
|
35
|
+
gam/gamlib/glskus.py,sha256=e1u3zw1MGQjBgAFXqjrGWQl2d7eYpVlMYGpIKNwjskQ,15360
|
|
36
36
|
gam/gamlib/gluprop.py,sha256=IyPLCyvn7-NHTUenM71YPQPXRZXx6CB5q-GtJ-FYd1c,11461
|
|
37
37
|
gam/gamlib/glverlibs.py,sha256=xoQXiwcE_-HVYKv-VYA8O0mazRsc9mN-_ysj1dAlMyc,992
|
|
38
38
|
gam/gamlib/yubikey.py,sha256=-UC-3oue9qarYK3LT7YL6Gmqs7TMK8oz9_AoxdaG2FA,7925
|
|
@@ -65,8 +65,8 @@ gam/googleapiclient/discovery_cache/base.py,sha256=yCDPtxnbNN-p5_9fzBacC6P3wcUPl
|
|
|
65
65
|
gam/googleapiclient/discovery_cache/file_cache.py,sha256=sim3Mg4HgRYo3vX75jvcKy_aV568EvIrtBfvfbw-044,4774
|
|
66
66
|
gam/iso8601/__init__.py,sha256=Z2PsYbXgAH5a5xzUvgczCboPzqWpm65kRcIngCnhViU,1218
|
|
67
67
|
gam/iso8601/iso8601.py,sha256=Li2FHZ4sBTWuthuQhyCvmvj0j6At8JbGzkSv2fc2RHU,4384
|
|
68
|
-
gam7-7.10.
|
|
69
|
-
gam7-7.10.
|
|
70
|
-
gam7-7.10.
|
|
71
|
-
gam7-7.10.
|
|
72
|
-
gam7-7.10.
|
|
68
|
+
gam7-7.10.7.dist-info/METADATA,sha256=magKLnQvWiUc1Exm6w0uq8CAPWXSSw8VeANe4O4yWqs,2978
|
|
69
|
+
gam7-7.10.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
70
|
+
gam7-7.10.7.dist-info/entry_points.txt,sha256=HVUM5J7dA8YwvJfG30jiLefR19ExMs387TWugWd9sf4,42
|
|
71
|
+
gam7-7.10.7.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
72
|
+
gam7-7.10.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|