mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-28 09:51:36 +00:00
* Ensure that customer_id, domain and an admin email address are present for DASA * Fix typos
10 lines
209 B
Python
10 lines
209 B
Python
import gam
|
|
|
|
|
|
def build(api='cloudidentity'):
|
|
return gam.buildGAPIObject(api)
|
|
|
|
def build_dwd(api='cloudidentity'):
|
|
admin = gam._get_admin_email()
|
|
return gam.buildGAPIServiceObject(api, admin, True)
|