187 lines
5.2 KiB
Python
187 lines
5.2 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright: (c) 2020, Anvitha Jain (@anvitha-jain) <anvjain@cisco.com>
|
|
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
__metaclass__ = type
|
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|
'status': ['preview'],
|
|
'supported_by': 'community'}
|
|
|
|
DOCUMENTATION = r'''
|
|
---
|
|
module: mso_rest
|
|
short_description: Direct access to the Cisco MSO REST API
|
|
description:
|
|
- Enables the management of the Cisco MSO fabric through direct access to the Cisco MSO REST API.
|
|
- This module is not idempotent and does not report changes.
|
|
options:
|
|
method:
|
|
description:
|
|
- The HTTP method of the request.
|
|
- Using C(delete) is typically used for deleting objects.
|
|
- Using C(get) is typically used for querying objects.
|
|
- Using C(post) is typically used for modifying objects.
|
|
- Using C(put) is typically used for modifying existing objects.
|
|
- Using C(patch) is typically also used for modifying existing objects.
|
|
type: str
|
|
choices: [ delete, get, post, put, patch ]
|
|
default: get
|
|
aliases: [ action ]
|
|
path:
|
|
description:
|
|
- URI being used to execute API calls.
|
|
type: str
|
|
required: yes
|
|
aliases: [ uri ]
|
|
content:
|
|
description:
|
|
- Sets the payload of the API request directly.
|
|
- This may be convenient to template simple requests.
|
|
- For anything complex use the C(template) lookup plugin (see examples).
|
|
type: raw
|
|
aliases: [ payload ]
|
|
extends_documentation_fragment:
|
|
- cisco.mso.modules
|
|
|
|
notes:
|
|
- Most payloads are known not to be idempotent, so be careful when constructing payloads.
|
|
seealso:
|
|
- module: cisco.mso.mso_tenant
|
|
author:
|
|
- Anvitha Jain (@anvitha-jain)
|
|
'''
|
|
|
|
EXAMPLES = r'''
|
|
- name: Add schema (JSON)
|
|
cisco.mso.mso_rest:
|
|
host: mso
|
|
username: admin
|
|
password: SomeSecretPassword
|
|
path: /mso/api/v1/schemas
|
|
method: post
|
|
content:
|
|
{
|
|
"displayName": "{{ mso_schema | default('ansible_test') }}",
|
|
"templates": [{
|
|
"name": "Template_1",
|
|
"tenantId": "{{ add_tenant.jsondata.id }}",
|
|
"displayName": "Template_1",
|
|
"templateSubType": [],
|
|
"templateType": "stretched-template",
|
|
"anps": [],
|
|
"contracts": [],
|
|
"vrfs": [],
|
|
"bds": [],
|
|
"filters": [],
|
|
"externalEpgs": [],
|
|
"serviceGraphs": [],
|
|
"intersiteL3outs": []
|
|
}],
|
|
"sites": [],
|
|
"_updateVersion": 0
|
|
}
|
|
delegate_to: localhost
|
|
|
|
- name: Query schema
|
|
cisco.mso.mso_rest:
|
|
host: mso
|
|
username: admin
|
|
password: SomeSecretPassword
|
|
path: /mso/api/v1/schemas
|
|
method: get
|
|
delegate_to: localhost
|
|
|
|
- name: Patch schema (YAML)
|
|
cisco.mso.mso_rest:
|
|
host: mso
|
|
username: admin
|
|
password: SomeSecretPassword
|
|
path: "/mso/api/v1/schemas/{{ add_schema.jsondata.id }}"
|
|
method: patch
|
|
content:
|
|
- op: add
|
|
path: /templates/Template_1/anps/-
|
|
value:
|
|
name: AP2
|
|
displayName: AP2
|
|
epgs: []
|
|
_updateVersion: 0
|
|
delegate_to: localhost
|
|
|
|
- name: Add a tenant from a templated payload file from templates
|
|
cisco.mso.mso_rest:
|
|
host: mso
|
|
username: admin
|
|
password: SomeSecretPassword
|
|
method: post
|
|
path: /api/v1/tenants
|
|
content: "{{ lookup('template', 'mso/tenant.json.j2') }}"
|
|
delegate_to: localhost
|
|
'''
|
|
|
|
RETURN = r'''
|
|
'''
|
|
|
|
# Optional, only used for YAML validation
|
|
try:
|
|
import yaml
|
|
HAS_YAML = True
|
|
except Exception:
|
|
HAS_YAML = False
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
from ansible_collections.cisco.mso.plugins.module_utils.mso import MSOModule, mso_argument_spec
|
|
from ansible.module_utils._text import to_text
|
|
|
|
|
|
def main():
|
|
argument_spec = mso_argument_spec()
|
|
argument_spec.update(
|
|
path=dict(type='str', required=True, aliases=['uri']),
|
|
method=dict(type='str', default='get', choices=['delete', 'get', 'post', 'put', 'patch'], aliases=['action']),
|
|
content=dict(type='raw', aliases=['payload']),
|
|
)
|
|
|
|
module = AnsibleModule(
|
|
argument_spec=argument_spec,
|
|
)
|
|
|
|
content = module.params.get('content')
|
|
path = module.params.get('path')
|
|
|
|
mso = MSOModule(module)
|
|
|
|
# Validate content/payload
|
|
if content and isinstance(content, str) and HAS_YAML:
|
|
try:
|
|
# Validate YAML/JSON string
|
|
content = yaml.safe_load(content)
|
|
except Exception as e:
|
|
module.fail_json(msg='Failed to parse provided JSON/YAML payload: %s' % to_text(e), exception=to_text(e), payload=content)
|
|
|
|
mso.method = mso.params.get('method').upper()
|
|
|
|
# Perform request
|
|
if module.check_mode:
|
|
mso.result['jsondata'] = content
|
|
else:
|
|
mso.result['jsondata'] = mso.request(path, method=mso.method, data=content, api_version=None)
|
|
|
|
mso.result['status'] = mso.status
|
|
|
|
if mso.method != 'GET':
|
|
mso.result['changed'] = True
|
|
if mso.method == 'DELETE':
|
|
mso.result['jsondata'] = None
|
|
|
|
# Report success
|
|
mso.exit_json(**mso.result)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|