diff options
author | Sarabraj Singh <sarsingh@redhat.com> | 2022-07-20 22:22:25 +0200 |
---|---|---|
committer | Jeff Bradberry <jeff.bradberry@gmail.com> | 2022-09-23 15:46:12 +0200 |
commit | 350efc12f541d5c2443fd3937b0b774180df52ac (patch) | |
tree | 2b3607f96cd6c80bd2d794e368a50465976a1861 /awx_collection/test | |
parent | Update task management to only do things with ready instances (diff) | |
download | awx-350efc12f541d5c2443fd3937b0b774180df52ac.tar.xz awx-350efc12f541d5c2443fd3937b0b774180df52ac.zip |
machinery to allow POSTing payloads to instances/ endpoint
Diffstat (limited to 'awx_collection/test')
-rw-r--r-- | awx_collection/test/awx/test_completeness.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/awx_collection/test/awx/test_completeness.py b/awx_collection/test/awx/test_completeness.py index 75e6bff29f..93ddd52fea 100644 --- a/awx_collection/test/awx/test_completeness.py +++ b/awx_collection/test/awx/test_completeness.py @@ -78,10 +78,11 @@ no_api_parameter_ok = { # When this tool was created we were not feature complete. Adding something in here indicates a module # that needs to be developed. If the module is found on the file system it will auto-detect that the # work is being done and will bypass this check. At some point this module should be removed from this list. -needs_development = ['inventory_script'] +needs_development = ['inventory_script', 'instance'] needs_param_development = { 'host': ['instance_id'], 'workflow_approval': ['description', 'execution_environment'], + 'instances': ['capacity_adjustment', 'enabled', 'hostname', 'ip_address', 'managed_by_policy', 'node_state', 'node_type'], } # ----------------------------------------------------------------------------------------------------------- |