ACI module_utils library for ACI modules (#27070)

* ACI module_utils library for ACI modules

This PR includes:
- the ACI argument_spec
- an aci_login function
- an experimental aci_request function
- an aci_response function
- included the ACI team

* New prototype using ACIModule

This PR includes:
- A new ACIModule object with various useful methods
This commit is contained in:
Dag Wieers 2017-07-31 13:44:27 +02:00 committed by John R Barker
commit 97aaf103e8
6 changed files with 287 additions and 152 deletions

View file

@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Dag Wieers <dag@wieers.com>
# Copyright 2017 Swetha Chunduri (@schunduri)
# This file is part of Ansible by Red Hat
#
@ -25,18 +26,18 @@ options:
hostname:
description:
- IP Address or hostname of APIC resolvable by Ansible control host.
required: true
required: yes
aliases: [ host ]
username:
description:
- The username to use for authentication.
required: true
required: yes
default: admin
aliases: [ user ]
password:
description:
- The password to use for authentication.
required: true
required: yes
timeout:
description:
- The socket level timeout in seconds.