├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── README.md └── source │ ├── CONTRIBUTING.rst │ ├── HISTORY.rst │ ├── _templates │ └── layout.html │ ├── api_ref │ ├── conf.rst │ ├── exceptions.rst │ ├── generate_tables.py │ ├── index.rst │ └── resources │ │ ├── ad_hoc.rst │ │ ├── application.rst │ │ ├── credential.rst │ │ ├── credential_type.rst │ │ ├── group.rst │ │ ├── host.rst │ │ ├── instance.rst │ │ ├── instance_group.rst │ │ ├── inventory.rst │ │ ├── inventory_script.rst │ │ ├── inventory_source.rst │ │ ├── inventory_update.rst │ │ ├── job.rst │ │ ├── job_template.rst │ │ ├── label.rst │ │ ├── node.rst │ │ ├── notification_template.rst │ │ ├── organization.rst │ │ ├── project.rst │ │ ├── project_update.rst │ │ ├── role.rst │ │ ├── schedule.rst │ │ ├── setting.rst │ │ ├── team.rst │ │ ├── user.rst │ │ ├── workflow.rst │ │ └── workflow_job.rst │ ├── cli_ref │ ├── examples │ │ ├── README.rst │ │ ├── data │ │ │ ├── schema_a.yml │ │ │ ├── schema_b.yml │ │ │ ├── schema_simple.yml │ │ │ └── schema_tiny.yml │ │ ├── fake_data_creator.sh │ │ ├── inventory_script_example.py │ │ ├── teardown_script.sh │ │ ├── variables.yml │ │ └── workflow_demo.sh │ ├── index.rst │ └── usage │ │ ├── CONFIG_CMD_OPTIONS.rst │ │ ├── NOTIFICATION_TEMPLATE_MANAGEMENT.rst │ │ ├── ROLE_MANAGEMENT.rst │ │ ├── SURVEYS.rst │ │ ├── VERSIONING.rst │ │ └── WORKFLOWS.rst │ ├── conf.py │ ├── index.rst │ ├── install.rst │ └── quickstart.rst ├── hacking ├── README.md ├── env-setup └── env-setup.fish ├── packaging └── rpm │ └── ansible-tower-cli.spec ├── requirements.txt ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── compat.py ├── requirements.txt ├── runtests.py ├── test__init.py ├── test_api.py ├── test_cli_action.py ├── test_cli_misc.py ├── test_cli_resource.py ├── test_cli_transfer_common.py ├── test_cli_transfer_logging_command.py ├── test_cli_types.py ├── test_conf.py ├── test_exceptions.py ├── test_models_base.py ├── test_models_fields.py ├── test_models_unified_jobs.py ├── test_resources_ad_hoc.py ├── test_resources_credential.py ├── test_resources_group.py ├── test_resources_host.py ├── test_resources_inventory.py ├── test_resources_inventory_source.py ├── test_resources_job.py ├── test_resources_job_template.py ├── test_resources_label.py ├── test_resources_notification_template.py ├── test_resources_project.py ├── test_resources_role.py ├── test_resources_schedule.py ├── test_resources_setting.py ├── test_resources_workflow.py ├── test_resources_workflow_job.py ├── test_utils.py ├── test_utils_datastructures.py ├── test_utils_debug.py └── test_utils_parser.py ├── tower_cli ├── __init__.py ├── api.py ├── cli │ ├── __init__.py │ ├── action.py │ ├── base.py │ ├── misc.py │ ├── resource.py │ ├── run.py │ ├── transfer │ │ ├── __init__.py │ │ ├── cleaner.py │ │ ├── common.py │ │ ├── logging_command.py │ │ ├── receive.py │ │ └── send.py │ └── types.py ├── compat.py ├── conf.py ├── constants.py ├── exceptions.py ├── models │ ├── __init__.py │ ├── base.py │ └── fields.py ├── resources │ ├── __init__.py │ ├── activity_stream.py │ ├── ad_hoc.py │ ├── application.py │ ├── credential.py │ ├── credential_type.py │ ├── group.py │ ├── host.py │ ├── instance.py │ ├── instance_group.py │ ├── inventory.py │ ├── inventory_script.py │ ├── inventory_source.py │ ├── inventory_update.py │ ├── job.py │ ├── job_event.py │ ├── job_template.py │ ├── label.py │ ├── node.py │ ├── notification_template.py │ ├── organization.py │ ├── project.py │ ├── project_update.py │ ├── role.py │ ├── schedule.py │ ├── setting.py │ ├── team.py │ ├── token.py │ ├── unified_job.py │ ├── user.py │ ├── workflow.py │ └── workflow_job.py └── utils │ ├── __init__.py │ ├── data_structures.py │ ├── debug.py │ ├── exceptions.py │ ├── grammar.py │ ├── parser.py │ └── resource_decorators.py ├── tox.ini └── version_swap.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/source/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/CONTRIBUTING.rst -------------------------------------------------------------------------------- /docs/source/HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/HISTORY.rst -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/api_ref/conf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/conf.rst -------------------------------------------------------------------------------- /docs/source/api_ref/exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/exceptions.rst -------------------------------------------------------------------------------- /docs/source/api_ref/generate_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/generate_tables.py -------------------------------------------------------------------------------- /docs/source/api_ref/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/index.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/ad_hoc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/ad_hoc.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/application.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/credential.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/credential.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/credential_type.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/credential_type.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/group.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/group.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/host.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/host.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/instance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/instance.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/instance_group.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/instance_group.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/inventory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/inventory.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/inventory_script.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/inventory_script.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/inventory_source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/inventory_source.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/inventory_update.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/inventory_update.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/job.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/job.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/job_template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/job_template.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/label.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/label.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/node.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/node.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/notification_template.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/notification_template.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/organization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/organization.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/project.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/project_update.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/project_update.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/role.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/role.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/schedule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/schedule.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/setting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/setting.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/team.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/team.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/user.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/workflow.rst -------------------------------------------------------------------------------- /docs/source/api_ref/resources/workflow_job.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/api_ref/resources/workflow_job.rst -------------------------------------------------------------------------------- /docs/source/cli_ref/examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/examples/README.rst -------------------------------------------------------------------------------- /docs/source/cli_ref/examples/data/schema_a.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/examples/data/schema_a.yml -------------------------------------------------------------------------------- /docs/source/cli_ref/examples/data/schema_b.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/examples/data/schema_b.yml -------------------------------------------------------------------------------- /docs/source/cli_ref/examples/data/schema_simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/examples/data/schema_simple.yml -------------------------------------------------------------------------------- /docs/source/cli_ref/examples/data/schema_tiny.yml: -------------------------------------------------------------------------------- 1 | - job_template: workflow JT -------------------------------------------------------------------------------- /docs/source/cli_ref/examples/fake_data_creator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/examples/fake_data_creator.sh -------------------------------------------------------------------------------- /docs/source/cli_ref/examples/inventory_script_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/examples/inventory_script_example.py -------------------------------------------------------------------------------- /docs/source/cli_ref/examples/teardown_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/examples/teardown_script.sh -------------------------------------------------------------------------------- /docs/source/cli_ref/examples/variables.yml: -------------------------------------------------------------------------------- 1 | --- 2 | connection: local 3 | ansible_ssh_host: 127.0.0.1 4 | -------------------------------------------------------------------------------- /docs/source/cli_ref/examples/workflow_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/examples/workflow_demo.sh -------------------------------------------------------------------------------- /docs/source/cli_ref/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/index.rst -------------------------------------------------------------------------------- /docs/source/cli_ref/usage/CONFIG_CMD_OPTIONS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/usage/CONFIG_CMD_OPTIONS.rst -------------------------------------------------------------------------------- /docs/source/cli_ref/usage/NOTIFICATION_TEMPLATE_MANAGEMENT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/usage/NOTIFICATION_TEMPLATE_MANAGEMENT.rst -------------------------------------------------------------------------------- /docs/source/cli_ref/usage/ROLE_MANAGEMENT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/usage/ROLE_MANAGEMENT.rst -------------------------------------------------------------------------------- /docs/source/cli_ref/usage/SURVEYS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/usage/SURVEYS.rst -------------------------------------------------------------------------------- /docs/source/cli_ref/usage/VERSIONING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/usage/VERSIONING.rst -------------------------------------------------------------------------------- /docs/source/cli_ref/usage/WORKFLOWS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/cli_ref/usage/WORKFLOWS.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/docs/source/quickstart.rst -------------------------------------------------------------------------------- /hacking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/hacking/README.md -------------------------------------------------------------------------------- /hacking/env-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/hacking/env-setup -------------------------------------------------------------------------------- /hacking/env-setup.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/hacking/env-setup.fish -------------------------------------------------------------------------------- /packaging/rpm/ansible-tower-cli.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/packaging/rpm/ansible-tower-cli.spec -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | flake8 2 | tox-travis 3 | coveralls -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/compat.py -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/runtests.py -------------------------------------------------------------------------------- /tests/test__init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test__init.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_cli_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_cli_action.py -------------------------------------------------------------------------------- /tests/test_cli_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_cli_misc.py -------------------------------------------------------------------------------- /tests/test_cli_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_cli_resource.py -------------------------------------------------------------------------------- /tests/test_cli_transfer_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_cli_transfer_common.py -------------------------------------------------------------------------------- /tests/test_cli_transfer_logging_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_cli_transfer_logging_command.py -------------------------------------------------------------------------------- /tests/test_cli_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_cli_types.py -------------------------------------------------------------------------------- /tests/test_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_conf.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_models_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_models_base.py -------------------------------------------------------------------------------- /tests/test_models_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_models_fields.py -------------------------------------------------------------------------------- /tests/test_models_unified_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_models_unified_jobs.py -------------------------------------------------------------------------------- /tests/test_resources_ad_hoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_ad_hoc.py -------------------------------------------------------------------------------- /tests/test_resources_credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_credential.py -------------------------------------------------------------------------------- /tests/test_resources_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_group.py -------------------------------------------------------------------------------- /tests/test_resources_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_host.py -------------------------------------------------------------------------------- /tests/test_resources_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_inventory.py -------------------------------------------------------------------------------- /tests/test_resources_inventory_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_inventory_source.py -------------------------------------------------------------------------------- /tests/test_resources_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_job.py -------------------------------------------------------------------------------- /tests/test_resources_job_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_job_template.py -------------------------------------------------------------------------------- /tests/test_resources_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_label.py -------------------------------------------------------------------------------- /tests/test_resources_notification_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_notification_template.py -------------------------------------------------------------------------------- /tests/test_resources_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_project.py -------------------------------------------------------------------------------- /tests/test_resources_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_role.py -------------------------------------------------------------------------------- /tests/test_resources_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_schedule.py -------------------------------------------------------------------------------- /tests/test_resources_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_setting.py -------------------------------------------------------------------------------- /tests/test_resources_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_workflow.py -------------------------------------------------------------------------------- /tests/test_resources_workflow_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_resources_workflow_job.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_utils_datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_utils_datastructures.py -------------------------------------------------------------------------------- /tests/test_utils_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_utils_debug.py -------------------------------------------------------------------------------- /tests/test_utils_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tests/test_utils_parser.py -------------------------------------------------------------------------------- /tower_cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/__init__.py -------------------------------------------------------------------------------- /tower_cli/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/api.py -------------------------------------------------------------------------------- /tower_cli/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tower_cli/cli/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/cli/action.py -------------------------------------------------------------------------------- /tower_cli/cli/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/cli/base.py -------------------------------------------------------------------------------- /tower_cli/cli/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/cli/misc.py -------------------------------------------------------------------------------- /tower_cli/cli/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/cli/resource.py -------------------------------------------------------------------------------- /tower_cli/cli/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/cli/run.py -------------------------------------------------------------------------------- /tower_cli/cli/transfer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tower_cli/cli/transfer/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/cli/transfer/cleaner.py -------------------------------------------------------------------------------- /tower_cli/cli/transfer/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/cli/transfer/common.py -------------------------------------------------------------------------------- /tower_cli/cli/transfer/logging_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/cli/transfer/logging_command.py -------------------------------------------------------------------------------- /tower_cli/cli/transfer/receive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/cli/transfer/receive.py -------------------------------------------------------------------------------- /tower_cli/cli/transfer/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/cli/transfer/send.py -------------------------------------------------------------------------------- /tower_cli/cli/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/cli/types.py -------------------------------------------------------------------------------- /tower_cli/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/compat.py -------------------------------------------------------------------------------- /tower_cli/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/conf.py -------------------------------------------------------------------------------- /tower_cli/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/constants.py -------------------------------------------------------------------------------- /tower_cli/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/exceptions.py -------------------------------------------------------------------------------- /tower_cli/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/models/__init__.py -------------------------------------------------------------------------------- /tower_cli/models/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/models/base.py -------------------------------------------------------------------------------- /tower_cli/models/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/models/fields.py -------------------------------------------------------------------------------- /tower_cli/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/__init__.py -------------------------------------------------------------------------------- /tower_cli/resources/activity_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/activity_stream.py -------------------------------------------------------------------------------- /tower_cli/resources/ad_hoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/ad_hoc.py -------------------------------------------------------------------------------- /tower_cli/resources/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/application.py -------------------------------------------------------------------------------- /tower_cli/resources/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/credential.py -------------------------------------------------------------------------------- /tower_cli/resources/credential_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/credential_type.py -------------------------------------------------------------------------------- /tower_cli/resources/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/group.py -------------------------------------------------------------------------------- /tower_cli/resources/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/host.py -------------------------------------------------------------------------------- /tower_cli/resources/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/instance.py -------------------------------------------------------------------------------- /tower_cli/resources/instance_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/instance_group.py -------------------------------------------------------------------------------- /tower_cli/resources/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/inventory.py -------------------------------------------------------------------------------- /tower_cli/resources/inventory_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/inventory_script.py -------------------------------------------------------------------------------- /tower_cli/resources/inventory_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/inventory_source.py -------------------------------------------------------------------------------- /tower_cli/resources/inventory_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/inventory_update.py -------------------------------------------------------------------------------- /tower_cli/resources/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/job.py -------------------------------------------------------------------------------- /tower_cli/resources/job_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/job_event.py -------------------------------------------------------------------------------- /tower_cli/resources/job_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/job_template.py -------------------------------------------------------------------------------- /tower_cli/resources/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/label.py -------------------------------------------------------------------------------- /tower_cli/resources/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/node.py -------------------------------------------------------------------------------- /tower_cli/resources/notification_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/notification_template.py -------------------------------------------------------------------------------- /tower_cli/resources/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/organization.py -------------------------------------------------------------------------------- /tower_cli/resources/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/project.py -------------------------------------------------------------------------------- /tower_cli/resources/project_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/project_update.py -------------------------------------------------------------------------------- /tower_cli/resources/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/role.py -------------------------------------------------------------------------------- /tower_cli/resources/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/schedule.py -------------------------------------------------------------------------------- /tower_cli/resources/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/setting.py -------------------------------------------------------------------------------- /tower_cli/resources/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/team.py -------------------------------------------------------------------------------- /tower_cli/resources/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/token.py -------------------------------------------------------------------------------- /tower_cli/resources/unified_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/unified_job.py -------------------------------------------------------------------------------- /tower_cli/resources/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/user.py -------------------------------------------------------------------------------- /tower_cli/resources/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/workflow.py -------------------------------------------------------------------------------- /tower_cli/resources/workflow_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/resources/workflow_job.py -------------------------------------------------------------------------------- /tower_cli/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/utils/__init__.py -------------------------------------------------------------------------------- /tower_cli/utils/data_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/utils/data_structures.py -------------------------------------------------------------------------------- /tower_cli/utils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/utils/debug.py -------------------------------------------------------------------------------- /tower_cli/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/utils/exceptions.py -------------------------------------------------------------------------------- /tower_cli/utils/grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/utils/grammar.py -------------------------------------------------------------------------------- /tower_cli/utils/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/utils/parser.py -------------------------------------------------------------------------------- /tower_cli/utils/resource_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tower_cli/utils/resource_decorators.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/tox.ini -------------------------------------------------------------------------------- /version_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ansible/tower-cli/HEAD/version_swap.py --------------------------------------------------------------------------------