diff --git a/src/GamCommands.txt b/src/GamCommands.txt index 1e01484f..afc05f6d 100644 --- a/src/GamCommands.txt +++ b/src/GamCommands.txt @@ -4073,6 +4073,7 @@ gam show cigroup-members releaseversion| securitypatchtime| serialnumber| + unifieddeviceid| wifimacaddresses ::= "(,)*" diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index 34998b54..1a7aa7df 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -1,3 +1,9 @@ +7.05.01 + +Updated from `v1beta1` to `v1` for `Cloud Identity - Policy`. + +* See: https://workspaceupdates.googleblog.com/2025/02/policy-api-general-availability.html + 7.05.00 Enabled support for Limited Access as described here: diff --git a/src/gam/__init__.py b/src/gam/__init__.py index 9c6b1f01..02cf85b6 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.00' +__version__ = '7.05.01' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' #pylint: disable=wrong-import-position @@ -29251,6 +29251,7 @@ DEVICE_FIELDS_CHOICE_MAP = { 'releaseversion': 'releaseVersion', 'securitypatchtime': 'securityPatchTime', 'serialnumber': 'serialNumber', + 'unifieddeviceid': 'unifiedDeviceId', 'wifimacaddresses': 'wifiMacAddresses' } diff --git a/src/gam/gamlib/glapi.py b/src/gam/gamlib/glapi.py index e9d3ba99..fcbcf485 100644 --- a/src/gam/gamlib/glapi.py +++ b/src/gam/gamlib/glapi.py @@ -227,7 +227,7 @@ _INFO = { CLOUDIDENTITY_INBOUND_SSO: {'name': 'Cloud Identity Inbound SSO API', 'version': 'v1', 'v2discovery': True, 'mappedAPI': 'cloudidentity'}, CLOUDIDENTITY_ORGUNITS: {'name': 'Cloud Identity OrgUnits API', 'version': 'v1', 'v2discovery': True, 'mappedAPI': 'cloudidentity'}, CLOUDIDENTITY_ORGUNITS_BETA: {'name': 'Cloud Identity OrgUnits API', 'version': 'v1beta1', 'v2discovery': True, 'mappedAPI': 'cloudidentity'}, - CLOUDIDENTITY_POLICY: {'name': 'Cloud Identity Policy API', 'version': 'v1beta1', 'v2discovery': True, 'mappedAPI': 'cloudidentity'}, + CLOUDIDENTITY_POLICY: {'name': 'Cloud Identity Policy API', 'version': 'v1', 'v2discovery': True, 'mappedAPI': 'cloudidentity'}, CLOUDIDENTITY_USERINVITATIONS: {'name': 'Cloud Identity User Invitations API', 'version': 'v1', 'v2discovery': True, 'mappedAPI': 'cloudidentity'}, CLOUDRESOURCEMANAGER: {'name': 'Cloud Resource Manager API v3', 'version': 'v3', 'v2discovery': True}, CONTACTS: {'name': 'Contacts API', 'version': 'v3', 'v2discovery': False},