mirror of https://github.com/ansible/ansible.git
global_assignment module (#61449)
parent
736bfc3a35
commit
8097bd633c
@ -0,0 +1,132 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||||
|
#
|
||||||
|
# Ansible is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# Ansible is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||||
|
'status': ['preview'],
|
||||||
|
'supported_by': 'community'}
|
||||||
|
|
||||||
|
DOCUMENTATION = """
|
||||||
|
---
|
||||||
|
module: cp_mgmt_global_assignment
|
||||||
|
short_description: Manages global-assignment objects on Checkpoint over Web Services API
|
||||||
|
description:
|
||||||
|
- Manages global-assignment objects on Checkpoint devices including creating, updating and removing objects.
|
||||||
|
- All operations are performed over Web Services API.
|
||||||
|
version_added: "2.9"
|
||||||
|
author: "Or Soffer (@chkp-orso)"
|
||||||
|
options:
|
||||||
|
dependent_domain:
|
||||||
|
description:
|
||||||
|
- N/A
|
||||||
|
type: str
|
||||||
|
global_access_policy:
|
||||||
|
description:
|
||||||
|
- Global domain access policy that is assigned to a dependent domain.
|
||||||
|
type: str
|
||||||
|
global_domain:
|
||||||
|
description:
|
||||||
|
- N/A
|
||||||
|
type: str
|
||||||
|
global_threat_prevention_policy:
|
||||||
|
description:
|
||||||
|
- Global domain threat prevention policy that is assigned to a dependent domain.
|
||||||
|
type: str
|
||||||
|
manage_protection_actions:
|
||||||
|
description:
|
||||||
|
- N/A
|
||||||
|
type: bool
|
||||||
|
details_level:
|
||||||
|
description:
|
||||||
|
- The level of detail for some of the fields in the response can vary from showing only the UID value of the object to a fully detailed
|
||||||
|
representation of the object.
|
||||||
|
type: str
|
||||||
|
choices: ['uid', 'standard', 'full']
|
||||||
|
ignore_warnings:
|
||||||
|
description:
|
||||||
|
- Apply changes ignoring warnings.
|
||||||
|
type: bool
|
||||||
|
ignore_errors:
|
||||||
|
description:
|
||||||
|
- Apply changes ignoring errors. You won't be able to publish such a changes. If ignore-warnings flag was omitted - warnings will also be ignored.
|
||||||
|
type: bool
|
||||||
|
extends_documentation_fragment: checkpoint_objects
|
||||||
|
"""
|
||||||
|
|
||||||
|
EXAMPLES = """
|
||||||
|
- name: add-global-assignment
|
||||||
|
cp_mgmt_global_assignment:
|
||||||
|
dependent_domain: domain2
|
||||||
|
global_access_policy: standard
|
||||||
|
global_domain: Global
|
||||||
|
global_threat_prevention_policy: standard
|
||||||
|
manage_protection_actions: true
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: set-global-assignment
|
||||||
|
cp_mgmt_global_assignment:
|
||||||
|
dependent_domain: domain1
|
||||||
|
global_domain: Global2
|
||||||
|
global_threat_prevention_policy: ''
|
||||||
|
manage_protection_actions: false
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: delete-global-assignment
|
||||||
|
cp_mgmt_global_assignment:
|
||||||
|
dependent_domain: domain1
|
||||||
|
global_domain: Global2
|
||||||
|
state: absent
|
||||||
|
"""
|
||||||
|
|
||||||
|
RETURN = """
|
||||||
|
cp_mgmt_global_assignment:
|
||||||
|
description: The checkpoint object created or updated.
|
||||||
|
returned: always, except when deleting the object.
|
||||||
|
type: dict
|
||||||
|
"""
|
||||||
|
|
||||||
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
from ansible.module_utils.network.checkpoint.checkpoint import checkpoint_argument_spec_for_objects, api_call
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
argument_spec = dict(
|
||||||
|
dependent_domain=dict(type='str'),
|
||||||
|
global_access_policy=dict(type='str'),
|
||||||
|
global_domain=dict(type='str'),
|
||||||
|
global_threat_prevention_policy=dict(type='str'),
|
||||||
|
manage_protection_actions=dict(type='bool'),
|
||||||
|
details_level=dict(type='str', choices=['uid', 'standard', 'full']),
|
||||||
|
ignore_warnings=dict(type='bool'),
|
||||||
|
ignore_errors=dict(type='bool')
|
||||||
|
)
|
||||||
|
argument_spec.update(checkpoint_argument_spec_for_objects)
|
||||||
|
|
||||||
|
module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=True)
|
||||||
|
api_call_object = 'global-assignment'
|
||||||
|
|
||||||
|
result = api_call(module, api_call_object)
|
||||||
|
module.exit_json(**result)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
@ -0,0 +1,131 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||||
|
#
|
||||||
|
# Ansible is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# Ansible is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
||||||
|
'status': ['preview'],
|
||||||
|
'supported_by': 'community'}
|
||||||
|
|
||||||
|
DOCUMENTATION = """
|
||||||
|
---
|
||||||
|
module: cp_mgmt_global_assignment_facts
|
||||||
|
short_description: Get global-assignment objects facts on Checkpoint over Web Services API
|
||||||
|
description:
|
||||||
|
- Get global-assignment objects facts on Checkpoint devices.
|
||||||
|
- All operations are performed over Web Services API.
|
||||||
|
- This module handles both operations, get a specific object and get several objects,
|
||||||
|
For getting a specific object use the parameter 'name'.
|
||||||
|
version_added: "2.9"
|
||||||
|
author: "Or Soffer (@chkp-orso)"
|
||||||
|
options:
|
||||||
|
dependent_domain:
|
||||||
|
description:
|
||||||
|
- N/A
|
||||||
|
type: str
|
||||||
|
global_domain:
|
||||||
|
description:
|
||||||
|
- N/A
|
||||||
|
type: str
|
||||||
|
details_level:
|
||||||
|
description:
|
||||||
|
- The level of detail for some of the fields in the response can vary from showing only the UID value of the object to a fully detailed
|
||||||
|
representation of the object.
|
||||||
|
type: str
|
||||||
|
choices: ['uid', 'standard', 'full']
|
||||||
|
limit:
|
||||||
|
description:
|
||||||
|
- No more than that many results will be returned.
|
||||||
|
This parameter is relevant only for getting few objects.
|
||||||
|
type: int
|
||||||
|
offset:
|
||||||
|
description:
|
||||||
|
- Skip that many results before beginning to return them.
|
||||||
|
This parameter is relevant only for getting few objects.
|
||||||
|
type: int
|
||||||
|
order:
|
||||||
|
description:
|
||||||
|
- Sorts results by the given field. By default the results are sorted in the ascending order by name.
|
||||||
|
This parameter is relevant only for getting few objects.
|
||||||
|
type: list
|
||||||
|
suboptions:
|
||||||
|
ASC:
|
||||||
|
description:
|
||||||
|
- Sorts results by the given field in ascending order.
|
||||||
|
type: str
|
||||||
|
choices: ['name']
|
||||||
|
DESC:
|
||||||
|
description:
|
||||||
|
- Sorts results by the given field in descending order.
|
||||||
|
type: str
|
||||||
|
choices: ['name']
|
||||||
|
extends_documentation_fragment: checkpoint_facts
|
||||||
|
"""
|
||||||
|
|
||||||
|
EXAMPLES = """
|
||||||
|
- name: show-global-assignment
|
||||||
|
cp_mgmt_global_assignment_facts:
|
||||||
|
dependent_domain: domain1
|
||||||
|
global_domain: Global2
|
||||||
|
|
||||||
|
- name: show-global-assignments
|
||||||
|
cp_mgmt_global_assignment_facts:
|
||||||
|
details_level: standard
|
||||||
|
limit: 50
|
||||||
|
offset: 0
|
||||||
|
"""
|
||||||
|
|
||||||
|
RETURN = """
|
||||||
|
ansible_facts:
|
||||||
|
description: The checkpoint object facts.
|
||||||
|
returned: always.
|
||||||
|
type: dict
|
||||||
|
"""
|
||||||
|
|
||||||
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
from ansible.module_utils.network.checkpoint.checkpoint import checkpoint_argument_spec_for_facts, api_call_facts
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
argument_spec = dict(
|
||||||
|
dependent_domain=dict(type='str'),
|
||||||
|
global_domain=dict(type='str'),
|
||||||
|
details_level=dict(type='str', choices=['uid', 'standard', 'full']),
|
||||||
|
limit=dict(type='int'),
|
||||||
|
offset=dict(type='int'),
|
||||||
|
order=dict(type='list', options=dict(
|
||||||
|
ASC=dict(type='str', choices=['name']),
|
||||||
|
DESC=dict(type='str', choices=['name'])
|
||||||
|
))
|
||||||
|
)
|
||||||
|
argument_spec.update(checkpoint_argument_spec_for_facts)
|
||||||
|
|
||||||
|
module = AnsibleModule(argument_spec=argument_spec)
|
||||||
|
|
||||||
|
api_call_object = "global-assignment"
|
||||||
|
api_call_object_plural_version = "global-assignments"
|
||||||
|
|
||||||
|
result = api_call_facts(module, api_call_object, api_call_object_plural_version)
|
||||||
|
module.exit_json(ansible_facts=result)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
Loading…
Reference in New Issue