diff --git a/src/GamCommands.txt b/src/GamCommands.txt index 279c8ad6..1acb19ba 100644 --- a/src/GamCommands.txt +++ b/src/GamCommands.txt @@ -2396,12 +2396,14 @@ gam update + [quickcrosmove []] [nobatc autoupdatethrough| backlightinfo| bootmode| + chromeostype| cpuinfo| cpustatusreports| deprovisionreason| devicefiles| deviceid| devicelicensetype| + diskspaceusage| diskvolumereports| dockmacaddress| ethernetmacaddress| @@ -2409,6 +2411,7 @@ gam update + [quickcrosmove []] [nobatc extendedsupporteligible| extendedsupportstart| extendedsupportenabled| + faninfo| firmwareversion| firstenrollmenttime| lastdeprovisiontimestamp| diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index 0c55f64f..ab7f8cf1 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,8 +1,12 @@ +7.07.16 + +Added `chromeostype`, `diskspaceusage` and `faninfo` to `` for use in `gam info|print cros`. + 7.07.15 Added option `shareddrivesoption included|included_if_account_is_not_a_member|not_included` to `gam create vaultexport`. -The previous option 'includeshareddrives ` is mapped as follows: +The previous option `includeshareddrives ` is mapped as follows: * `includeshareddrives false` - `shareddrivesoption included_if_account_is_not_a_member` * `includeshareddrives true` - `shareddrivesoption included` diff --git a/src/gam/__init__.py b/src/gam/__init__.py index dfc40927..8561453f 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.07.15' +__version__ = '7.07.16' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' #pylint: disable=wrong-import-position @@ -23759,12 +23759,14 @@ CROS_FIELDS_CHOICE_MAP = { 'autoupdatethrough': 'autoUpdateThrough', 'backlightinfo': 'backlightInfo', 'bootmode': 'bootMode', + 'chromeostype': 'chromeOsType', 'cpuinfo': 'cpuInfo', 'cpustatusreports': 'cpuStatusReports', 'deprovisionreason': 'deprovisionReason', 'devicefiles': ['deviceFiles.type', 'deviceFiles.createTime'], 'deviceid': 'deviceId', 'devicelicensetype': 'deviceLicenseType', + 'diskspaceusage': 'diskSpaceUsage', 'diskvolumereports': 'diskVolumeReports', 'dockmacaddress': 'dockMacAddress', 'ethernetmacaddress': 'ethernetMacAddress', @@ -23772,6 +23774,7 @@ CROS_FIELDS_CHOICE_MAP = { 'extendedsupporteligible': 'extendedSupportEligible', 'extendedsupportstart': 'extendedSupportStart', 'extendedsupportenabled': 'extendedSupportEnabled', + 'faninfo': 'fanInfo', 'firmwareversion': 'firmwareVersion', 'firstenrollmenttime': 'firstEnrollmentTime', 'lastdeprovisiontimestamp': 'lastDeprovisionTimestamp',