diff --git a/docs/Licenses.md b/docs/Licenses.md index a1426411..e8ed52b3 100644 --- a/docs/Licenses.md +++ b/docs/Licenses.md @@ -66,17 +66,20 @@ | Google Voice Standard | 1010330004 | voicestandard | | Google Voice Starter | 1010330003 | voicestarter | | Google Workspace Business - Archived User | 1010340002 | gsuitebusinessarchived | -| Google Workspace Business Plus - Archived User | 1010340003 | wsbizplusarchived | | Google Workspace Business Plus | 1010020025 | wsbizplus | +| Google Workspace Business Plus - Archived User | 1010340003 | wsbizplusarchived | | Google Workspace Business Standard | 1010020028 | wsbizstan | +| Google Workspace Business Standard - Archived User | 1010340006 | wsbizstanarchived | | Google Workspace Business Starter | 1010020027 | wsbizstarter | +| Google Workspace Business Starter - Archived User | 1010340005 | wsbizstarterarchived | | Google Workspace Enterprise Essentials | 1010060003 | wsentess | -| Google Workspace Enterprise Plus - Archived User | 1010340001 | gsuiteenterprisearchived | | Google Workspace Enterprise Plus | 1010020020 | wsentplus | -| Google Workspace Enterprise Standard - Archived User | 1010340004 | wsentstanarchived | +| Google Workspace Enterprise Plus - Archived User | 1010340001 | gsuiteenterprisearchived | | Google Workspace Enterprise Standard | 1010020026 | wsentstan | +| Google Workspace Enterprise Standard - Archived User | 1010340004 | wsentstanarchived | | Google Workspace Enterprise Starter | 1010020029 | wsentstarter | | Google Workspace Essentials | 1010060001 | wsess | +| Google Workspace Essentials Plus | 1010060005 | wsessplus | | Google Workspace Government | Google-Apps-For-Government | gsuitegov | | Google Workspace for Education Plus (Extra Student) | 1010310010 | gwepstudent | | Google Workspace for Education Plus (Staff) | 1010310009 | gwepstaff | @@ -87,7 +90,8 @@ | Google Workspace for Education Standard (Staff) | 1010310006 | gwesstaff | | Google Workspace for Education Standard | 1010310005 | gwes | | Google Workspace for Education: Teaching and Learning Upgrade | 1010370001 | gwetlu | -| Google Workspace Frontline | 1010020030 | wsflw,workspacefrontline,workspacefrontlineworker | +| Google Workspace Frontline Starter | 1010020030 | wsflw | +| Google Workspace Frontline Standard | 1010020031 | wsflwstan | ## Definitions ``` diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index c315d708..bde6587a 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -2,6 +2,14 @@ Merged GAM-Team version +Added the following license SKUs. +``` +1010060005 - Google Workspace Essentials Plus +1010020031 - Google Workspace Frontline Standard +1010340005 - Google Workspace Business Starter - Archived User +1010340006 - Google Workspace Business Standard - Archived User +``` + 6.61.15 Added option `contentrestrictions ownerrestricted []` to ``. diff --git a/src/gam/gamlib/glskus.py b/src/gam/gamlib/glskus.py index 22a17866..663b8dbb 100644 --- a/src/gam/gamlib/glskus.py +++ b/src/gam/gamlib/glskus.py @@ -107,7 +107,9 @@ _SKUS = { '1010020029': { 'product': 'Google-Apps', 'aliases': ['wes', 'wsentstarter', 'workspaceenterprisestarter'], 'displayName': 'Workspace Enterprise Starter'}, '1010020030': { - 'product': 'Google-Apps', 'aliases': ['wsflw', 'workspacefrontline', 'workspacefrontlineworker'], 'displayName': 'Google Workspace Frontline'}, + 'product': 'Google-Apps', 'aliases': ['wsflw', 'workspacefrontline', 'workspacefrontlineworker'], 'displayName': 'Google Workspace Frontline Starter'}, + '1010020031`': { + 'product': 'Google-Apps', 'aliases': ['wsflwstan', 'workspacefrontlinestan', 'workspacefrontlineworkerstan'], 'displayName': 'Google Workspace Frontline Standard'}, '1010340001': { 'product': '101034', 'aliases': ['gseau', 'enterprisearchived', 'gsuiteenterprisearchived'], 'displayName': 'Google Workspace Enterprise Plus - Archived User'}, '1010340002': { @@ -116,12 +118,18 @@ _SKUS = { 'product': '101034', 'aliases': ['wsbizplusarchived', 'workspacebusinessplusarchived'], 'displayName': 'Google Workspace Business Plus - Archived User'}, '1010340004': { 'product': '101034', 'aliases': ['wsentstanarchived', 'workspaceenterprisestandardarchived'], 'displayName': 'Google Workspace Enterprise Standard - Archived User'}, + '1010340005': { + 'product': '101034', 'aliases': ['wsbizstarterarchived', 'workspacebusinessstarterarchived'], 'displayName': 'Google Workspace Business Starter - Archived User'}, + '1010340006': { + 'product': '101034', 'aliases': ['wsbizstanarchived', 'workspacebusinessstanarchived'], 'displayName': 'Google Workspace Business Standard - Archived User'}, '1010060001': { 'product': '101006', 'aliases': ['gsuiteessentials', 'essentials', 'd4e', 'driveenterprise', 'drive4enterprise', 'wsess', 'workspaceesentials'], 'displayName': 'Google Workspace Essentials'}, '1010060003': { 'product': 'Google-Apps', 'aliases': ['wsentess', 'workspaceenterpriseessentials'], 'displayName': 'Google Workspace Enterprise Essentials'}, + '1010060005': { + 'product': 'Google-Apps', 'aliases': ['wsessplus', 'workspaceessentialsplus'], 'displayName': 'Google Workspace Essentials Plus'}, 'Google-Drive-storage-20GB': { 'product': 'Google-Drive-storage', 'aliases': ['drive20gb', '20gb', 'googledrivestorage20gb'], 'displayName': 'Google Drive Storage 20GB'}, 'Google-Drive-storage-50GB': {