gam7 7.12.2__py3-none-any.whl → 7.13.1__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 +182 -11
- gam/gamlib/glclargs.py +4 -1
- gam/gamlib/glentity.py +2 -0
- {gam7-7.12.2.dist-info → gam7-7.13.1.dist-info}/METADATA +1 -1
- {gam7-7.12.2.dist-info → gam7-7.13.1.dist-info}/RECORD +8 -8
- {gam7-7.12.2.dist-info → gam7-7.13.1.dist-info}/WHEEL +0 -0
- {gam7-7.12.2.dist-info → gam7-7.13.1.dist-info}/entry_points.txt +0 -0
- {gam7-7.12.2.dist-info → gam7-7.13.1.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.
|
|
28
|
+
__version__ = '7.13.01'
|
|
29
29
|
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
|
|
30
30
|
|
|
31
31
|
#pylint: disable=wrong-import-position
|
|
@@ -13641,7 +13641,7 @@ REPORT_ACTIVITIES_TIME_OBJECTS = {'time'}
|
|
|
13641
13641
|
# [(user all|<UserItem>)|(orgunit|org|ou <OrgUnitPath> [showorgunit])|(select <UserTypeEntity>)]
|
|
13642
13642
|
# [([start <Time>] [end <Time>])|(range <Time> <Time>)|
|
|
13643
13643
|
# yesterday|today|thismonth|(previousmonths <Integer>)]
|
|
13644
|
-
# [
|
|
13644
|
+
# [filter <String> (filtertime<String> <Time>)*]
|
|
13645
13645
|
# [event|events <EventNameList>] [ip <String>]
|
|
13646
13646
|
# [groupidfilter <String>]
|
|
13647
13647
|
# [maxactivities <Number>] [maxevents <Number>] [maxresults <Number>]
|
|
@@ -13653,7 +13653,7 @@ REPORT_ACTIVITIES_TIME_OBJECTS = {'time'}
|
|
|
13653
13653
|
# [(date <Date>)|(range <Date> <Date>)|
|
|
13654
13654
|
# yesterday|today|thismonth|(previousmonths <Integer>)]
|
|
13655
13655
|
# [nodatechange | (fulldatarequired all|<UserServiceNameList>)]
|
|
13656
|
-
# [
|
|
13656
|
+
# [filter <String> (filtertime<String> <Time>)*]
|
|
13657
13657
|
# [(fields|parameters <String>)|(services <UserServiceNameList>)]
|
|
13658
13658
|
# [aggregatebydate|aggregatebyuser [Boolean]]
|
|
13659
13659
|
# [maxresults <Number>]
|
|
@@ -25491,7 +25491,7 @@ def doUpdateBrowsers():
|
|
|
25491
25491
|
checkEntityAFDNEorAccessErrorExit(None, Ent.CHROME_BROWSER, deviceId, i, count)
|
|
25492
25492
|
|
|
25493
25493
|
def _getChromeProfileName():
|
|
25494
|
-
profileName = getString(Cmd.
|
|
25494
|
+
profileName = getString(Cmd.OB_CHROMEPROFILE_NAME)
|
|
25495
25495
|
if not profileName.startswith('customers'):
|
|
25496
25496
|
customerId = _getCustomerId()
|
|
25497
25497
|
profileName = f'customers/{customerId}/profiles/{profileName}'
|
|
@@ -25598,15 +25598,15 @@ CHROMEPROFILE_ORDERBY_CHOICE_MAP = {
|
|
|
25598
25598
|
}
|
|
25599
25599
|
|
|
25600
25600
|
# gam show chromeprofiles
|
|
25601
|
-
# [
|
|
25601
|
+
# [filter <String> (filtertime<String> <Time>)*]
|
|
25602
25602
|
# [orderby <ChromeProfileOrderByFieldName> [ascending|descending]]
|
|
25603
25603
|
# <ChromeProfileFieldName>* [fields <ChromeProfileFieldNameList>]
|
|
25604
25604
|
# [formatjson]
|
|
25605
25605
|
# gam print chromeprofiles [todrive <ToDriveAttribute>*]
|
|
25606
|
-
# [
|
|
25606
|
+
# [filter <String> (filtertime<String> <Time>)*]
|
|
25607
25607
|
# [orderby <ChromeProfileOrderByFieldName> [ascending|descending]]
|
|
25608
25608
|
# <ChromeProfileFieldName>* [fields <ChromeProfileFieldNameList>]
|
|
25609
|
-
# [
|
|
25609
|
+
# [formatjson [quotechar <Character>]]
|
|
25610
25610
|
def doPrintShowChromeProfiles():
|
|
25611
25611
|
def _printProfile(profile):
|
|
25612
25612
|
row = flattenJSON(profile, timeObjects=CHROMEPROFILE_TIME_OBJECTS)
|
|
@@ -25641,7 +25641,7 @@ def doPrintShowChromeProfiles():
|
|
|
25641
25641
|
sortHeaders = True
|
|
25642
25642
|
else:
|
|
25643
25643
|
FJQC.GetFormatJSONQuoteChar(myarg, True)
|
|
25644
|
-
if filterTimes and
|
|
25644
|
+
if filterTimes and cbfilter is not None:
|
|
25645
25645
|
for filterTimeName, filterTimeValue in iter(filterTimes.items()):
|
|
25646
25646
|
cbfilter = cbfilter.replace(f'#{filterTimeName}#', filterTimeValue)
|
|
25647
25647
|
fields = getItemFieldsFromFieldsList('chromeBrowserProfiles', fieldsList)
|
|
@@ -25676,6 +25676,172 @@ def doPrintShowChromeProfiles():
|
|
|
25676
25676
|
csvPF.SetSortTitles(['name', 'profileId'])
|
|
25677
25677
|
csvPF.writeCSVfile('Chrome Profiles')
|
|
25678
25678
|
|
|
25679
|
+
def _getChromeProfileNameList():
|
|
25680
|
+
if not Cmd.PeekArgumentPresent(['select', 'filter', 'filters']):
|
|
25681
|
+
return getString(Cmd.OB_CHROMEPROFILE_NAME_LIST).replace(',', ' ').split()
|
|
25682
|
+
return []
|
|
25683
|
+
|
|
25684
|
+
def _initChromeProfileNameParameters():
|
|
25685
|
+
cm = buildGAPIObject(API.CHROMEMANAGEMENT)
|
|
25686
|
+
return (cm, {'profileNameList': _getChromeProfileNameList(), 'customerId': _getCustomerId(),
|
|
25687
|
+
'cbfilter': None, 'filterTimes': {},
|
|
25688
|
+
'OBY': OrderBy(CHROMEPROFILE_ORDERBY_CHOICE_MAP)})
|
|
25689
|
+
|
|
25690
|
+
def _getChromeProfileNameParameters(myarg, parameters):
|
|
25691
|
+
if not parameters['cbfilter'] and myarg == 'select':
|
|
25692
|
+
parameters['profileNameList'].extend(getEntityList(Cmd.OB_CHROMEPROFILE_NAME_LIST))
|
|
25693
|
+
elif not parameters['profileNameList'] and myarg == 'orderby':
|
|
25694
|
+
parameters['OBY'].GetChoice()
|
|
25695
|
+
elif not parameters['profileNameList'] and myarg.startswith('filtertime'):
|
|
25696
|
+
parameters['filterTimes'][myarg] = getTimeOrDeltaFromNow()
|
|
25697
|
+
elif not parameters['profileNameList'] and myarg in {'filter', 'filters'}:
|
|
25698
|
+
parameters['cbfilter'] = getString(Cmd.OB_STRING)
|
|
25699
|
+
else:
|
|
25700
|
+
return False
|
|
25701
|
+
return True
|
|
25702
|
+
|
|
25703
|
+
def _getChromeProfileNameEntityForCommand(cm, parameters):
|
|
25704
|
+
if parameters['cbfilter'] is None:
|
|
25705
|
+
customerId = parameters['customerId']
|
|
25706
|
+
for i, profileName in enumerate(parameters['profileNameList']):
|
|
25707
|
+
if not profileName.startswith('customers'):
|
|
25708
|
+
parameters['profileNameList'][i] = f'customers/{customerId}/profiles/{profileName}'
|
|
25709
|
+
return
|
|
25710
|
+
if parameters['filterTimes']:
|
|
25711
|
+
for filterTimeName, filterTimeValue in iter(parameters['filterTimes'].items()):
|
|
25712
|
+
parameters['cbfilter'] = parameters['cbfilter'].replace(f'#{filterTimeName}#', filterTimeValue)
|
|
25713
|
+
printGettingAllAccountEntities(Ent.CHROME_PROFILE, parameters['cbfilter'])
|
|
25714
|
+
pageMessage = getPageMessage()
|
|
25715
|
+
try:
|
|
25716
|
+
feed = yieldGAPIpages(cm.customers().profiles(), 'list', 'chromeBrowserProfiles',
|
|
25717
|
+
pageMessage=pageMessage,
|
|
25718
|
+
throwReasons=[GAPI.INVALID_ARGUMENT, GAPI.PERMISSION_DENIED],
|
|
25719
|
+
parent=f'customers/{parameters["customerId"]}', pageSize=200,
|
|
25720
|
+
filter=parameters['cbfilter'], orderBy=parameters['OBY'].orderBy,
|
|
25721
|
+
fields='nextPageToken,chromeBrowserProfiles(name)')
|
|
25722
|
+
for profiles in feed:
|
|
25723
|
+
for profile in profiles:
|
|
25724
|
+
parameters['profileNameList'].append(profile['name'])
|
|
25725
|
+
except (GAPI.invalidArgument, GAPI.permissionDenied) as e:
|
|
25726
|
+
entityActionFailedExit([Ent.CHROME_PROFILE, parameters['cbfilter']], str(e))
|
|
25727
|
+
|
|
25728
|
+
CHROMEPROFILECOMMAND_TIME_OBJECTS = {
|
|
25729
|
+
'clientExecutionTime',
|
|
25730
|
+
'issueTime',
|
|
25731
|
+
}
|
|
25732
|
+
|
|
25733
|
+
def _showChromeProfileCommand(profcmd, FJQC, i=0, count=0):
|
|
25734
|
+
if FJQC.formatJSON:
|
|
25735
|
+
printLine(json.dumps(cleanJSON(profcmd, timeObjects=CHROMEPROFILECOMMAND_TIME_OBJECTS),
|
|
25736
|
+
ensure_ascii=False, sort_keys=True))
|
|
25737
|
+
return
|
|
25738
|
+
printEntity([Ent.CHROME_PROFILE_COMMAND, profcmd['name']], i, count)
|
|
25739
|
+
Ind.Increment()
|
|
25740
|
+
showJSON(None, profcmd, timeObjects=CHROMEPROFILECOMMAND_TIME_OBJECTS)
|
|
25741
|
+
Ind.Decrement()
|
|
25742
|
+
|
|
25743
|
+
# gam create chromeprofilecommand <ChromeProfileNameEntity>
|
|
25744
|
+
# [clearcache [<Boolean>]] [clearcookies [<Boolean>]]
|
|
25745
|
+
# [formatjson]
|
|
25746
|
+
def doCreateChromeProfileCommand():
|
|
25747
|
+
cm, parameters = _initChromeProfileNameParameters()
|
|
25748
|
+
body = {'commandType': 'clearBrowsingData', 'payload': {}}
|
|
25749
|
+
FJQC = FormatJSONQuoteChar()
|
|
25750
|
+
while Cmd.ArgumentsRemaining():
|
|
25751
|
+
myarg = getArgument()
|
|
25752
|
+
if myarg == 'clearcache':
|
|
25753
|
+
body['payload']['clearCache'] = getBoolean()
|
|
25754
|
+
elif myarg == 'clearcookies':
|
|
25755
|
+
body['payload']['clearCookies'] = getBoolean()
|
|
25756
|
+
else:
|
|
25757
|
+
FJQC.GetFormatJSON(myarg)
|
|
25758
|
+
_getChromeProfileNameEntityForCommand(cm, parameters)
|
|
25759
|
+
count = len(parameters['profileNameList'])
|
|
25760
|
+
i = 0
|
|
25761
|
+
for profileName in parameters['profileNameList']:
|
|
25762
|
+
i +=1
|
|
25763
|
+
try:
|
|
25764
|
+
profcmd = callGAPI(cm.customers().profiles().commands(), 'create',
|
|
25765
|
+
throwReasons=[GAPI.INVALID_ARGUMENT, GAPI.NOT_FOUND, GAPI.PERMISSION_DENIED],
|
|
25766
|
+
parent=profileName, body=body)
|
|
25767
|
+
_showChromeProfileCommand(profcmd, FJQC)
|
|
25768
|
+
except (GAPI.notFound) as e:
|
|
25769
|
+
entityActionFailedWarning([Ent.CHROME_PROFILE_COMMAND, profileName], str(e), i, count)
|
|
25770
|
+
except (GAPI.invalidArgument, GAPI.permissionDenied) as e:
|
|
25771
|
+
entityActionFailedExit([Ent.CHROME_PROFILE_COMMAND, profileName], str(e))
|
|
25772
|
+
|
|
25773
|
+
# gam info chromeprofilecommand <ChromeProfileCommandName>
|
|
25774
|
+
# [formatjson]
|
|
25775
|
+
def doInfoChromeProfileCommand():
|
|
25776
|
+
cm = buildGAPIObject(API.CHROMEMANAGEMENT)
|
|
25777
|
+
profileCommandName = _getChromeProfileName()
|
|
25778
|
+
FJQC = FormatJSONQuoteChar()
|
|
25779
|
+
while Cmd.ArgumentsRemaining():
|
|
25780
|
+
myarg = getArgument()
|
|
25781
|
+
FJQC.GetFormatJSON(myarg)
|
|
25782
|
+
try:
|
|
25783
|
+
profcmd = callGAPI(cm.customers().profiles().commands(), 'get',
|
|
25784
|
+
throwReasons=[GAPI.INVALID_ARGUMENT, GAPI.NOT_FOUND, GAPI.PERMISSION_DENIED],
|
|
25785
|
+
name=profileCommandName)
|
|
25786
|
+
_showChromeProfileCommand(profcmd, FJQC)
|
|
25787
|
+
except (GAPI.invalidArgument, GAPI.notFound, GAPI.permissionDenied) as e:
|
|
25788
|
+
entityActionFailedExit([Ent.CHROME_PROFILE, profileCommandName], str(e))
|
|
25789
|
+
|
|
25790
|
+
# gam show chromeprofilecommands <ChromeProfileNameEntity>
|
|
25791
|
+
# [formatjson]
|
|
25792
|
+
# gam print chromeprofilecommands <ChromeProfilNameEntity> [todrive <ToDriveAttribute>*]
|
|
25793
|
+
# [formatjson [quotechar <Character>]]
|
|
25794
|
+
def doPrintShowChromeProfileCommands():
|
|
25795
|
+
def _printProfileCommand(profcmd):
|
|
25796
|
+
row = flattenJSON(profcmd, timeObjects=CHROMEPROFILECOMMAND_TIME_OBJECTS)
|
|
25797
|
+
if not FJQC.formatJSON:
|
|
25798
|
+
csvPF.WriteRowTitles(row)
|
|
25799
|
+
elif csvPF.CheckRowTitles(row):
|
|
25800
|
+
csvPF.WriteRowNoFilter({'name': profcmd['name'],
|
|
25801
|
+
'JSON': json.dumps(cleanJSON(profcmd, timeObjects=CHROMEPROFILECOMMAND_TIME_OBJECTS),
|
|
25802
|
+
ensure_ascii=False, sort_keys=True)})
|
|
25803
|
+
|
|
25804
|
+
csvPF = CSVPrintFile(['name']) if Act.csvFormat() else None
|
|
25805
|
+
FJQC = FormatJSONQuoteChar(csvPF)
|
|
25806
|
+
cm, parameters = _initChromeProfileNameParameters()
|
|
25807
|
+
while Cmd.ArgumentsRemaining():
|
|
25808
|
+
myarg = getArgument()
|
|
25809
|
+
if csvPF and myarg == 'todrive':
|
|
25810
|
+
csvPF.GetTodriveParameters()
|
|
25811
|
+
elif _getChromeProfileNameParameters(myarg, parameters):
|
|
25812
|
+
pass
|
|
25813
|
+
else:
|
|
25814
|
+
FJQC.GetFormatJSONQuoteChar(myarg, True)
|
|
25815
|
+
_getChromeProfileNameEntityForCommand(cm, parameters)
|
|
25816
|
+
count = len(parameters['profileNameList'])
|
|
25817
|
+
i = 0
|
|
25818
|
+
for profileName in parameters['profileNameList']:
|
|
25819
|
+
i +=1
|
|
25820
|
+
printGettingEntityItemForWhom(Ent.CHROME_PROFILE_COMMAND, profileName, i, count)
|
|
25821
|
+
pageMessage = getPageMessage()
|
|
25822
|
+
try:
|
|
25823
|
+
profcmds = callGAPIpages(cm.customers().profiles().commands(), 'list', 'chromeBrowserProfileCommands',
|
|
25824
|
+
pageMessage=pageMessage,
|
|
25825
|
+
throwReasons=[GAPI.NOT_FOUND, GAPI.INVALID_ARGUMENT, GAPI.PERMISSION_DENIED],
|
|
25826
|
+
parent=profileName, pageSize=100)
|
|
25827
|
+
if not csvPF:
|
|
25828
|
+
jcount = len(profcmds)
|
|
25829
|
+
Ind.Increment()
|
|
25830
|
+
j = 0
|
|
25831
|
+
for profcmd in profcmds:
|
|
25832
|
+
j += 1
|
|
25833
|
+
_showChromeProfileCommand(profcmd, FJQC, j, jcount)
|
|
25834
|
+
Ind.Decrement()
|
|
25835
|
+
else:
|
|
25836
|
+
for profcmd in profcmds:
|
|
25837
|
+
_printProfileCommand(profcmd)
|
|
25838
|
+
except (GAPI.notFound) as e:
|
|
25839
|
+
entityActionFailedWarning([Ent.CHROME_PROFILE, profileName], str(e), i, count)
|
|
25840
|
+
except (GAPI.invalidArgument, GAPI.permissionDenied) as e:
|
|
25841
|
+
entityActionFailedExit([Ent.CHROME_PROFILE, profileName], str(e))
|
|
25842
|
+
if csvPF:
|
|
25843
|
+
csvPF.writeCSVfile('Chrome Profile Commands')
|
|
25844
|
+
|
|
25679
25845
|
BROWSER_ORDERBY_CHOICE_MAP = {
|
|
25680
25846
|
'annotatedassetid': 'annotated_asset_id', 'asset': 'annotated_asset_id', 'assetid': 'annotated_asset_id',
|
|
25681
25847
|
'annotatedlocation': 'annotated_location', 'location': 'annotated_location',
|
|
@@ -73269,11 +73435,11 @@ def printShowForms(users):
|
|
|
73269
73435
|
FORM_RESPONSE_TIME_OBJECTS = {'createTime', 'lastSubmittedTime'}
|
|
73270
73436
|
|
|
73271
73437
|
# gam <UserTypeEntity> print formresponses <DriveFileEntity> [todrive <ToDriveAttribute>*]
|
|
73272
|
-
# [
|
|
73438
|
+
# [filter <String> (filtertime<String> <Time>)*]
|
|
73273
73439
|
# (addcsvdata <FieldName> <String>)*
|
|
73274
73440
|
# [countsonly|(formatjson [quotechar <Character>])]
|
|
73275
73441
|
# gam <UserTypeEntity> show formresponses <DriveFileEntity>
|
|
73276
|
-
# [
|
|
73442
|
+
# [filter <String> (filtertime<String> <Time>)*]
|
|
73277
73443
|
# [countsonly|formatjson]
|
|
73278
73444
|
def printShowFormResponses(users):
|
|
73279
73445
|
csvPF = CSVPrintFile(['User', 'formId', 'responseId', 'createTime', 'lastSubmittedTime', 'respondentEmail', 'totalScore'],
|
|
@@ -73299,7 +73465,7 @@ def printShowFormResponses(users):
|
|
|
73299
73465
|
addCSVData[k] = getString(Cmd.OB_STRING, minLen=0)
|
|
73300
73466
|
else:
|
|
73301
73467
|
FJQC.GetFormatJSONQuoteChar(myarg, True)
|
|
73302
|
-
if filterTimes and
|
|
73468
|
+
if filterTimes and frfilter is not None:
|
|
73303
73469
|
for filterTimeName, filterTimeValue in iter(filterTimes.items()):
|
|
73304
73470
|
frfilter = frfilter.replace(f'#{filterTimeName}#', filterTimeValue)
|
|
73305
73471
|
if csvPF:
|
|
@@ -76616,6 +76782,7 @@ MAIN_ADD_CREATE_FUNCTIONS = {
|
|
|
76616
76782
|
Cmd.ARG_CHATMESSAGE: doCreateChatMessage,
|
|
76617
76783
|
Cmd.ARG_CHROMENETWORK: doCreateChromeNetwork,
|
|
76618
76784
|
Cmd.ARG_CHROMEPOLICYIMAGE: doCreateChromePolicyImage,
|
|
76785
|
+
Cmd.ARG_CHROMEPROFILECOMMAND: doCreateChromeProfileCommand,
|
|
76619
76786
|
Cmd.ARG_CIGROUP: doCreateCIGroup,
|
|
76620
76787
|
Cmd.ARG_CONTACT: doCreateDomainContact,
|
|
76621
76788
|
Cmd.ARG_COURSE: doCreateCourse,
|
|
@@ -76810,6 +76977,7 @@ MAIN_COMMANDS_WITH_OBJECTS = {
|
|
|
76810
76977
|
Cmd.ARG_CHATSPACE: doInfoChatSpace,
|
|
76811
76978
|
Cmd.ARG_CHROMEAPP: doInfoChromeApp,
|
|
76812
76979
|
Cmd.ARG_CHROMEPROFILE: doInfoChromeProfile,
|
|
76980
|
+
Cmd.ARG_CHROMEPROFILECOMMAND: doInfoChromeProfileCommand,
|
|
76813
76981
|
Cmd.ARG_CHROMESCHEMA: doInfoChromePolicySchemas,
|
|
76814
76982
|
Cmd.ARG_CIGROUP: doInfoCIGroups,
|
|
76815
76983
|
Cmd.ARG_CIGROUPMEMBERS: doInfoCIGroupMembers,
|
|
@@ -76896,6 +77064,7 @@ MAIN_COMMANDS_WITH_OBJECTS = {
|
|
|
76896
77064
|
Cmd.ARG_CHROMENEEDSATTN: doPrintShowChromeNeedsAttn,
|
|
76897
77065
|
Cmd.ARG_CHROMEPOLICY: doPrintShowChromePolicies,
|
|
76898
77066
|
Cmd.ARG_CHROMEPROFILE: doPrintShowChromeProfiles,
|
|
77067
|
+
Cmd.ARG_CHROMEPROFILECOMMAND: doPrintShowChromeProfileCommands,
|
|
76899
77068
|
Cmd.ARG_CHROMESCHEMA: doPrintShowChromePolicySchemas,
|
|
76900
77069
|
Cmd.ARG_CHROMESNVALIDITY: doPrintChromeSnValidity,
|
|
76901
77070
|
Cmd.ARG_CHROMEVERSIONS: doPrintShowChromeVersions,
|
|
@@ -77028,6 +77197,7 @@ MAIN_COMMANDS_WITH_OBJECTS = {
|
|
|
77028
77197
|
Cmd.ARG_CHROMENEEDSATTN: doPrintShowChromeNeedsAttn,
|
|
77029
77198
|
Cmd.ARG_CHROMEPOLICY: doPrintShowChromePolicies,
|
|
77030
77199
|
Cmd.ARG_CHROMEPROFILE: doPrintShowChromeProfiles,
|
|
77200
|
+
Cmd.ARG_CHROMEPROFILECOMMAND: doPrintShowChromeProfileCommands,
|
|
77031
77201
|
Cmd.ARG_CHROMESCHEMA: doPrintShowChromePolicySchemas,
|
|
77032
77202
|
Cmd.ARG_CHROMEVERSIONS: doPrintShowChromeVersions,
|
|
77033
77203
|
Cmd.ARG_CIGROUPMEMBERS: doShowCIGroupMembers,
|
|
@@ -77210,6 +77380,7 @@ MAIN_COMMANDS_OBJ_ALIASES = {
|
|
|
77210
77380
|
Cmd.ARG_CHROMENETWORKS: Cmd.ARG_CHROMENETWORK,
|
|
77211
77381
|
Cmd.ARG_CHROMEPOLICIES: Cmd.ARG_CHROMEPOLICY,
|
|
77212
77382
|
Cmd.ARG_CHROMEPROFILES: Cmd.ARG_CHROMEPROFILE,
|
|
77383
|
+
Cmd.ARG_CHROMEPROFILECOMMANDS: Cmd.ARG_CHROMEPROFILECOMMAND,
|
|
77213
77384
|
Cmd.ARG_CHROMESCHEMAS: Cmd.ARG_CHROMESCHEMA,
|
|
77214
77385
|
Cmd.ARG_CIGROUPS: Cmd.ARG_CIGROUP,
|
|
77215
77386
|
Cmd.ARG_CIGROUPSMEMBERS: Cmd.ARG_CIGROUPMEMBERS,
|
gam/gamlib/glclargs.py
CHANGED
|
@@ -485,6 +485,8 @@ class GamCLArgs():
|
|
|
485
485
|
ARG_CHROMEPOLICIES = 'chromepolicies'
|
|
486
486
|
ARG_CHROMEPROFILE = 'chromeprofile'
|
|
487
487
|
ARG_CHROMEPROFILES = 'chromeprofiles'
|
|
488
|
+
ARG_CHROMEPROFILECOMMAND = 'chromeprofilecommand'
|
|
489
|
+
ARG_CHROMEPROFILECOMMANDS = 'chromeprofilecommands'
|
|
488
490
|
ARG_CHROMESCHEMA = 'chromeschema'
|
|
489
491
|
ARG_CHROMESCHEMAS = 'chromeschemas'
|
|
490
492
|
ARG_CHROMESNVALIDITY = 'chromesnvalidity'
|
|
@@ -855,7 +857,8 @@ class GamCLArgs():
|
|
|
855
857
|
OB_CHAT_SPACE = 'ChatSpace'
|
|
856
858
|
OB_CHAT_SPACE_LIST = 'ChatSpaceList'
|
|
857
859
|
OB_CHAT_THREAD = 'ChatThread'
|
|
858
|
-
|
|
860
|
+
OB_CHROMEPROFILE_NAME = 'ChromeProfileName'
|
|
861
|
+
OB_CHROMEPROFILE_NAME_LIST = 'ChromeProfileNameList'
|
|
859
862
|
OB_CHROME_VERSION = 'ChromeVersion'
|
|
860
863
|
OB_CIDR_NETMASK = 'CIDRnetmask'
|
|
861
864
|
OB_CIGROUP_ALIAS_LIST = "CIGroupAliasList"
|
gam/gamlib/glentity.py
CHANGED
|
@@ -111,6 +111,7 @@ class GamEntity():
|
|
|
111
111
|
CHROME_POLICY_IMAGE = 'cpim'
|
|
112
112
|
CHROME_POLICY_SCHEMA = 'cpsc'
|
|
113
113
|
CHROME_PROFILE = 'cpro'
|
|
114
|
+
CHROME_PROFILE_COMMAND = 'cpcm'
|
|
114
115
|
CHROME_RELEASE = 'crel'
|
|
115
116
|
CHROME_VERSION = 'cver'
|
|
116
117
|
CLASSIFICATION_LABEL = 'dlab'
|
|
@@ -462,6 +463,7 @@ class GamEntity():
|
|
|
462
463
|
CHROME_POLICY_IMAGE: ['Chrome Policy Images', 'Chrome Policy Image'],
|
|
463
464
|
CHROME_POLICY_SCHEMA: ['Chrome Policy Schemas', 'Chrome Policy Schema'],
|
|
464
465
|
CHROME_PROFILE: ['Chrome Profiles', 'Chrome Profile'],
|
|
466
|
+
CHROME_PROFILE_COMMAND: ['Chrome Profile Commands', 'Chrome Profile Command'],
|
|
465
467
|
CHROME_RELEASE: ['Chrome Releases', 'Chrome Release'],
|
|
466
468
|
CHROME_VERSION: ['Chrome Versions', 'Chrome Version'],
|
|
467
469
|
CLASSIFICATION_LABEL: ['Classification Labels', 'Classification Label'],
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
gam/__init__.py,sha256=
|
|
1
|
+
gam/__init__.py,sha256=r5Az9Y4d5SKaZbY6rgvDWjVBdjzJjWdGDBcaiK7BcMg,3561613
|
|
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
|
|
@@ -25,8 +25,8 @@ 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=27NW2etvdNK4jfR699eqFzhV4gPotijXIQeX-wxCvHA,35319
|
|
27
27
|
gam/gamlib/glcfg.py,sha256=bNTckxzIM_HruxO2DfYsDbEgqOIz1RX6CbU6XOQQQyg,28296
|
|
28
|
-
gam/gamlib/glclargs.py,sha256=
|
|
29
|
-
gam/gamlib/glentity.py,sha256=
|
|
28
|
+
gam/gamlib/glclargs.py,sha256=cx3WfZSG42fGSFs_wdV6d4IlCmBMEfYo_Dyah7-BX7M,42876
|
|
29
|
+
gam/gamlib/glentity.py,sha256=zQ64Q5MVDnJwgUTxNapO5s-KC8yfr1fS4GxXu7uGPT0,33877
|
|
30
30
|
gam/gamlib/glgapi.py,sha256=sJMWCyVd_2MP3rF2z-zqFwWEdUu6kceRA7e42u4kVv8,40181
|
|
31
31
|
gam/gamlib/glgdata.py,sha256=weRppttWm6uRyqtBoGPKoHiNZ2h28nhfUV4J_mbCszY,2707
|
|
32
32
|
gam/gamlib/glglobals.py,sha256=J0xcHggVrUBzHJ5GruenKV-qV1zPKcK2qWgAgN3i5Jw,9608
|
|
@@ -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.
|
|
69
|
-
gam7-7.
|
|
70
|
-
gam7-7.
|
|
71
|
-
gam7-7.
|
|
72
|
-
gam7-7.
|
|
68
|
+
gam7-7.13.1.dist-info/METADATA,sha256=544u73Ic8iTC10G_Koa_wIzTSrgfyG-1aWbqBR981Yk,2978
|
|
69
|
+
gam7-7.13.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
70
|
+
gam7-7.13.1.dist-info/entry_points.txt,sha256=HVUM5J7dA8YwvJfG30jiLefR19ExMs387TWugWd9sf4,42
|
|
71
|
+
gam7-7.13.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
72
|
+
gam7-7.13.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|