-
Notifications
You must be signed in to change notification settings - Fork 88
Aliases
- API documentation
- Query documentation
- Python Regular Expressions Match function
- Definitions
- Create an alias for a target
- Update an alias to point to a new target
- Delete an alias regardless of the target
- Remove aliases from a specified target
- Delete all of a user's aliases
- Display aliases
- Bulk delete aliases
- Bulk reassign aliases
- Determine if an address is a user, user alias, group or group alias
- https://developers.google.com/admin-sdk/directory/reference/rest/v1/users.aliases
- https://developers.google.com/admin-sdk/directory/reference/rest/v1/groups.aliases
<DomainName> ::= <String>(.<String>)+
<DomainNameList> ::= "<DomainName>(,<DomainName>)*"
<DomainNameEntity> ::=
<DomainNameList> | <FileSelector> | <CSVFileSelector>
<EmailAddress> ::= <String>@<DomainName>
<EmailAddressList> ::= "<EmailAddress>(,<EmailAddress>)*"
<EmailAddressEntity> ::= <EmailAddressList> | <FileSelector> | <CSVkmdSelector> | <CSVDataSelector>
See: https://github.com/taers232c/GAMADV-XTD3/wiki/Collections-of-Items
<UniqueID> ::= id:<String>
gam create alias|aliases <EmailAddressEntity> user|group|target <UniqueID>|<EmailAddress>
[verifynotinvitable]
<EmailAddressEntity>
are the aliases, <EmailAddress>
is the target.
The verifynotinvitable
option causes GAM to verify that the alias email address being created is not that of an unmanaged account;
if it is, the command is not performed.
To allow Robert to also receive mail as Bob:
gam create alias bob[@yourdomain.com] user robert[@yourdomain.com]
The existing alias is deleted and a new alias is created.
gam update alias|aliases <EmailAddressEntity> user|group|target <UniqueID>|<EmailAddress>
[notargetverify] [waitafterdelete <Integer>]
<EmailAddressEntity>
are the aliases, <EmailAddress>
is the target.
By default, GAM makes additional API calls to verify that the target email address exists before updating the alias; if you know that the target exists, you can suppress the verification with `notargetverify.
GAM updates an alias to point to a new target by deleting the alias and then recreates the alias pointing to the new target.
Unfortunately, if these commands are executed back-to-back; Google generates the Update Failed: Duplicate
error.
Now, GAM waits 2 seconds between the delete and the insert which seems to eliminate the problem. If the problem persists,
use the option waitafterdelete <Integer>
to increase the wait time to a maximum of 10 seconds.
gam delete alias|aliases [user|group|target] <EmailAddressEntity>
<EmailAddressEntity>
are the aliases.
gam remove alias|aliases <EmailAddress> user|group <EmailAddressEntity>
<EmailAddress>
is the target, <EmailAddressEntity>
are the aliases.
gam <UserTypeEntity> delete aliases
Display a specific alias.
gam info alias|aliases <EmailAddressEntity>
Display selected aliases.
gam print aliases [todrive <ToDriveAttribute>*]
([domain|domains <DomainNameEntity>] [(query <QueryUser>)|(queries <QueryUserList>)]
[limittoou <OrgUnitItem>])
[user|users <EmailAddressList>] [group|groups <EmailAddressList>]
[select <UserTypeEntity>]
[aliasmatchpattern <RegularExpression>]
[shownoneditable] [nogroups] [nousers]
[onerowpertarget] [delimiter <Character>]
[suppressnoaliasrows]
(addcsvdata <FieldName> <String>)*
By default, group and user aliases in all domains in the account are selected; these options allow selection of subsets of aliases:
-
domain|domains <DomainNameEntity>
- Limit aliases to those in the domains specified by<DomainNameEntity>
- You can predefine this list with the
print_agu_domains
variable ingam.cfg
.
- You can predefine this list with the
-
(query <QueryUser>)|(queries <QueryUserList>)
- Print aliases for users/groups that match a query; each query is run against each domain -
limittoou <OrgUnitItem>
- Print aliases for users in the specified<OrgUnitItem>
-
user|users <EmailAddressList>
- Print aliases for users in<EmailAddressList
-
select <UserTypeEntity>
- Print aliases for users in<UserTypeEntity>
-
group|groups <EmailAddressList>
- Print aliases for groups in<EmailAddressList
-
aliasmatchpattern <RegularExpression>
- Print aliases that match a pattern -
nogroups
- Print only user aliases -
nousers
- Print only group aliases
By default, the CSV output has three columns: Alias,Target,TargetType
; if a target
has multiple aliases, there will be multiple rows, one per alias.
Use shownoneditable
to list non-editable alias email addresses; these are typically outside of the account's primary domain or subdomains.
This adds the column NonEditableAlias
.
Specifying onerowpertarget
changes the three columns to: Target,TargetType,Aliases
; all aliases for the target are listed in the
Aliases
column. If shownoneditable
is specified, there will be a fourth column NonEditableAliases
with a list of non-editable aliases.
By default, the aliases in a list are separated by the csv_output_field_delimiter' from
gam.cfg`.
-
delimiter <Character>
- Separate aliases in a list with<Character>
Specifying both onerowpertarget
and suppressnoaliasrows
causes GAM to not display any targets that have no aliases.
Add additional columns of data from the command line to the output
addcsvdata <FieldName> <String>
When multiple domains are specified and a query/queries are specified, an API call is made for each domain/query combination.
$ gam print aliases domains school.org,students.school.org queries "'email:admin*','email:test*'"
Getting all Users that match query (domain=school.org, query="email:admin*"), may take some time on a large Google Workspace Account...
Got 3 Users: [email protected] - [email protected]
Getting all Users that match query (domain=school.org, query="email:test*"), may take some time on a large Google Workspace Account...
Got 20 Users: [email protected] - [email protected]
Getting all Users that match query (domain=students.school.org, query="email:admin*"), may take some time on a large Google Workspace Account...
Got 1 User: [email protected] - [email protected]
Getting all Users that match query (domain=students.school.org, query="email:test*"), may take some time on a large Google Workspace Account...
Got 1 User: [email protected] - [email protected]
Alias,Target,TargetType
...
You can bulk delete aliases as follows; use (query <QueryUser>)|(queries <QueryUserList>)
and
aliasmatchpattern <RegularExpression>
as desired.
gam redirect csv ./OldDomainAliases.csv print aliases aliasmatchpattern ".*@olddomain.com" onerowpertarget suppressnoaliasrows
gam redirect stdout ./DeleteAliases.txt multiprocess redirect stderr stdout csv ./OldDomainAliases.csv gam remove aliases "~Target" "~TargetType" "~Aliases"
You can bulk reassign aliases as follows. Make a CSV file ReassignAliases.csv with two columns: OldTarget,NewTarget. From this CSV file, all of the aliases for the users in the OldTarget column will be listed with an additional column showing the NewTarget.
gam redirect stdout ./GetAliases.txt multiprocess redirect stderr stdout redirect csv ./ReassignAliases.csv gam print aliases user "~OldTarget" addcsvdata NewTarget "~NewTarget"
If an OldTarget's aliases are to be reassigned to more than the one NewTarget, edit ReassignAliases.csv and make changes as required.
gam redirect stdout ./ReassignAliases.txt multiprocess redirect stderr stdout csv ReassignAliases.csv gam update alias "~Alias" user "~NewTarget"
gam whatis <EmailItem> [noinfo] [noinvitablecheck]
The first line of output is: <TypeOfEmailItem>: <EmailItem>
There is additional output based on <TypeOfEmailItem>
:
- User -
gam info user <EmailItem>
- Group -
gam info group <EmailItem>
- User Alias -
gam info alias <EmailItem>
- Group Alias -
gam info alias <EmailItem>
- User Invitation -
gam info userinvitation <EmailItem>
The noinfo
argument suppresses the additional output.
The noinvitablecheck
argument suppresses the user invitation check
to avoid exceeding quota limits when checking a large number of addresses.
The return code is set based on <TypeOfEmailItem>
:
- User - 20
- User Alias - 21
- Group - 22
- Group Alias - 23
- User Invitation - 24
- Unknown - 59
Need more help? Ask on the GAM Discussion Group
Update History
Installation
- How to Install GAM7
- How to Uograde GAMADV-XTD3 to GAM7
- How to Upgrade Legacy GAM to GAM7
- How to Update GAM7
- Install GAM as Python Library
- GAM7 on Chrome OS Devices
- GAM7 on Android Devices
- Google Network Addresses
- HTTPS Proxy
- SSL Root CA Certificates
- How to Uninstall GAM7
Configuration
- Authorization
- GAM Configuration
- Running GAM7 securely on a Google Compute Engine
- Using GAM7 with a delegated admin service account
- Using GAM7 with a YubiKey
Notes and Information
- Upgrade Benefits
- Questions? Visit the GAM Discussion Forum
- GAM Public Chat Room
- Scripts
- Other Resources
- Drive REST API v3
- BNF Syntax
- GAM Return Codes
- Python Regular Expressions
- Rclone
Definitions
Command Processing
- Bulk Processing
- Command Line Parsing
- Command Logging and Progress
- Command data from Google Docs/Sheets/Storage
- CSV Special Characters
- CSV Input Filtering
- CSV Output Filtering
- Meta Commands and File Redirection
- Permission matches
- Tag Replace
- Todrive
Collections
Client Access
- Addresses
- Administrators
- Alert Center
- Aliases
- Calendars
- Calendars - Access
- Calendars - Events
- Chrome Auto Update Expiration Counts
- Chrome Browser Cloud Management
- Chrome Device Needs Attention Counts
- Chrome Installed Apps
- Chrome Policies
- Chrome Printers
- Chrome Profile Management
- Chrome Version Counts
- Chrome Version History
- ChromeOS Devices
- Classroom - Courses
- Classroom - Guardians
- Classroom - Invitations
- Classroom - Membership
- Cloud Channel
- Cloud Identity Devices
- Cloud Identity Groups
- Cloud Identity Groups - Membership
- Cloud Identity Policies
- Cloud Storage
- Context Aware Access Levels
- Customer
- Domains
- Domains - Verification
- Domain People - Contacts & Profiles
- Domain Shared Contacts - Global Address List
- Email Audit Monitor
- Find File Owner
- Google Data Transfers
- Groups
- Groups - Membership
- Inbound SSO
- Licenses
- Mobile Devices
- Organizational Units
- Reports
- Reseller
- Resources
- Send Email
- Schemas
- Shared Drives
- Sites
- Users
- Unmanaged Accounts
- Users - Signout and Turn off 2-Step Verification
- Vault - Takeout
- Version and Help
Special Service Account Access
Service Account Access
- Users - Analytics Admin
- Users - Application Specific Passwords
- Users - Backup Verification Codes
- Users - Calendars
- Users - Calendars - Access
- Users - Calendars - Events
- Users - Chat
- Users - Classification Labels
- Users - Classroom - Profile
- Users - Deprovision
- Users - Contacts
- Users - Contacts - Delegates
- Users - Drive - File Selection
- Users - Drive - Activity/Settings
- Users - Drive - Cleanup
- Users - Drive - Comments
- Users - Drive - Copy/Move
- Users - Drive - Files-Display
- Users - Drive - Files-Manage
- Users - Drive - Orphans
- Users - Drive - Ownership
- Users - Drive - Permissions
- Users - Drive - Query
- Users - Drive - Revisions
- Users - Drive - Shortcuts
- Users - Drive - Transfer
- Users - Forms
- Users - Gmail - Client Side Encryption
- Users - Gmail - Delegates
- Users - Gmail - Filters
- Users - Gmail - Forwarding
- Users - Gmail - Labels
- Users - Gmail - Messages/Threads
- Users - Gmail - Profile
- Users - Gmail - S/MIME
- Users - Gmail - SendAs/Signature/Vacation
- Users - Gmail - Settings
- Users - Group Membership
- Users - Keep
- Users - Looker Studio
- Users - Meet
- Users - Classroom - Profile
- Users - People - Contacts & Profiles
- Users - Photo
- Users - Profile Sharing
- Users - Shared Drives
- Users - Spreadsheets
- Users - Tasks
- Users - Tokens
- Users - YouTube