gam usage and gam usageparameters commands

usageparameters prints the parameters reported for customer and user
usage. usage generates a CSV of specified parameters over a given date
range. From a Google Sheet it's useful to add a chart to get a nice
graph showing changes in G Suite service usage by users over time.
This commit is contained in:
Jay Lee
2020-04-06 08:48:00 -04:00
parent 0a0ca9ef03
commit 12ca54f6ba
2 changed files with 186 additions and 0 deletions

View File

@@ -11236,6 +11236,12 @@ def ProcessGAMCommand(args):
elif command == 'report':
gapi.reports.showReport()
sys.exit(0)
elif command == 'usage':
gapi.reports.showUsage()
sys.exit(0)
elif command == 'usageparameters':
gapi.reports.showUsageParameters()
sys.exit(0)
elif command == 'whatis':
doWhatIs()
sys.exit(0)