diff --git a/src/GamUpdate.txt b/src/GamUpdate.txt index 03dea3eb..b1046b24 100644 --- a/src/GamUpdate.txt +++ b/src/GamUpdate.txt @@ -2,12 +2,11 @@ Eliminated `drive_v3_beta` and `meet_v2_beta` from `gam.cfg` as the API betas are no longer used. -Updated `Meet API` scopes. -[*] 34) Meet API - Read Only -[*] 35) Meet API - Read Write - -`Meet API - Read Only` - Allow apps to read metadata about any meeting space the user has access to. -`Meet API - Read Write` - Allow apps to create, modify, and read metadata about meeting spaces *created by your app*. +Updated `Meet API` scopes so that GAM can read metadata about additional Meet spaces. +``` +[*] 34) Meet API - Display Meets regardless of creator +[*] 35) Meet API - Manage/Display Meets created by this GAM +``` 7.18.07 diff --git a/src/gam/gamlib/glapi.py b/src/gam/gamlib/glapi.py index 56933e89..2e7d71c0 100644 --- a/src/gam/gamlib/glapi.py +++ b/src/gam/gamlib/glapi.py @@ -267,8 +267,8 @@ _INFO = { KEEP: {'name': 'Keep API', 'version': 'v1', 'v2discovery': True}, LICENSING: {'name': 'License Manager API', 'version': 'v1', 'v2discovery': True}, LOOKERSTUDIO: {'name': 'Looker Studio API', 'version': 'v1', 'v2discovery': True, 'localjson': True}, - MEET: {'name': 'Meet API - Read Write', 'version': 'v2', 'v2discovery': True}, - MEET_READONLY: {'name': 'Meet API - Read Only', 'version': 'v2', 'v2discovery': True, 'mappedAPI': MEET}, + MEET: {'name': 'Meet API - Manage/Display Meets created by this GAM', 'version': 'v2', 'v2discovery': True}, + MEET_READONLY: {'name': 'Meet API - Display Meets regardless of creator', 'version': 'v2', 'v2discovery': True, 'mappedAPI': MEET}, OAUTH2: {'name': 'OAuth2 API', 'version': 'v2', 'v2discovery': False}, ORGPOLICY: {'name': 'Organization Policy API', 'version': 'v2', 'v2discovery': True}, PEOPLE: {'name': 'People API', 'version': 'v1', 'v2discovery': True}, @@ -689,11 +689,11 @@ _SVCACCT_SCOPES = [ 'api': LOOKERSTUDIO, 'subscopes': READONLY, 'scope': 'https://www.googleapis.com/auth/datastudio'}, - {'name': 'Meet API - Read Write', + {'name': 'Meet API - Manage/Display Meets created by this GAM', 'api': MEET, 'subscopes': [], 'scope': 'https://www.googleapis.com/auth/meetings.space.created'}, - {'name': 'Meet API - Read Only', + {'name': 'Meet API - Display Meets regardless of creator', 'api': MEET_READONLY, 'subscopes': [], 'scope': 'https://www.googleapis.com/auth/meetings.space.readonly'},