├── .github └── workflows │ ├── create_release.yml │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── VERSION ├── clean.ps1 ├── docs ├── README.md ├── authentication.md └── modules │ ├── compute │ └── README.md │ ├── functions │ └── README.md │ └── storage │ └── README.md ├── gator ├── __init__.py ├── auth │ ├── __init__.py │ ├── auth_commands.py │ └── credentials.py ├── cli │ ├── __init__.py │ ├── compute_cli.py │ ├── functions_cli.py │ └── storage_cli.py ├── custom │ ├── __init__.py │ └── custom_cli.py ├── main.py ├── modules │ ├── __init__.py │ ├── compute │ │ ├── __init__.py │ │ ├── addsshkey.py │ │ ├── firewall.py │ │ └── instances.py │ ├── functions │ │ ├── __init__.py │ │ ├── functions.py │ │ ├── permissions.py │ │ └── triggers.py │ └── storage │ │ ├── __init__.py │ │ ├── buckets.py │ │ └── permissions.py └── utils │ ├── __init__.py │ ├── print_helpers.py │ ├── ssh_key.py │ └── version_check.py ├── requirements.txt └── setup.py /.github/workflows/create_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/.github/workflows/create_release.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.6a4 2 | -------------------------------------------------------------------------------- /clean.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/clean.ps1 -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/docs/authentication.md -------------------------------------------------------------------------------- /docs/modules/compute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/docs/modules/compute/README.md -------------------------------------------------------------------------------- /docs/modules/functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/docs/modules/functions/README.md -------------------------------------------------------------------------------- /docs/modules/storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/docs/modules/storage/README.md -------------------------------------------------------------------------------- /gator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gator/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gator/auth/auth_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/auth/auth_commands.py -------------------------------------------------------------------------------- /gator/auth/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/auth/credentials.py -------------------------------------------------------------------------------- /gator/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/cli/__init__.py -------------------------------------------------------------------------------- /gator/cli/compute_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/cli/compute_cli.py -------------------------------------------------------------------------------- /gator/cli/functions_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/cli/functions_cli.py -------------------------------------------------------------------------------- /gator/cli/storage_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/cli/storage_cli.py -------------------------------------------------------------------------------- /gator/custom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gator/custom/custom_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/custom/custom_cli.py -------------------------------------------------------------------------------- /gator/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/main.py -------------------------------------------------------------------------------- /gator/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gator/modules/compute/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/modules/compute/__init__.py -------------------------------------------------------------------------------- /gator/modules/compute/addsshkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/modules/compute/addsshkey.py -------------------------------------------------------------------------------- /gator/modules/compute/firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/modules/compute/firewall.py -------------------------------------------------------------------------------- /gator/modules/compute/instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/modules/compute/instances.py -------------------------------------------------------------------------------- /gator/modules/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/modules/functions/__init__.py -------------------------------------------------------------------------------- /gator/modules/functions/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/modules/functions/functions.py -------------------------------------------------------------------------------- /gator/modules/functions/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/modules/functions/permissions.py -------------------------------------------------------------------------------- /gator/modules/functions/triggers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/modules/functions/triggers.py -------------------------------------------------------------------------------- /gator/modules/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gator/modules/storage/buckets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/modules/storage/buckets.py -------------------------------------------------------------------------------- /gator/modules/storage/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/modules/storage/permissions.py -------------------------------------------------------------------------------- /gator/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gator/utils/print_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/utils/print_helpers.py -------------------------------------------------------------------------------- /gator/utils/ssh_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/utils/ssh_key.py -------------------------------------------------------------------------------- /gator/utils/version_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/gator/utils/version_check.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anrbn/GATOR/HEAD/setup.py --------------------------------------------------------------------------------