diff --git a/src/GamCommands.txt b/src/GamCommands.txt index 87cd8ee1..7063a40c 100644 --- a/src/GamCommands.txt +++ b/src/GamCommands.txt @@ -266,6 +266,7 @@ If an item contains spaces, it should be surrounded by ". appsheetstandard | appsheetenterprisestandard | 1010380002 | AppSheet Enterprise Standard | appsheetplus | appsheetenterpriseplus | 1010380003 | AppSheet Enterprise Plus | assuredcontrols | 1010390001 | Assured Controls | + assuredcontrolsplus | 1010390002 | Assured Controls Plus | bce | beyondcorp | beyondcorpenterprise | cep | chromeenterprisepremium | 1010400001 | Chrome Enterprise Premium | cdm | chrome | googlechromedevicemanagement | Google-Chrome-Device-Management | cloudidentity | identity | 1010010001 | Cloud Identity | diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index 4f34ef0c..22893160 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,3 +1,11 @@ +7.05.14 + +Added the following License SKU: +``` +ProductId SKUId Display Name +101039 1010390002 Assured Controls Plus +``` + 7.05.13 Updated license product names to match Google. diff --git a/src/gam/__init__.py b/src/gam/__init__.py index 167c9e64..5a7e7b1e 100755 --- a/src/gam/__init__.py +++ b/src/gam/__init__.py @@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki """ __author__ = 'GAM Team ' -__version__ = '7.05.13' +__version__ = '7.05.14' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' #pylint: disable=wrong-import-position diff --git a/src/gam/gamlib/glskus.py b/src/gam/gamlib/glskus.py index d0a59862..4a1df4fd 100644 --- a/src/gam/gamlib/glskus.py +++ b/src/gam/gamlib/glskus.py @@ -87,6 +87,8 @@ _SKUS = { 'product': '101038', 'aliases': ['appsheetplus', 'appsheetenterpriseplus'], 'displayName': 'AppSheet Enterprise Plus'}, '1010390001': { 'product': '101039', 'aliases': ['assuredcontrols'], 'displayName': 'Assured Controls'}, + '1010390002': { + 'product': '101039', 'aliases': ['assuredcontrolsplus'], 'displayName': 'Assured Controls Plus'}, '1010400001': { 'product': '101040', 'aliases': ['beyondcorp', 'beyondcorpenterprise', 'bce', 'cep', 'chromeenterprisepremium'], 'displayName': 'Chrome Enterprise Premium'}, '1010430001': {