GAM VS Installation

Compare GAM vs Installation and see what are their differences.

GAM

command line management for Google Workspace [Moved to: https://github.com/GAM-team/GAM] (by jay0lee)

Installation

The premier source of truth powering network automation. Open source under Apache 2. Public demo: https://demo.netbox.dev (by netbox-community)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
GAM Installation
72 162
2,596 14,960
- 1.2%
9.5 9.8
over 2 years ago 6 days ago
Python Python
- Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

GAM

Posts with mentions or reviews of GAM. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-16.
  • What Open Source Projects Do You Use In Your District?
    27 projects | /r/k12sysadmin | 16 Nov 2022
    GAM and GAMADV-XTD3 -- Command line tool for managing G Suite. Allows me to run scripts to manage accounts. Very useful for setting student photos on their G Suite accounts. Great tool for any G Suite admin.
  • Remove shares to external non owner users
    2 projects | /r/gsuite | 13 Oct 2022
    #!/usr/bin/env python2 """ # Purpose: For a Google Drive User(s), show all drive file ACLs for files shared with users outside of your account. # Note: This script can use Basic or Advanced GAM: # https://github.com/jay0lee/GAM # https://github.com/taers232c/GAMADV-XTD3 # Usage: # 1: Get users in account # $ Basic: gam print users > accountusers.csv # $ Advanced: gam redirect csv ./accountusers.csv print users # 2: Get ACLs for all files, if you don't want all users, replace all users with your user selection in the command below # $ Basic: gam all users print filelist id title permissions owners > filelistperms.csv # $ Advanced: gam config auto_batch_min 1 redirect csv ./filelistperms.csv multiprocess all users print filelist fields id,title,permissions,owners.emailaddress # 3: From that list of ACLs, output a CSV file with headers "Owner,driveFileId,driveFileTitle,permissionId,role,emailAddress" # that lists the driveFileIds and permissionIds for all ACLs with the non-account users # (n.b., driveFileTitle, role, and emailAddress are not used in the next step, they are included for documentation purposes) # $ python GetSharedWithNonAccountUsersDriveACLs.py accountusers.csv filelistperms.csv deleteperms.csv # 4: Inspect deleteperms.csv, verify that it makes sense and then proceed # 5: Delete the ACLs # $ gam csv deleteperms.csv gam user "~Owner" delete drivefileacl "~driveFileId" "~permissionId" """ import csv import re import sys FILE_NAME = 'name' ALT_FILE_NAME = 'title' QUOTE_CHAR = '"' # Adjust as needed LINE_TERMINATOR = '\n' # On Windows, you probably want '\r\n' PERMISSIONS_N_TYPE = re.compile(r"permissions.(\d+).type") if (len(sys.argv) > 3) and (sys.argv[3] != '-'): outputFile = open(sys.argv[3], 'wb') else: outputFile = sys.stdout outputCSV = csv.DictWriter(outputFile, ['Owner', 'driveFileId', 'driveFileTitle', 'permissionId', 'role', 'emailAddress'], lineterminator=LINE_TERMINATOR, quotechar=QUOTE_CHAR) outputCSV.writeheader() if (len(sys.argv) > 2) and (sys.argv[2] != '-'): inputFile = open(sys.argv[2], 'rbU') else: inputFile = sys.stdin accountUsers = set("[email protected]") usersFile = open(sys.argv[1], 'rbU') for row in csv.DictReader(usersFile, quotechar=QUOTE_CHAR): accountUsers.add(row['primaryEmail']) usersFile.close() for row in csv.DictReader(inputFile, quotechar=QUOTE_CHAR): for k, v in row.iteritems(): mg = PERMISSIONS_N_TYPE.match(k) if mg and v == 'user': permissions_N = mg.group(1) if row.get('permissions.{0}.deleted'.format(permissions_N)) == 'True': continue emailAddress = row['permissions.{0}.emailAddress'.format(permissions_N)] if row['permissions.{0}.role'.format(permissions_N)] != 'owner' and emailAddress not in accountUsers: outputCSV.writerow({'Owner': row['owners.0.emailAddress'], 'driveFileId': row['id'], 'driveFileTitle': row.get(FILE_NAME, row.get(ALT_FILE_NAME, 'Unknown')), 'permissionId': 'id:{0}'.format(row['permissions.{0}.id'.format(permissions_N)]), 'role': row['permissions.{0}.role'.format(permissions_N)], 'emailAddress': emailAddress}) if inputFile != sys.stdin: inputFile.close() if outputFile != sys.stdout: outputFile.close()
  • What Open Source Projects Are You Using?
    23 projects | /r/k12sysadmin | 31 Jan 2022
    GAM - Google Workspace. I don't know what I'd do without this.
  • Google as email server
    1 project | /r/sysadmin | 13 Jan 2022
    use GAM to share and accept on users behalf https://github.com/jay0lee/GAM It's incredibly powerful and it's all command line.
  • Syncing Google Workspace Users with Microsoft AD
    2 projects | /r/k12sysadmin | 6 Dec 2021
    GAM If you have not yet have the pleasure of using GAM, I would highly recommend trying it out -- it's not exactly pertinent to this post, but if you've not used it, it's amazing, and a huge time saver when trying to manage Google sometimes.
  • Has anyone had any experience working tech jobs for K-12 schools? What should I expect? What skills should I brush up on?
    1 project | /r/sysadmin | 27 Nov 2021
    It's easy enough to stumble through, and Google provides training online. Also, look into GAM, https://github.com/jay0lee/GAM. Best tool you can ever use.
  • Transfer User inc all data from one Workspace account to another
    1 project | /r/gsuite | 26 Nov 2021
    We had to do this a couple years ago when we moved ~500 accounts from one Workspace tenant to another. We used MigrationWiz and GAM to make it less painful, but it still wasn't the prettiest thing ever. If we had to do it over again we'd probably use Google Workspace Migrate which wasn't an option back then.
  • Clean Up Inactive Google Accounts
    1 project | /r/k12sysadmin | 22 Nov 2021
    GAM is probably your best bet. You can run a query for suspended accounts and move them to a specified OU. You can also run a query for users with last logon time equal to whatever and then move those accounts.
  • Offboarding Google Workspace User
    1 project | /r/msp | 14 Nov 2021
    If it's a very regular process / procedure, you may want to look at https://github.com/jay0lee/GAM
  • Workspace account - change primary domain
    1 project | /r/gsuite | 12 Nov 2021
    Do check out GAM, it might do it (not all at Google know about this tool): https://github.com/jay0lee/GAM/releases

Installation

Posts with mentions or reviews of Installation. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-06.
  • NetBox.dev: the source of truth for everything on your network
    4 projects | news.ycombinator.com | 6 Feb 2024
    "The site" is actually just their blog. The github repo at https://github.com/netbox-community/netbox is more like the real homepage and has a good presentation.
  • [MISC] Build a feature with the Hudu team: IPAM and Rack Management. PART 1
    1 project | /r/hudu | 7 Dec 2023
    Sweet! If it ends up anything like Netbox it will be so sweet. By looking at the screenshots I am very excited to see this implemented!
  • IP-adress management
    1 project | /r/hudu | 6 Dec 2023
  • NetBox v3.6.6 is Now Available!
    1 project | /r/Netbox | 2 Dec 2023
    NetBox Release v3.6.6 is now live (as of November 29, 2023)!
  • Got my hands on a UniFi system, rack building software?
    2 projects | /r/Ubiquiti | 1 Dec 2023
    Take a look at netbox. https://netbox.dev/
  • NetBox – the source of truth for everything on your network
    1 project | news.ycombinator.com | 12 Sep 2023
  • Locally trained AI Agents for network device discovery
    1 project | news.ycombinator.com | 16 Jul 2023
    Pre-trained systems dominate AI today (as deep as the P in GPT). My team and I have been researching and building alternatives given how the hallucination, blackbox and other problems don't seem solvable within* the current paradigm.

    One of our first applications is a network automation solution for Netbox-- locally trained AI Agents unique to each Netbox account to predict roles of newly added devices given the current local list of devices, like a context-aware autocomplete.

    Agents are lightweight by design, this particular Netbox Agent is 40-neuron, and when hooked up demo.netbox.dev and consistently gets 80%+ accuracy predicting device roles even when trained on ~60 devices only.

    Try it out: https://aolabs-netbox.streamlit.app/

    You can use dummy data from demo.netbox.dev. More on Netbox: https://github.com/netbox-community/netbox

    We'd keen for feedback, if this is useful, how we could extend it if it is, or if it sparks other application ideas.

    * Somebody has to be the pre-trainer, leaving an irreducible gap of misunderstanding between AI and its application which we are trying to diminish by adding a layer of local training.

  • NetBox v3.5.6 is Now Available!
    1 project | /r/Netbox | 11 Jul 2023
    Before upgrading, please: 1. Verify in release notes changelog if any new breaking changes might affect you. You can also review the NetBox Issues on GitHub to see if any new issues have arisen that might affect you. 2. Next, refer to the Upgrading to a new NetBox Release guide for steps to upgrade your instance.
  • Why have empty __init__.py files?
    1 project | /r/learnpython | 10 Jul 2023
    I've been looking into some projects for some opensource software i use and noticed a few of them have empty __init__.py files (for example https://github.com/netbox-community/netbox/blob/develop/netbox/core/__init__.py)
  • Shelf – open-source asset management software
    9 projects | news.ycombinator.com | 10 Jul 2023
    IT wise, It's been a fair few years since I've been in a department that does asset management, we used to use GLPI with it's warts and all, which got replace with https://github.com/netbox-community/netbox

What are some alternatives?

When comparing GAM and Installation you can also consider the following projects:

GAMADV-XTD3 - Command line tool to manage Google Workspace

nautobot - Network Source of Truth & Network Automation Platform

PSGSuite - Powershell module for Google / G Suite API calls wrapped in handy functions. Authentication is established using a service account via P12 key to negate the consent popup and allow for greater handsoff automation capabilities

phpIPAM - phpipam development repository

gdown - Google Drive Public File Downloader when Curl/Wget Fails

netbox-topology-views - A netbox plugin that draws topology views

ImapSync - Imapsync is an IMAP transfers tool. The purpose of imapsync is to migrate IMAP accounts or to backup IMAP accounts. IMAP is one of the three current standard protocols to access mailboxes, the two others are POP3 and HTTP with webmails, webmails are often tied to an IMAP server. Upstream website is

RackTables - RackTables current development repository

got-your-back - Got Your Back (GYB) is a command line tool for backing up your Gmail messages to your computer using Gmail's API over HTTPS. [Moved to: https://github.com/GAM-team/got-your-back]

netbox-docker - 🐳 Docker Image of NetBox

Google-rank-tracker - SEO: Python script + shell script and cronjob to check ranks on a daily basis

The Foreman - The new and improved Foreman website.