gam7 7.9.2__py3-none-any.whl → 7.9.4__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 +22 -6
- gam/gamlib/glcfg.py +1 -1
- gam/gamlib/glentity.py +1 -1
- gam/gamlib/glmsgs.py +1 -0
- gam/gamlib/glskus.py +1 -1
- gam/gamlib/glverlibs.py +1 -1
- {gam7-7.9.2.dist-info → gam7-7.9.4.dist-info}/METADATA +1 -1
- {gam7-7.9.2.dist-info → gam7-7.9.4.dist-info}/RECORD +11 -11
- {gam7-7.9.2.dist-info → gam7-7.9.4.dist-info}/WHEEL +0 -0
- {gam7-7.9.2.dist-info → gam7-7.9.4.dist-info}/entry_points.txt +0 -0
- {gam7-7.9.2.dist-info → gam7-7.9.4.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.09.
|
|
28
|
+
__version__ = '7.09.04'
|
|
29
29
|
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
|
30
30
|
|
|
31
31
|
#pylint: disable=wrong-import-position
|
|
@@ -13138,7 +13138,7 @@ def doWhatIs():
|
|
|
13138
13138
|
entityUnknownWarning(Ent.EMAIL, email)
|
|
13139
13139
|
setSysExitRC(ENTITY_IS_UKNOWN_RC)
|
|
13140
13140
|
return
|
|
13141
|
-
if not invitableCheck
|
|
13141
|
+
if not invitableCheck:
|
|
13142
13142
|
isInvitableUser = False
|
|
13143
13143
|
else:
|
|
13144
13144
|
isInvitableUser, ci = _getIsInvitableUser(None, email)
|
|
@@ -28313,7 +28313,16 @@ CHROME_SCHEMA_SPECIAL_CASES = {
|
|
|
28313
28313
|
'chrome.users.RelaunchNotificationWithDurationV2':
|
|
28314
28314
|
{'relaunchnotificationperiodduration':
|
|
28315
28315
|
{'casedField': 'relaunchNotificationPeriodDuration',
|
|
28316
|
-
'type': 'duration', 'minVal':
|
|
28316
|
+
'type': 'duration', 'minVal': 1, 'maxVal': 168},
|
|
28317
|
+
'relaunchinitialquietperiodduration':
|
|
28318
|
+
{'casedField': 'relaunchInitialQuietPeriodDuration',
|
|
28319
|
+
'type': 'duration', 'minVal': 0, 'maxVal': None},
|
|
28320
|
+
'relaunchwindowstarttime':
|
|
28321
|
+
{'casedField': 'relaunchWindowStartTime',
|
|
28322
|
+
'type': 'timeOfDay'},
|
|
28323
|
+
'relaunchwindowdurationmin':
|
|
28324
|
+
{'casedField': 'relaunchWindowDurationMin',
|
|
28325
|
+
'type': 'duration', 'minVal': 1, 'maxVal': 1440}},
|
|
28317
28326
|
'chrome.users.SecurityTokenSessionSettingsV2':
|
|
28318
28327
|
{'securitytokensessionnotificationseconds':
|
|
28319
28328
|
{'casedField': 'securityTokenSessionNotificationSeconds',
|
|
@@ -28475,7 +28484,7 @@ def doUpdateChromePolicy():
|
|
|
28475
28484
|
return value
|
|
28476
28485
|
#if vtype == timeOfDay:
|
|
28477
28486
|
hours, minutes = value.split(':')
|
|
28478
|
-
return {vtype: {'hours': hours, 'minutes': minutes}}
|
|
28487
|
+
return {vtype: {'hours': int(hours), 'minutes': int(minutes)}}
|
|
28479
28488
|
|
|
28480
28489
|
cp = buildGAPIObject(API.CHROMEPOLICY)
|
|
28481
28490
|
cd = buildGAPIObject(API.DIRECTORY)
|
|
@@ -28931,7 +28940,7 @@ def _showChromePolicySchema(schema, FJQC, i=0, count=0):
|
|
|
28931
28940
|
return
|
|
28932
28941
|
printEntity([Ent.CHROME_POLICY_SCHEMA, schema['name']], i, count)
|
|
28933
28942
|
Ind.Increment()
|
|
28934
|
-
showJSON(None, schema, dictObjectsKey={'messageType': 'name', 'field': 'name'})
|
|
28943
|
+
showJSON(None, schema, dictObjectsKey={'messageType': 'name', 'field': 'name', 'fieldDescriptions': 'field'})
|
|
28935
28944
|
Ind.Decrement()
|
|
28936
28945
|
|
|
28937
28946
|
CHROME_POLICY_SCHEMA_FIELDS_CHOICE_MAP = {
|
|
@@ -51586,6 +51595,9 @@ def getStatusEventDateTime(dateType, dateList):
|
|
|
51586
51595
|
if dateType == 'timerange':
|
|
51587
51596
|
startTime = getTimeOrDeltaFromNow(returnDateTime=True)[0]
|
|
51588
51597
|
endTime = getTimeOrDeltaFromNow(returnDateTime=True)[0]
|
|
51598
|
+
if startTime >= endTime:
|
|
51599
|
+
Cmd.Backup()
|
|
51600
|
+
usageErrorExit(Msg.INVALID_EVENT_TIMERANGE.format(dateType, startTime, endTime))
|
|
51589
51601
|
recurrence = []
|
|
51590
51602
|
while checkArgumentPresent(['recurrence']):
|
|
51591
51603
|
recurrence.append(getString(Cmd.OB_RECURRENCE))
|
|
@@ -66166,7 +66178,11 @@ def printSharedDriveOrganizers(users, useDomainAdminAccess=False):
|
|
|
66166
66178
|
showNoOrganizerDrives = SHOW_NO_PERMISSIONS_DRIVES_CHOICE_MAP['false']
|
|
66167
66179
|
fieldsList = ['role', 'type', 'emailAddress']
|
|
66168
66180
|
cd = entityList = orgUnitId = query = matchPattern = None
|
|
66169
|
-
domainList =
|
|
66181
|
+
domainList = set()
|
|
66182
|
+
if GC.Values[GC.DOMAIN]:
|
|
66183
|
+
domainList.add(GC.Values[GC.DOMAIN])
|
|
66184
|
+
else:
|
|
66185
|
+
domainList.add(GM.Globals[GM.DECODED_ID_TOKEN].get('hd', 'UNKNOWN').lower())
|
|
66170
66186
|
oneOrganizer = True
|
|
66171
66187
|
while Cmd.ArgumentsRemaining():
|
|
66172
66188
|
myarg = getArgument()
|
gam/gamlib/glcfg.py
CHANGED
gam/gamlib/glentity.py
CHANGED
gam/gamlib/glmsgs.py
CHANGED
|
@@ -310,6 +310,7 @@ INVALID_ATTENDEE_CHANGE = 'Invalid attendee change "{0}"'
|
|
|
310
310
|
INVALID_CHARSET = 'Invalid charset "{0}"'
|
|
311
311
|
INVALID_DATE_TIME_RANGE = '{0} {1} must be greater than/equal to {2} {3}'
|
|
312
312
|
INVALID_ENTITY = 'Invalid {0}, {1}'
|
|
313
|
+
INVALID_EVENT_TIMERANGE = '{0} {1} must be less than {2}'
|
|
313
314
|
INVALID_FILE_SELECTION_WITH_ADMIN_ACCESS = 'Invalid file selection with adminaccess|asadmin'
|
|
314
315
|
INVALID_GROUP = 'Invalid Group'
|
|
315
316
|
INVALID_HTTP_HEADER = 'Invalid http header data: {0}'
|
gam/gamlib/glskus.py
CHANGED
gam/gamlib/glverlibs.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
gam/__init__.py,sha256=
|
|
1
|
+
gam/__init__.py,sha256=YAnpFpQJSMwosrIqRIRhOvyCMCyDXJcVhm7kT6riLL0,3518830
|
|
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
|
|
@@ -24,17 +24,17 @@ gam/atom/url.py,sha256=pxO1TlORxyKQTQ1bkBE1unFzjnv9c8LjJkm-UEORShY,4276
|
|
|
24
24
|
gam/gamlib/__init__.py,sha256=z5mF-y0j8pm-YNFBaiuxB4M_GAUPG-cXWwrhYwrVReM,679
|
|
25
25
|
gam/gamlib/glaction.py,sha256=1Il_HrChVnPkzZwiZs5au4mFQVtq4K1Z42uIuR6qdnI,9419
|
|
26
26
|
gam/gamlib/glapi.py,sha256=7epQ2Hk9SK4Q6SImdJfvGvT5txftyfb5_jrF5K9cMpk,34253
|
|
27
|
-
gam/gamlib/glcfg.py,sha256=
|
|
27
|
+
gam/gamlib/glcfg.py,sha256=bNTckxzIM_HruxO2DfYsDbEgqOIz1RX6CbU6XOQQQyg,28296
|
|
28
28
|
gam/gamlib/glclargs.py,sha256=zB6GMmDR_y5IRj7LuoM6-Bk_ETfNQ6sTqCNB6RdPfyg,42350
|
|
29
|
-
gam/gamlib/glentity.py,sha256=
|
|
29
|
+
gam/gamlib/glentity.py,sha256=6zL9uIMTXB4MwRRYKnCuAj7nZGfc16b-PIeeq4PGBlA,33691
|
|
30
30
|
gam/gamlib/glgapi.py,sha256=cGtvFvvBU3XQJLgtLCjs_V5VBUem_k0b5uUrK21VmeA,39491
|
|
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
|
-
gam/gamlib/glmsgs.py,sha256=
|
|
35
|
-
gam/gamlib/glskus.py,sha256=
|
|
34
|
+
gam/gamlib/glmsgs.py,sha256=Ql1ejqGqZ7SFzNtejn4hd1O5YtBhELwgjfDVXE0qsJM,33735
|
|
35
|
+
gam/gamlib/glskus.py,sha256=Q4UfVnZZxKXpyBc-iQy_uBgbNyIL519jMXHBotrMPio,15241
|
|
36
36
|
gam/gamlib/gluprop.py,sha256=IyPLCyvn7-NHTUenM71YPQPXRZXx6CB5q-GtJ-FYd1c,11461
|
|
37
|
-
gam/gamlib/glverlibs.py,sha256=
|
|
37
|
+
gam/gamlib/glverlibs.py,sha256=xoQXiwcE_-HVYKv-VYA8O0mazRsc9mN-_ysj1dAlMyc,992
|
|
38
38
|
gam/gamlib/yubikey.py,sha256=-UC-3oue9qarYK3LT7YL6Gmqs7TMK8oz9_AoxdaG2FA,7925
|
|
39
39
|
gam/gdata/__init__.py,sha256=uvjmSza2EdL7lGaoJ04-uXHGeYa0i1dBQHIetBybcUQ,29637
|
|
40
40
|
gam/gdata/service.py,sha256=CuImJDRVcNMM1dfo7V6T0LrztzqTNrIraaLkHXpL0Tw,70045
|
|
@@ -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.9.
|
|
69
|
-
gam7-7.9.
|
|
70
|
-
gam7-7.9.
|
|
71
|
-
gam7-7.9.
|
|
72
|
-
gam7-7.9.
|
|
68
|
+
gam7-7.9.4.dist-info/METADATA,sha256=5vlKfqpPz6DKhGtuivLL5d6b4lw3zxN-ww_KP_tsvNo,2977
|
|
69
|
+
gam7-7.9.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
70
|
+
gam7-7.9.4.dist-info/entry_points.txt,sha256=HVUM5J7dA8YwvJfG30jiLefR19ExMs387TWugWd9sf4,42
|
|
71
|
+
gam7-7.9.4.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
72
|
+
gam7-7.9.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|