├── .coveragerc ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── feature_request.md ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── CHANGES.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── THIRD-PARTY ├── bin ├── __init__.py ├── eb └── ebp ├── conf.py ├── dev_requirements.txt ├── ebcli ├── __init__.py ├── bundled │ ├── __init__.py │ └── asciimatics │ │ ├── __init__.py │ │ ├── event.py │ │ ├── exceptions.py │ │ ├── overrides.py │ │ ├── screen.py │ │ └── utilities.py ├── containers │ ├── __init__.py │ ├── abstractcontainer.py │ ├── commands.py │ ├── compat.py │ ├── compose.py │ ├── container_viewmodel.py │ ├── containerfiles │ │ ├── container_config.json │ │ ├── glassfish-runtime-4.0-jdk7 │ │ ├── glassfish-runtime-4.1-jdk8 │ │ ├── glassfish-runtime-5.0-al │ │ ├── golang-runtime-1.3 │ │ ├── golang-runtime-1.4 │ │ └── python3-runtime │ ├── containerops.py │ ├── dockerrun.py │ ├── envvarcollector.py │ ├── factory.py │ ├── fshandler.py │ ├── generic_container.py │ ├── log.py │ ├── multicontainer.py │ ├── pathconfig.py │ ├── preconfigured_container.py │ └── utils.py ├── controllers │ ├── __init__.py │ ├── abort.py │ ├── appversion.py │ ├── clone.py │ ├── codesource.py │ ├── config.py │ ├── console.py │ ├── create.py │ ├── deploy.py │ ├── events.py │ ├── health.py │ ├── initialize.py │ ├── lifecycle.py │ ├── list.py │ ├── local.py │ ├── logs.py │ ├── migrate.py │ ├── migrate_scripts │ │ ├── add_virtual_dir_read_access.ps1 │ │ ├── arr_configuration_importer_script.ps1 │ │ ├── arr_msi_installer.ps1 │ │ ├── default_web_site_port_reassignment_template.ps1 │ │ ├── ebdeploy_utils.ps1 │ │ ├── modify_firewall_config.ps1 │ │ ├── noop.ps1 │ │ ├── reinstate_iisstart_htm_default_document.ps1 │ │ ├── site_installer_template.ps1 │ │ ├── site_removal_template.ps1 │ │ ├── site_restart_template.ps1 │ │ └── windows_proxy_feature_enabler.ps1 │ ├── open.py │ ├── platform │ │ ├── __init__.py │ │ ├── create.py │ │ ├── delete.py │ │ ├── events.py │ │ ├── initialize.py │ │ ├── list.py │ │ ├── logs.py │ │ ├── status.py │ │ └── use.py │ ├── printenv.py │ ├── restore.py │ ├── scale.py │ ├── setenv.py │ ├── ssh.py │ ├── status.py │ ├── swap.py │ ├── tags.py │ ├── terminate.py │ ├── upgrade.py │ └── use.py ├── core │ ├── __init__.py │ ├── abstractcontroller.py │ ├── base.py │ ├── ebcore.py │ ├── ebglobals.py │ ├── ebpcore.py │ ├── ebrun.py │ ├── fileoperations.py │ ├── hooks.py │ └── io.py ├── display │ ├── README │ ├── __init__.py │ ├── appversion.py │ ├── data_poller.py │ ├── environments.py │ ├── help.py │ ├── screen.py │ ├── specialtables.py │ ├── table.py │ ├── term.py │ └── traditional.py ├── labs │ ├── __init__.py │ ├── cleanupversions.py │ ├── cloudwatchfiles │ │ ├── cwl-activity-logs-v1.config │ │ ├── cwl-setup-v1.config │ │ └── eb-logs-v1.config │ ├── cloudwatchsetup.py │ ├── controller.py │ ├── convertdockerrun.py │ ├── download.py │ ├── quicklink.py │ └── setupssl.py ├── lib │ ├── __init__.py │ ├── aws.py │ ├── botocoredata │ │ └── elasticbeanstalk │ │ │ └── 2010-12-01 │ │ │ ├── paginators-1.json │ │ │ └── service-2.json │ ├── botopatch.py │ ├── cloudformation.py │ ├── cloudwatch.py │ ├── codebuild.py │ ├── codecommit.py │ ├── ec2.py │ ├── elasticbeanstalk.py │ ├── elb.py │ ├── elbv2.py │ ├── heuristics.py │ ├── iam.py │ ├── kms.py │ ├── s3.py │ ├── sns.py │ └── utils.py ├── objects │ ├── __init__.py │ ├── api_filters.py │ ├── application.py │ ├── buildconfiguration.py │ ├── cfn_stack.py │ ├── conversionconfiguration.py │ ├── environment.py │ ├── environmentsettings.py │ ├── event.py │ ├── exceptions.py │ ├── lifecycleconfiguration.py │ ├── log_stream.py │ ├── platform.py │ ├── region.py │ ├── requests.py │ ├── solutionstack.py │ ├── sourcecontrol.py │ └── tier.py ├── operations │ ├── __init__.py │ ├── abortops.py │ ├── appversionops.py │ ├── buildspecops.py │ ├── cloneops.py │ ├── commonops.py │ ├── composeops.py │ ├── configops.py │ ├── consoleops.py │ ├── createops.py │ ├── deployops.py │ ├── envvarops.py │ ├── eventsops.py │ ├── gitops.py │ ├── healthops.py │ ├── initializeops.py │ ├── lifecycleops.py │ ├── listops.py │ ├── localops.py │ ├── logsops.py │ ├── openops.py │ ├── platform_branch_ops.py │ ├── platform_version_ops.py │ ├── platformops.py │ ├── restoreops.py │ ├── saved_configs.py │ ├── scaleops.py │ ├── shared_lb_ops.py │ ├── solution_stack_ops.py │ ├── spotops.py │ ├── sshops.py │ ├── statusops.py │ ├── swapops.py │ ├── tagops │ │ ├── __init__.py │ │ ├── taglist.py │ │ └── tagops.py │ ├── terminateops.py │ ├── upgradeops.py │ └── useops.py └── resources │ ├── __init__.py │ ├── regex.py │ ├── statics.py │ └── strings.py ├── index.rst ├── requirements.txt ├── scripts └── jenkins │ ├── install_dependencies │ ├── run_unit_tests │ ├── runner.ps1 │ └── runner.sh ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── test_dependencies_mismatch.py ├── test_help_texts.py └── unit ├── __init__.py ├── baseinttest.py ├── containers ├── __init__.py ├── dummy.py ├── test_abstractcontainer.py ├── test_commands.py ├── test_compat.py ├── test_compose.py ├── test_container_viewmodel.py ├── test_containerops.py ├── test_dockerrun.py ├── test_envvarcollector.py ├── test_factory.py ├── test_fshandler.py ├── test_generic_container.py ├── test_log.py ├── test_multicontainer.py └── test_preconfigured_container.py ├── controllers ├── __init__.py ├── platform │ ├── test_create.py │ ├── test_delete.py │ ├── test_events.py │ ├── test_initialize.py │ ├── test_list.py │ ├── test_logs.py │ ├── test_platform.py │ ├── test_status.py │ └── test_use.py ├── test_appversion.py ├── test_clone.py ├── test_codesource.py ├── test_config.py ├── test_create.py ├── test_deploy.py ├── test_events.py ├── test_health.py ├── test_init.py ├── test_lifecycle.py ├── test_list.py ├── test_local.py ├── test_logs.py ├── test_migrate.py ├── test_open.py ├── test_restore.py ├── test_ssh.py ├── test_tags.py ├── test_terminate.py └── test_upgrade.py ├── core ├── __init__.py ├── test_abstractcontroller.py ├── test_base.py ├── test_ebpcore.py ├── test_ebrun.py ├── test_fileoperations.py └── test_io.py ├── display ├── test_data_poller.py ├── test_tables.py └── test_traditional.py ├── integration ├── __init__.py ├── mockservice.py ├── test_abort.py ├── test_deploy.py ├── test_health.py ├── test_migrate.py └── test_profile_selection.py ├── lib ├── __init__.py ├── test_aws.py ├── test_cloudformation.py ├── test_cloudwatch.py ├── test_codebuild.py ├── test_codecommit.py ├── test_ec2.py ├── test_elasticbeanstalk.py ├── test_elbv2.py ├── test_heuristics.py ├── test_iam.py ├── test_kms.py ├── test_s3.py ├── test_s3_upload_workspace.py ├── test_sns.py └── test_utils.py ├── mock_logs.py ├── mock_responses.py ├── objects ├── __init__.py ├── test_cfn_stack.py ├── test_environment.py ├── test_environmentsettings.py ├── test_event.py ├── test_lifecyleconfiguration.py ├── test_log_stream.py ├── test_platform.py ├── test_request.py ├── test_solutionstack.py ├── test_sourcecontrol.py └── test_tier.py ├── operations ├── __init__.py ├── tagops │ ├── test_taglist.py │ └── test_tagops.py ├── test_appversionops.py ├── test_buildspecops.py ├── test_cloneops.py ├── test_commonops.py ├── test_composeops.py ├── test_configops.py ├── test_consoleops.py ├── test_createops.py ├── test_deployops.py ├── test_deployops_source_bundle.py ├── test_ebignore.py ├── test_environments.py ├── test_envvarops.py ├── test_eventsops.py ├── test_gitops.py ├── test_healthops.py ├── test_initializeops.py ├── test_lifecycleops.py ├── test_localops.py ├── test_logsops.py ├── test_platform_branch_ops.py ├── test_platform_version_ops.py ├── test_platformops.py ├── test_restoreops.py ├── test_saved_configs.py ├── test_scaleops.py ├── test_shared_lb_ops.py ├── test_solution_stack_ops.py ├── test_spotops.py ├── test_sshops.py ├── test_statusops.py ├── test_terminateops.py ├── test_upgradeops.py └── test_useops.py └── test_helper.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = ebcli/bundled/* 3 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 110 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/.github/ISSUE_TEMPLATE/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/README.rst -------------------------------------------------------------------------------- /THIRD-PARTY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/THIRD-PARTY -------------------------------------------------------------------------------- /bin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/bin/__init__.py -------------------------------------------------------------------------------- /bin/eb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/bin/eb -------------------------------------------------------------------------------- /bin/ebp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/bin/ebp -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/conf.py -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/dev_requirements.txt -------------------------------------------------------------------------------- /ebcli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/__init__.py -------------------------------------------------------------------------------- /ebcli/bundled/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/bundled/__init__.py -------------------------------------------------------------------------------- /ebcli/bundled/asciimatics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/bundled/asciimatics/__init__.py -------------------------------------------------------------------------------- /ebcli/bundled/asciimatics/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/bundled/asciimatics/event.py -------------------------------------------------------------------------------- /ebcli/bundled/asciimatics/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/bundled/asciimatics/exceptions.py -------------------------------------------------------------------------------- /ebcli/bundled/asciimatics/overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/bundled/asciimatics/overrides.py -------------------------------------------------------------------------------- /ebcli/bundled/asciimatics/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/bundled/asciimatics/screen.py -------------------------------------------------------------------------------- /ebcli/bundled/asciimatics/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/bundled/asciimatics/utilities.py -------------------------------------------------------------------------------- /ebcli/containers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/__init__.py -------------------------------------------------------------------------------- /ebcli/containers/abstractcontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/abstractcontainer.py -------------------------------------------------------------------------------- /ebcli/containers/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/commands.py -------------------------------------------------------------------------------- /ebcli/containers/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/compat.py -------------------------------------------------------------------------------- /ebcli/containers/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/compose.py -------------------------------------------------------------------------------- /ebcli/containers/container_viewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/container_viewmodel.py -------------------------------------------------------------------------------- /ebcli/containers/containerfiles/container_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/containerfiles/container_config.json -------------------------------------------------------------------------------- /ebcli/containers/containerfiles/glassfish-runtime-4.0-jdk7: -------------------------------------------------------------------------------- 1 | FROM amazon/aws-eb-glassfish:4.0-jdk7-onbuild-3.5.1 2 | EXPOSE 8080 3 | -------------------------------------------------------------------------------- /ebcli/containers/containerfiles/glassfish-runtime-4.1-jdk8: -------------------------------------------------------------------------------- 1 | FROM amazon/aws-eb-glassfish:4.1-jdk8-onbuild-3.5.1 2 | EXPOSE 8080 3 | -------------------------------------------------------------------------------- /ebcli/containers/containerfiles/glassfish-runtime-5.0-al: -------------------------------------------------------------------------------- 1 | FROM amazon/aws-eb-glassfish:5.0-al-onbuild-2.11.1 2 | EXPOSE 8080 3 | -------------------------------------------------------------------------------- /ebcli/containers/containerfiles/golang-runtime-1.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/containerfiles/golang-runtime-1.3 -------------------------------------------------------------------------------- /ebcli/containers/containerfiles/golang-runtime-1.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/containerfiles/golang-runtime-1.4 -------------------------------------------------------------------------------- /ebcli/containers/containerfiles/python3-runtime: -------------------------------------------------------------------------------- 1 | FROM amazon/aws-eb-python:3.4.2-onbuild-3.5.1 2 | EXPOSE 8080 3 | -------------------------------------------------------------------------------- /ebcli/containers/containerops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/containerops.py -------------------------------------------------------------------------------- /ebcli/containers/dockerrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/dockerrun.py -------------------------------------------------------------------------------- /ebcli/containers/envvarcollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/envvarcollector.py -------------------------------------------------------------------------------- /ebcli/containers/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/factory.py -------------------------------------------------------------------------------- /ebcli/containers/fshandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/fshandler.py -------------------------------------------------------------------------------- /ebcli/containers/generic_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/generic_container.py -------------------------------------------------------------------------------- /ebcli/containers/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/log.py -------------------------------------------------------------------------------- /ebcli/containers/multicontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/multicontainer.py -------------------------------------------------------------------------------- /ebcli/containers/pathconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/pathconfig.py -------------------------------------------------------------------------------- /ebcli/containers/preconfigured_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/preconfigured_container.py -------------------------------------------------------------------------------- /ebcli/containers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/containers/utils.py -------------------------------------------------------------------------------- /ebcli/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/__init__.py -------------------------------------------------------------------------------- /ebcli/controllers/abort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/abort.py -------------------------------------------------------------------------------- /ebcli/controllers/appversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/appversion.py -------------------------------------------------------------------------------- /ebcli/controllers/clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/clone.py -------------------------------------------------------------------------------- /ebcli/controllers/codesource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/codesource.py -------------------------------------------------------------------------------- /ebcli/controllers/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/config.py -------------------------------------------------------------------------------- /ebcli/controllers/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/console.py -------------------------------------------------------------------------------- /ebcli/controllers/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/create.py -------------------------------------------------------------------------------- /ebcli/controllers/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/deploy.py -------------------------------------------------------------------------------- /ebcli/controllers/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/events.py -------------------------------------------------------------------------------- /ebcli/controllers/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/health.py -------------------------------------------------------------------------------- /ebcli/controllers/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/initialize.py -------------------------------------------------------------------------------- /ebcli/controllers/lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/lifecycle.py -------------------------------------------------------------------------------- /ebcli/controllers/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/list.py -------------------------------------------------------------------------------- /ebcli/controllers/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/local.py -------------------------------------------------------------------------------- /ebcli/controllers/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/logs.py -------------------------------------------------------------------------------- /ebcli/controllers/migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate.py -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/add_virtual_dir_read_access.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate_scripts/add_virtual_dir_read_access.ps1 -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/arr_configuration_importer_script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate_scripts/arr_configuration_importer_script.ps1 -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/arr_msi_installer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate_scripts/arr_msi_installer.ps1 -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/default_web_site_port_reassignment_template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate_scripts/default_web_site_port_reassignment_template.ps1 -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/ebdeploy_utils.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate_scripts/ebdeploy_utils.ps1 -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/modify_firewall_config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate_scripts/modify_firewall_config.ps1 -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/noop.ps1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/reinstate_iisstart_htm_default_document.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate_scripts/reinstate_iisstart_htm_default_document.ps1 -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/site_installer_template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate_scripts/site_installer_template.ps1 -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/site_removal_template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate_scripts/site_removal_template.ps1 -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/site_restart_template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate_scripts/site_restart_template.ps1 -------------------------------------------------------------------------------- /ebcli/controllers/migrate_scripts/windows_proxy_feature_enabler.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/migrate_scripts/windows_proxy_feature_enabler.ps1 -------------------------------------------------------------------------------- /ebcli/controllers/open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/open.py -------------------------------------------------------------------------------- /ebcli/controllers/platform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/platform/__init__.py -------------------------------------------------------------------------------- /ebcli/controllers/platform/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/platform/create.py -------------------------------------------------------------------------------- /ebcli/controllers/platform/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/platform/delete.py -------------------------------------------------------------------------------- /ebcli/controllers/platform/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/platform/events.py -------------------------------------------------------------------------------- /ebcli/controllers/platform/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/platform/initialize.py -------------------------------------------------------------------------------- /ebcli/controllers/platform/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/platform/list.py -------------------------------------------------------------------------------- /ebcli/controllers/platform/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/platform/logs.py -------------------------------------------------------------------------------- /ebcli/controllers/platform/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/platform/status.py -------------------------------------------------------------------------------- /ebcli/controllers/platform/use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/platform/use.py -------------------------------------------------------------------------------- /ebcli/controllers/printenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/printenv.py -------------------------------------------------------------------------------- /ebcli/controllers/restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/restore.py -------------------------------------------------------------------------------- /ebcli/controllers/scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/scale.py -------------------------------------------------------------------------------- /ebcli/controllers/setenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/setenv.py -------------------------------------------------------------------------------- /ebcli/controllers/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/ssh.py -------------------------------------------------------------------------------- /ebcli/controllers/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/status.py -------------------------------------------------------------------------------- /ebcli/controllers/swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/swap.py -------------------------------------------------------------------------------- /ebcli/controllers/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/tags.py -------------------------------------------------------------------------------- /ebcli/controllers/terminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/terminate.py -------------------------------------------------------------------------------- /ebcli/controllers/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/upgrade.py -------------------------------------------------------------------------------- /ebcli/controllers/use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/controllers/use.py -------------------------------------------------------------------------------- /ebcli/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/core/__init__.py -------------------------------------------------------------------------------- /ebcli/core/abstractcontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/core/abstractcontroller.py -------------------------------------------------------------------------------- /ebcli/core/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/core/base.py -------------------------------------------------------------------------------- /ebcli/core/ebcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/core/ebcore.py -------------------------------------------------------------------------------- /ebcli/core/ebglobals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/core/ebglobals.py -------------------------------------------------------------------------------- /ebcli/core/ebpcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/core/ebpcore.py -------------------------------------------------------------------------------- /ebcli/core/ebrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/core/ebrun.py -------------------------------------------------------------------------------- /ebcli/core/fileoperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/core/fileoperations.py -------------------------------------------------------------------------------- /ebcli/core/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/core/hooks.py -------------------------------------------------------------------------------- /ebcli/core/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/core/io.py -------------------------------------------------------------------------------- /ebcli/display/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/display/README -------------------------------------------------------------------------------- /ebcli/display/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/display/__init__.py -------------------------------------------------------------------------------- /ebcli/display/appversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/display/appversion.py -------------------------------------------------------------------------------- /ebcli/display/data_poller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/display/data_poller.py -------------------------------------------------------------------------------- /ebcli/display/environments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/display/environments.py -------------------------------------------------------------------------------- /ebcli/display/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/display/help.py -------------------------------------------------------------------------------- /ebcli/display/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/display/screen.py -------------------------------------------------------------------------------- /ebcli/display/specialtables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/display/specialtables.py -------------------------------------------------------------------------------- /ebcli/display/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/display/table.py -------------------------------------------------------------------------------- /ebcli/display/term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/display/term.py -------------------------------------------------------------------------------- /ebcli/display/traditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/display/traditional.py -------------------------------------------------------------------------------- /ebcli/labs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/labs/__init__.py -------------------------------------------------------------------------------- /ebcli/labs/cleanupversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/labs/cleanupversions.py -------------------------------------------------------------------------------- /ebcli/labs/cloudwatchfiles/cwl-activity-logs-v1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/labs/cloudwatchfiles/cwl-activity-logs-v1.config -------------------------------------------------------------------------------- /ebcli/labs/cloudwatchfiles/cwl-setup-v1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/labs/cloudwatchfiles/cwl-setup-v1.config -------------------------------------------------------------------------------- /ebcli/labs/cloudwatchfiles/eb-logs-v1.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/labs/cloudwatchfiles/eb-logs-v1.config -------------------------------------------------------------------------------- /ebcli/labs/cloudwatchsetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/labs/cloudwatchsetup.py -------------------------------------------------------------------------------- /ebcli/labs/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/labs/controller.py -------------------------------------------------------------------------------- /ebcli/labs/convertdockerrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/labs/convertdockerrun.py -------------------------------------------------------------------------------- /ebcli/labs/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/labs/download.py -------------------------------------------------------------------------------- /ebcli/labs/quicklink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/labs/quicklink.py -------------------------------------------------------------------------------- /ebcli/labs/setupssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/labs/setupssl.py -------------------------------------------------------------------------------- /ebcli/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/__init__.py -------------------------------------------------------------------------------- /ebcli/lib/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/aws.py -------------------------------------------------------------------------------- /ebcli/lib/botocoredata/elasticbeanstalk/2010-12-01/paginators-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/botocoredata/elasticbeanstalk/2010-12-01/paginators-1.json -------------------------------------------------------------------------------- /ebcli/lib/botocoredata/elasticbeanstalk/2010-12-01/service-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/botocoredata/elasticbeanstalk/2010-12-01/service-2.json -------------------------------------------------------------------------------- /ebcli/lib/botopatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/botopatch.py -------------------------------------------------------------------------------- /ebcli/lib/cloudformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/cloudformation.py -------------------------------------------------------------------------------- /ebcli/lib/cloudwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/cloudwatch.py -------------------------------------------------------------------------------- /ebcli/lib/codebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/codebuild.py -------------------------------------------------------------------------------- /ebcli/lib/codecommit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/codecommit.py -------------------------------------------------------------------------------- /ebcli/lib/ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/ec2.py -------------------------------------------------------------------------------- /ebcli/lib/elasticbeanstalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/elasticbeanstalk.py -------------------------------------------------------------------------------- /ebcli/lib/elb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/elb.py -------------------------------------------------------------------------------- /ebcli/lib/elbv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/elbv2.py -------------------------------------------------------------------------------- /ebcli/lib/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/heuristics.py -------------------------------------------------------------------------------- /ebcli/lib/iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/iam.py -------------------------------------------------------------------------------- /ebcli/lib/kms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/kms.py -------------------------------------------------------------------------------- /ebcli/lib/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/s3.py -------------------------------------------------------------------------------- /ebcli/lib/sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/sns.py -------------------------------------------------------------------------------- /ebcli/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/lib/utils.py -------------------------------------------------------------------------------- /ebcli/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/__init__.py -------------------------------------------------------------------------------- /ebcli/objects/api_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/api_filters.py -------------------------------------------------------------------------------- /ebcli/objects/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/application.py -------------------------------------------------------------------------------- /ebcli/objects/buildconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/buildconfiguration.py -------------------------------------------------------------------------------- /ebcli/objects/cfn_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/cfn_stack.py -------------------------------------------------------------------------------- /ebcli/objects/conversionconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/conversionconfiguration.py -------------------------------------------------------------------------------- /ebcli/objects/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/environment.py -------------------------------------------------------------------------------- /ebcli/objects/environmentsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/environmentsettings.py -------------------------------------------------------------------------------- /ebcli/objects/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/event.py -------------------------------------------------------------------------------- /ebcli/objects/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/exceptions.py -------------------------------------------------------------------------------- /ebcli/objects/lifecycleconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/lifecycleconfiguration.py -------------------------------------------------------------------------------- /ebcli/objects/log_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/log_stream.py -------------------------------------------------------------------------------- /ebcli/objects/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/platform.py -------------------------------------------------------------------------------- /ebcli/objects/region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/region.py -------------------------------------------------------------------------------- /ebcli/objects/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/requests.py -------------------------------------------------------------------------------- /ebcli/objects/solutionstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/solutionstack.py -------------------------------------------------------------------------------- /ebcli/objects/sourcecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/sourcecontrol.py -------------------------------------------------------------------------------- /ebcli/objects/tier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/objects/tier.py -------------------------------------------------------------------------------- /ebcli/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/__init__.py -------------------------------------------------------------------------------- /ebcli/operations/abortops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/abortops.py -------------------------------------------------------------------------------- /ebcli/operations/appversionops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/appversionops.py -------------------------------------------------------------------------------- /ebcli/operations/buildspecops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/buildspecops.py -------------------------------------------------------------------------------- /ebcli/operations/cloneops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/cloneops.py -------------------------------------------------------------------------------- /ebcli/operations/commonops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/commonops.py -------------------------------------------------------------------------------- /ebcli/operations/composeops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/composeops.py -------------------------------------------------------------------------------- /ebcli/operations/configops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/configops.py -------------------------------------------------------------------------------- /ebcli/operations/consoleops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/consoleops.py -------------------------------------------------------------------------------- /ebcli/operations/createops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/createops.py -------------------------------------------------------------------------------- /ebcli/operations/deployops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/deployops.py -------------------------------------------------------------------------------- /ebcli/operations/envvarops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/envvarops.py -------------------------------------------------------------------------------- /ebcli/operations/eventsops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/eventsops.py -------------------------------------------------------------------------------- /ebcli/operations/gitops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/gitops.py -------------------------------------------------------------------------------- /ebcli/operations/healthops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/healthops.py -------------------------------------------------------------------------------- /ebcli/operations/initializeops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/initializeops.py -------------------------------------------------------------------------------- /ebcli/operations/lifecycleops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/lifecycleops.py -------------------------------------------------------------------------------- /ebcli/operations/listops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/listops.py -------------------------------------------------------------------------------- /ebcli/operations/localops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/localops.py -------------------------------------------------------------------------------- /ebcli/operations/logsops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/logsops.py -------------------------------------------------------------------------------- /ebcli/operations/openops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/openops.py -------------------------------------------------------------------------------- /ebcli/operations/platform_branch_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/platform_branch_ops.py -------------------------------------------------------------------------------- /ebcli/operations/platform_version_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/platform_version_ops.py -------------------------------------------------------------------------------- /ebcli/operations/platformops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/platformops.py -------------------------------------------------------------------------------- /ebcli/operations/restoreops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/restoreops.py -------------------------------------------------------------------------------- /ebcli/operations/saved_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/saved_configs.py -------------------------------------------------------------------------------- /ebcli/operations/scaleops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/scaleops.py -------------------------------------------------------------------------------- /ebcli/operations/shared_lb_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/shared_lb_ops.py -------------------------------------------------------------------------------- /ebcli/operations/solution_stack_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/solution_stack_ops.py -------------------------------------------------------------------------------- /ebcli/operations/spotops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/spotops.py -------------------------------------------------------------------------------- /ebcli/operations/sshops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/sshops.py -------------------------------------------------------------------------------- /ebcli/operations/statusops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/statusops.py -------------------------------------------------------------------------------- /ebcli/operations/swapops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/swapops.py -------------------------------------------------------------------------------- /ebcli/operations/tagops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/tagops/__init__.py -------------------------------------------------------------------------------- /ebcli/operations/tagops/taglist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/tagops/taglist.py -------------------------------------------------------------------------------- /ebcli/operations/tagops/tagops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/tagops/tagops.py -------------------------------------------------------------------------------- /ebcli/operations/terminateops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/terminateops.py -------------------------------------------------------------------------------- /ebcli/operations/upgradeops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/upgradeops.py -------------------------------------------------------------------------------- /ebcli/operations/useops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/operations/useops.py -------------------------------------------------------------------------------- /ebcli/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/resources/__init__.py -------------------------------------------------------------------------------- /ebcli/resources/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/resources/regex.py -------------------------------------------------------------------------------- /ebcli/resources/statics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/resources/statics.py -------------------------------------------------------------------------------- /ebcli/resources/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/ebcli/resources/strings.py -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/index.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/jenkins/install_dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/scripts/jenkins/install_dependencies -------------------------------------------------------------------------------- /scripts/jenkins/run_unit_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/scripts/jenkins/run_unit_tests -------------------------------------------------------------------------------- /scripts/jenkins/runner.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/scripts/jenkins/runner.ps1 -------------------------------------------------------------------------------- /scripts/jenkins/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/scripts/jenkins/runner.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_dependencies_mismatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/test_dependencies_mismatch.py -------------------------------------------------------------------------------- /tests/test_help_texts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/test_help_texts.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/baseinttest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/baseinttest.py -------------------------------------------------------------------------------- /tests/unit/containers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/__init__.py -------------------------------------------------------------------------------- /tests/unit/containers/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/dummy.py -------------------------------------------------------------------------------- /tests/unit/containers/test_abstractcontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_abstractcontainer.py -------------------------------------------------------------------------------- /tests/unit/containers/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_commands.py -------------------------------------------------------------------------------- /tests/unit/containers/test_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_compat.py -------------------------------------------------------------------------------- /tests/unit/containers/test_compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_compose.py -------------------------------------------------------------------------------- /tests/unit/containers/test_container_viewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_container_viewmodel.py -------------------------------------------------------------------------------- /tests/unit/containers/test_containerops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_containerops.py -------------------------------------------------------------------------------- /tests/unit/containers/test_dockerrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_dockerrun.py -------------------------------------------------------------------------------- /tests/unit/containers/test_envvarcollector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_envvarcollector.py -------------------------------------------------------------------------------- /tests/unit/containers/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_factory.py -------------------------------------------------------------------------------- /tests/unit/containers/test_fshandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_fshandler.py -------------------------------------------------------------------------------- /tests/unit/containers/test_generic_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_generic_container.py -------------------------------------------------------------------------------- /tests/unit/containers/test_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_log.py -------------------------------------------------------------------------------- /tests/unit/containers/test_multicontainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_multicontainer.py -------------------------------------------------------------------------------- /tests/unit/containers/test_preconfigured_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/containers/test_preconfigured_container.py -------------------------------------------------------------------------------- /tests/unit/controllers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/__init__.py -------------------------------------------------------------------------------- /tests/unit/controllers/platform/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/platform/test_create.py -------------------------------------------------------------------------------- /tests/unit/controllers/platform/test_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/platform/test_delete.py -------------------------------------------------------------------------------- /tests/unit/controllers/platform/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/platform/test_events.py -------------------------------------------------------------------------------- /tests/unit/controllers/platform/test_initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/platform/test_initialize.py -------------------------------------------------------------------------------- /tests/unit/controllers/platform/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/platform/test_list.py -------------------------------------------------------------------------------- /tests/unit/controllers/platform/test_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/platform/test_logs.py -------------------------------------------------------------------------------- /tests/unit/controllers/platform/test_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/platform/test_platform.py -------------------------------------------------------------------------------- /tests/unit/controllers/platform/test_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/platform/test_status.py -------------------------------------------------------------------------------- /tests/unit/controllers/platform/test_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/platform/test_use.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_appversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_appversion.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_clone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_clone.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_codesource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_codesource.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_config.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_create.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_deploy.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_events.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_health.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_init.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_lifecycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_lifecycle.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_list.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_local.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_logs.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_migrate.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_open.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_open.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_restore.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_ssh.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_tags.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_terminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_terminate.py -------------------------------------------------------------------------------- /tests/unit/controllers/test_upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/controllers/test_upgrade.py -------------------------------------------------------------------------------- /tests/unit/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/core/__init__.py -------------------------------------------------------------------------------- /tests/unit/core/test_abstractcontroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/core/test_abstractcontroller.py -------------------------------------------------------------------------------- /tests/unit/core/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/core/test_base.py -------------------------------------------------------------------------------- /tests/unit/core/test_ebpcore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/core/test_ebpcore.py -------------------------------------------------------------------------------- /tests/unit/core/test_ebrun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/core/test_ebrun.py -------------------------------------------------------------------------------- /tests/unit/core/test_fileoperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/core/test_fileoperations.py -------------------------------------------------------------------------------- /tests/unit/core/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/core/test_io.py -------------------------------------------------------------------------------- /tests/unit/display/test_data_poller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/display/test_data_poller.py -------------------------------------------------------------------------------- /tests/unit/display/test_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/display/test_tables.py -------------------------------------------------------------------------------- /tests/unit/display/test_traditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/display/test_traditional.py -------------------------------------------------------------------------------- /tests/unit/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/integration/__init__.py -------------------------------------------------------------------------------- /tests/unit/integration/mockservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/integration/mockservice.py -------------------------------------------------------------------------------- /tests/unit/integration/test_abort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/integration/test_abort.py -------------------------------------------------------------------------------- /tests/unit/integration/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/integration/test_deploy.py -------------------------------------------------------------------------------- /tests/unit/integration/test_health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/integration/test_health.py -------------------------------------------------------------------------------- /tests/unit/integration/test_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/integration/test_migrate.py -------------------------------------------------------------------------------- /tests/unit/integration/test_profile_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/integration/test_profile_selection.py -------------------------------------------------------------------------------- /tests/unit/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/__init__.py -------------------------------------------------------------------------------- /tests/unit/lib/test_aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_aws.py -------------------------------------------------------------------------------- /tests/unit/lib/test_cloudformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_cloudformation.py -------------------------------------------------------------------------------- /tests/unit/lib/test_cloudwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_cloudwatch.py -------------------------------------------------------------------------------- /tests/unit/lib/test_codebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_codebuild.py -------------------------------------------------------------------------------- /tests/unit/lib/test_codecommit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_codecommit.py -------------------------------------------------------------------------------- /tests/unit/lib/test_ec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_ec2.py -------------------------------------------------------------------------------- /tests/unit/lib/test_elasticbeanstalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_elasticbeanstalk.py -------------------------------------------------------------------------------- /tests/unit/lib/test_elbv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_elbv2.py -------------------------------------------------------------------------------- /tests/unit/lib/test_heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_heuristics.py -------------------------------------------------------------------------------- /tests/unit/lib/test_iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_iam.py -------------------------------------------------------------------------------- /tests/unit/lib/test_kms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_kms.py -------------------------------------------------------------------------------- /tests/unit/lib/test_s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_s3.py -------------------------------------------------------------------------------- /tests/unit/lib/test_s3_upload_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_s3_upload_workspace.py -------------------------------------------------------------------------------- /tests/unit/lib/test_sns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_sns.py -------------------------------------------------------------------------------- /tests/unit/lib/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/lib/test_utils.py -------------------------------------------------------------------------------- /tests/unit/mock_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/mock_logs.py -------------------------------------------------------------------------------- /tests/unit/mock_responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/mock_responses.py -------------------------------------------------------------------------------- /tests/unit/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/__init__.py -------------------------------------------------------------------------------- /tests/unit/objects/test_cfn_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/test_cfn_stack.py -------------------------------------------------------------------------------- /tests/unit/objects/test_environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/test_environment.py -------------------------------------------------------------------------------- /tests/unit/objects/test_environmentsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/test_environmentsettings.py -------------------------------------------------------------------------------- /tests/unit/objects/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/test_event.py -------------------------------------------------------------------------------- /tests/unit/objects/test_lifecyleconfiguration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/test_lifecyleconfiguration.py -------------------------------------------------------------------------------- /tests/unit/objects/test_log_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/test_log_stream.py -------------------------------------------------------------------------------- /tests/unit/objects/test_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/test_platform.py -------------------------------------------------------------------------------- /tests/unit/objects/test_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/test_request.py -------------------------------------------------------------------------------- /tests/unit/objects/test_solutionstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/test_solutionstack.py -------------------------------------------------------------------------------- /tests/unit/objects/test_sourcecontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/test_sourcecontrol.py -------------------------------------------------------------------------------- /tests/unit/objects/test_tier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/objects/test_tier.py -------------------------------------------------------------------------------- /tests/unit/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/__init__.py -------------------------------------------------------------------------------- /tests/unit/operations/tagops/test_taglist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/tagops/test_taglist.py -------------------------------------------------------------------------------- /tests/unit/operations/tagops/test_tagops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/tagops/test_tagops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_appversionops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_appversionops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_buildspecops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_buildspecops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_cloneops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_cloneops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_commonops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_commonops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_composeops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_composeops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_configops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_configops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_consoleops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_consoleops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_createops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_createops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_deployops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_deployops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_deployops_source_bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_deployops_source_bundle.py -------------------------------------------------------------------------------- /tests/unit/operations/test_ebignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_ebignore.py -------------------------------------------------------------------------------- /tests/unit/operations/test_environments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_environments.py -------------------------------------------------------------------------------- /tests/unit/operations/test_envvarops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_envvarops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_eventsops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_eventsops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_gitops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_gitops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_healthops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_healthops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_initializeops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_initializeops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_lifecycleops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_lifecycleops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_localops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_localops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_logsops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_logsops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_platform_branch_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_platform_branch_ops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_platform_version_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_platform_version_ops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_platformops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_platformops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_restoreops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_restoreops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_saved_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_saved_configs.py -------------------------------------------------------------------------------- /tests/unit/operations/test_scaleops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_scaleops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_shared_lb_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_shared_lb_ops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_solution_stack_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_solution_stack_ops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_spotops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_spotops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_sshops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_sshops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_statusops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_statusops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_terminateops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_terminateops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_upgradeops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_upgradeops.py -------------------------------------------------------------------------------- /tests/unit/operations/test_useops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/operations/test_useops.py -------------------------------------------------------------------------------- /tests/unit/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws/aws-elastic-beanstalk-cli/HEAD/tests/unit/test_helper.py --------------------------------------------------------------------------------