mirror of https://github.com/ansible/ansible.git
simple_gateway module (#61388)
* simple_gateway module * list to dict * fix indentation issue fails testspull/61509/head
parent
a88436decd
commit
f687bc0ff3
@ -0,0 +1,630 @@
|
||||
#!/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_simple_gateway
|
||||
short_description: Manages simple-gateway objects on Checkpoint over Web Services API
|
||||
description:
|
||||
- Manages simple-gateway 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:
|
||||
name:
|
||||
description:
|
||||
- Object name.
|
||||
type: str
|
||||
required: True
|
||||
ip_address:
|
||||
description:
|
||||
- IPv4 or IPv6 address. If both addresses are required use ipv4-address and ipv6-address fields explicitly.
|
||||
type: str
|
||||
ipv4_address:
|
||||
description:
|
||||
- IPv4 address.
|
||||
type: str
|
||||
ipv6_address:
|
||||
description:
|
||||
- IPv6 address.
|
||||
type: str
|
||||
anti_bot:
|
||||
description:
|
||||
- Anti-Bot blade enabled.
|
||||
type: bool
|
||||
anti_virus:
|
||||
description:
|
||||
- Anti-Virus blade enabled.
|
||||
type: bool
|
||||
application_control:
|
||||
description:
|
||||
- Application Control blade enabled.
|
||||
type: bool
|
||||
content_awareness:
|
||||
description:
|
||||
- Content Awareness blade enabled.
|
||||
type: bool
|
||||
firewall:
|
||||
description:
|
||||
- Firewall blade enabled.
|
||||
type: bool
|
||||
firewall_settings:
|
||||
description:
|
||||
- N/A
|
||||
type: dict
|
||||
suboptions:
|
||||
auto_calculate_connections_hash_table_size_and_memory_pool:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
auto_maximum_limit_for_concurrent_connections:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
connections_hash_size:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
maximum_limit_for_concurrent_connections:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
maximum_memory_pool_size:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
memory_pool_size:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
interfaces:
|
||||
description:
|
||||
- Network interfaces. When a gateway is updated with a new interfaces, the existing interfaces are removed.
|
||||
type: list
|
||||
suboptions:
|
||||
name:
|
||||
description:
|
||||
- Object name.
|
||||
type: str
|
||||
anti_spoofing:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
anti_spoofing_settings:
|
||||
description:
|
||||
- N/A
|
||||
type: dict
|
||||
suboptions:
|
||||
action:
|
||||
description:
|
||||
- If packets will be rejected (the Prevent option) or whether the packets will be monitored (the Detect option).
|
||||
type: str
|
||||
choices: ['prevent', 'detect']
|
||||
ip_address:
|
||||
description:
|
||||
- IPv4 or IPv6 address. If both addresses are required use ipv4-address and ipv6-address fields explicitly.
|
||||
type: str
|
||||
ipv4_address:
|
||||
description:
|
||||
- IPv4 address.
|
||||
type: str
|
||||
ipv6_address:
|
||||
description:
|
||||
- IPv6 address.
|
||||
type: str
|
||||
network_mask:
|
||||
description:
|
||||
- IPv4 or IPv6 network mask. If both masks are required use ipv4-network-mask and ipv6-network-mask fields explicitly. Instead of
|
||||
providing mask itself it is possible to specify IPv4 or IPv6 mask length in mask-length field. If both masks length are required use
|
||||
ipv4-mask-length and ipv6-mask-length fields explicitly.
|
||||
type: str
|
||||
ipv4_network_mask:
|
||||
description:
|
||||
- IPv4 network address.
|
||||
type: str
|
||||
ipv6_network_mask:
|
||||
description:
|
||||
- IPv6 network address.
|
||||
type: str
|
||||
mask_length:
|
||||
description:
|
||||
- IPv4 or IPv6 network mask length.
|
||||
type: str
|
||||
ipv4_mask_length:
|
||||
description:
|
||||
- IPv4 network mask length.
|
||||
type: str
|
||||
ipv6_mask_length:
|
||||
description:
|
||||
- IPv6 network mask length.
|
||||
type: str
|
||||
security_zone:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
security_zone_settings:
|
||||
description:
|
||||
- N/A
|
||||
type: dict
|
||||
suboptions:
|
||||
auto_calculated:
|
||||
description:
|
||||
- Security Zone is calculated according to where the interface leads to.
|
||||
type: bool
|
||||
specific_zone:
|
||||
description:
|
||||
- Security Zone specified manually.
|
||||
type: str
|
||||
tags:
|
||||
description:
|
||||
- Collection of tag identifiers.
|
||||
type: list
|
||||
topology:
|
||||
description:
|
||||
- N/A
|
||||
type: str
|
||||
choices: ['automatic', 'external', 'internal']
|
||||
topology_settings:
|
||||
description:
|
||||
- N/A
|
||||
type: dict
|
||||
suboptions:
|
||||
interface_leads_to_dmz:
|
||||
description:
|
||||
- Whether this interface leads to demilitarized zone (perimeter network).
|
||||
type: bool
|
||||
ip_address_behind_this_interface:
|
||||
description:
|
||||
- N/A
|
||||
type: str
|
||||
choices: ['not defined', 'network defined by the interface ip and net mask', 'network defined by routing', 'specific']
|
||||
specific_network:
|
||||
description:
|
||||
- Network behind this interface.
|
||||
type: str
|
||||
color:
|
||||
description:
|
||||
- Color of the object. Should be one of existing colors.
|
||||
type: str
|
||||
choices: ['aquamarine', 'black', 'blue', 'crete blue', 'burlywood', 'cyan', 'dark green', 'khaki', 'orchid', 'dark orange',
|
||||
'dark sea green', 'pink', 'turquoise', 'dark blue', 'firebrick', 'brown', 'forest green', 'gold', 'dark gold', 'gray', 'dark gray',
|
||||
'light green', 'lemon chiffon', 'coral', 'sea green', 'sky blue', 'magenta', 'purple', 'slate blue', 'violet red', 'navy blue', 'olive',
|
||||
'orange', 'red', 'sienna', 'yellow']
|
||||
comments:
|
||||
description:
|
||||
- Comments string.
|
||||
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']
|
||||
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
|
||||
ips:
|
||||
description:
|
||||
- Intrusion Prevention System blade enabled.
|
||||
type: bool
|
||||
logs_settings:
|
||||
description:
|
||||
- N/A
|
||||
type: dict
|
||||
suboptions:
|
||||
alert_when_free_disk_space_below:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
alert_when_free_disk_space_below_threshold:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
alert_when_free_disk_space_below_type:
|
||||
description:
|
||||
- N/A
|
||||
type: str
|
||||
choices: ['none', 'log', 'popup alert', 'mail alert', 'snmp trap alert', 'user defined alert no.1', 'user defined alert no.2',
|
||||
'user defined alert no.3']
|
||||
before_delete_keep_logs_from_the_last_days:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
before_delete_keep_logs_from_the_last_days_threshold:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
before_delete_run_script:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
before_delete_run_script_command:
|
||||
description:
|
||||
- N/A
|
||||
type: str
|
||||
delete_index_files_older_than_days:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
delete_index_files_older_than_days_threshold:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
delete_index_files_when_index_size_above:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
delete_index_files_when_index_size_above_threshold:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
delete_when_free_disk_space_below:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
delete_when_free_disk_space_below_threshold:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
detect_new_citrix_ica_application_names:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
forward_logs_to_log_server:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
forward_logs_to_log_server_name:
|
||||
description:
|
||||
- N/A
|
||||
type: str
|
||||
forward_logs_to_log_server_schedule_name:
|
||||
description:
|
||||
- N/A
|
||||
type: str
|
||||
free_disk_space_metrics:
|
||||
description:
|
||||
- N/A
|
||||
type: str
|
||||
choices: ['mbytes', 'percent']
|
||||
perform_log_rotate_before_log_forwarding:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
reject_connections_when_free_disk_space_below_threshold:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
reserve_for_packet_capture_metrics:
|
||||
description:
|
||||
- N/A
|
||||
type: str
|
||||
choices: ['percent', 'mbytes']
|
||||
reserve_for_packet_capture_threshold:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
rotate_log_by_file_size:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
rotate_log_file_size_threshold:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
rotate_log_on_schedule:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
rotate_log_schedule_name:
|
||||
description:
|
||||
- N/A
|
||||
type: str
|
||||
stop_logging_when_free_disk_space_below:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
stop_logging_when_free_disk_space_below_threshold:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
turn_on_qos_logging:
|
||||
description:
|
||||
- N/A
|
||||
type: bool
|
||||
update_account_log_every:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
one_time_password:
|
||||
description:
|
||||
- N/A
|
||||
type: str
|
||||
os_name:
|
||||
description:
|
||||
- Gateway platform operating system.
|
||||
type: str
|
||||
save_logs_locally:
|
||||
description:
|
||||
- Save logs locally on the gateway.
|
||||
type: bool
|
||||
send_alerts_to_server:
|
||||
description:
|
||||
- Server(s) to send alerts to.
|
||||
type: list
|
||||
send_logs_to_backup_server:
|
||||
description:
|
||||
- Backup server(s) to send logs to.
|
||||
type: list
|
||||
send_logs_to_server:
|
||||
description:
|
||||
- Server(s) to send logs to.
|
||||
type: list
|
||||
tags:
|
||||
description:
|
||||
- Collection of tag identifiers.
|
||||
type: list
|
||||
threat_emulation:
|
||||
description:
|
||||
- Threat Emulation blade enabled.
|
||||
type: bool
|
||||
threat_extraction:
|
||||
description:
|
||||
- Threat Extraction blade enabled.
|
||||
type: bool
|
||||
url_filtering:
|
||||
description:
|
||||
- URL Filtering blade enabled.
|
||||
type: bool
|
||||
version:
|
||||
description:
|
||||
- Gateway platform version.
|
||||
type: str
|
||||
vpn:
|
||||
description:
|
||||
- VPN blade enabled.
|
||||
type: bool
|
||||
vpn_settings:
|
||||
description:
|
||||
- Gateway VPN settings.
|
||||
type: dict
|
||||
suboptions:
|
||||
maximum_concurrent_ike_negotiations:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
maximum_concurrent_tunnels:
|
||||
description:
|
||||
- N/A
|
||||
type: int
|
||||
color:
|
||||
description:
|
||||
- Color of the object. Should be one of existing colors.
|
||||
type: str
|
||||
choices: ['aquamarine', 'black', 'blue', 'crete blue', 'burlywood', 'cyan', 'dark green', 'khaki', 'orchid', 'dark orange', 'dark sea green',
|
||||
'pink', 'turquoise', 'dark blue', 'firebrick', 'brown', 'forest green', 'gold', 'dark gold', 'gray', 'dark gray', 'light green', 'lemon chiffon',
|
||||
'coral', 'sea green', 'sky blue', 'magenta', 'purple', 'slate blue', 'violet red', 'navy blue', 'olive', 'orange', 'red', 'sienna', 'yellow']
|
||||
comments:
|
||||
description:
|
||||
- Comments string.
|
||||
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']
|
||||
groups:
|
||||
description:
|
||||
- Collection of group identifiers.
|
||||
type: list
|
||||
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-simple-gateway
|
||||
cp_mgmt_simple_gateway:
|
||||
ip_address: 192.0.2.1
|
||||
name: gw1
|
||||
state: present
|
||||
|
||||
- name: set-simple-gateway
|
||||
cp_mgmt_simple_gateway:
|
||||
anti_bot: true
|
||||
anti_virus: true
|
||||
application_control: true
|
||||
ips: true
|
||||
name: test_gateway
|
||||
state: present
|
||||
threat_emulation: true
|
||||
url_filtering: true
|
||||
|
||||
- name: delete-simple-gateway
|
||||
cp_mgmt_simple_gateway:
|
||||
name: gw1
|
||||
state: absent
|
||||
"""
|
||||
|
||||
RETURN = """
|
||||
cp_mgmt_simple_gateway:
|
||||
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(
|
||||
name=dict(type='str', required=True),
|
||||
ip_address=dict(type='str'),
|
||||
ipv4_address=dict(type='str'),
|
||||
ipv6_address=dict(type='str'),
|
||||
anti_bot=dict(type='bool'),
|
||||
anti_virus=dict(type='bool'),
|
||||
application_control=dict(type='bool'),
|
||||
content_awareness=dict(type='bool'),
|
||||
firewall=dict(type='bool'),
|
||||
firewall_settings=dict(type='dict', options=dict(
|
||||
auto_calculate_connections_hash_table_size_and_memory_pool=dict(type='bool'),
|
||||
auto_maximum_limit_for_concurrent_connections=dict(type='bool'),
|
||||
connections_hash_size=dict(type='int'),
|
||||
maximum_limit_for_concurrent_connections=dict(type='int'),
|
||||
maximum_memory_pool_size=dict(type='int'),
|
||||
memory_pool_size=dict(type='int')
|
||||
)),
|
||||
interfaces=dict(type='list', options=dict(
|
||||
name=dict(type='str'),
|
||||
anti_spoofing=dict(type='bool'),
|
||||
anti_spoofing_settings=dict(type='dict', options=dict(
|
||||
action=dict(type='str', choices=['prevent', 'detect'])
|
||||
)),
|
||||
ip_address=dict(type='str'),
|
||||
ipv4_address=dict(type='str'),
|
||||
ipv6_address=dict(type='str'),
|
||||
network_mask=dict(type='str'),
|
||||
ipv4_network_mask=dict(type='str'),
|
||||
ipv6_network_mask=dict(type='str'),
|
||||
mask_length=dict(type='str'),
|
||||
ipv4_mask_length=dict(type='str'),
|
||||
ipv6_mask_length=dict(type='str'),
|
||||
security_zone=dict(type='bool'),
|
||||
security_zone_settings=dict(type='dict', options=dict(
|
||||
auto_calculated=dict(type='bool'),
|
||||
specific_zone=dict(type='str')
|
||||
)),
|
||||
tags=dict(type='list'),
|
||||
topology=dict(type='str', choices=['automatic', 'external', 'internal']),
|
||||
topology_settings=dict(type='dict', options=dict(
|
||||
interface_leads_to_dmz=dict(type='bool'),
|
||||
ip_address_behind_this_interface=dict(type='str', choices=['not defined', 'network defined by the interface ip and net mask',
|
||||
'network defined by routing', 'specific']),
|
||||
specific_network=dict(type='str')
|
||||
)),
|
||||
color=dict(type='str', choices=['aquamarine', 'black', 'blue', 'crete blue', 'burlywood', 'cyan',
|
||||
'dark green', 'khaki', 'orchid', 'dark orange', 'dark sea green', 'pink', 'turquoise', 'dark blue',
|
||||
'firebrick',
|
||||
'brown', 'forest green', 'gold', 'dark gold', 'gray', 'dark gray', 'light green', 'lemon chiffon',
|
||||
'coral',
|
||||
'sea green', 'sky blue', 'magenta', 'purple', 'slate blue', 'violet red', 'navy blue', 'olive', 'orange',
|
||||
'red',
|
||||
'sienna', 'yellow']),
|
||||
comments=dict(type='str'),
|
||||
details_level=dict(type='str', choices=['uid', 'standard', 'full']),
|
||||
ignore_warnings=dict(type='bool'),
|
||||
ignore_errors=dict(type='bool')
|
||||
)),
|
||||
ips=dict(type='bool'),
|
||||
logs_settings=dict(type='dict', options=dict(
|
||||
alert_when_free_disk_space_below=dict(type='bool'),
|
||||
alert_when_free_disk_space_below_threshold=dict(type='int'),
|
||||
alert_when_free_disk_space_below_type=dict(type='str', choices=['none',
|
||||
'log', 'popup alert', 'mail alert', 'snmp trap alert',
|
||||
'user defined alert no.1',
|
||||
'user defined alert no.2', 'user defined alert no.3']),
|
||||
before_delete_keep_logs_from_the_last_days=dict(type='bool'),
|
||||
before_delete_keep_logs_from_the_last_days_threshold=dict(type='int'),
|
||||
before_delete_run_script=dict(type='bool'),
|
||||
before_delete_run_script_command=dict(type='str'),
|
||||
delete_index_files_older_than_days=dict(type='bool'),
|
||||
delete_index_files_older_than_days_threshold=dict(type='int'),
|
||||
delete_index_files_when_index_size_above=dict(type='bool'),
|
||||
delete_index_files_when_index_size_above_threshold=dict(type='int'),
|
||||
delete_when_free_disk_space_below=dict(type='bool'),
|
||||
delete_when_free_disk_space_below_threshold=dict(type='int'),
|
||||
detect_new_citrix_ica_application_names=dict(type='bool'),
|
||||
forward_logs_to_log_server=dict(type='bool'),
|
||||
forward_logs_to_log_server_name=dict(type='str'),
|
||||
forward_logs_to_log_server_schedule_name=dict(type='str'),
|
||||
free_disk_space_metrics=dict(type='str', choices=['mbytes', 'percent']),
|
||||
perform_log_rotate_before_log_forwarding=dict(type='bool'),
|
||||
reject_connections_when_free_disk_space_below_threshold=dict(type='bool'),
|
||||
reserve_for_packet_capture_metrics=dict(type='str', choices=['percent', 'mbytes']),
|
||||
reserve_for_packet_capture_threshold=dict(type='int'),
|
||||
rotate_log_by_file_size=dict(type='bool'),
|
||||
rotate_log_file_size_threshold=dict(type='int'),
|
||||
rotate_log_on_schedule=dict(type='bool'),
|
||||
rotate_log_schedule_name=dict(type='str'),
|
||||
stop_logging_when_free_disk_space_below=dict(type='bool'),
|
||||
stop_logging_when_free_disk_space_below_threshold=dict(type='int'),
|
||||
turn_on_qos_logging=dict(type='bool'),
|
||||
update_account_log_every=dict(type='int')
|
||||
)),
|
||||
one_time_password=dict(type='str'),
|
||||
os_name=dict(type='str'),
|
||||
save_logs_locally=dict(type='bool'),
|
||||
send_alerts_to_server=dict(type='list'),
|
||||
send_logs_to_backup_server=dict(type='list'),
|
||||
send_logs_to_server=dict(type='list'),
|
||||
tags=dict(type='list'),
|
||||
threat_emulation=dict(type='bool'),
|
||||
threat_extraction=dict(type='bool'),
|
||||
url_filtering=dict(type='bool'),
|
||||
version=dict(type='str'),
|
||||
vpn=dict(type='bool'),
|
||||
vpn_settings=dict(type='dict', options=dict(
|
||||
maximum_concurrent_ike_negotiations=dict(type='int'),
|
||||
maximum_concurrent_tunnels=dict(type='int')
|
||||
)),
|
||||
color=dict(type='str', choices=['aquamarine', 'black', 'blue', 'crete blue', 'burlywood', 'cyan', 'dark green',
|
||||
'khaki', 'orchid', 'dark orange', 'dark sea green', 'pink', 'turquoise', 'dark blue', 'firebrick', 'brown',
|
||||
'forest green', 'gold', 'dark gold', 'gray', 'dark gray', 'light green', 'lemon chiffon', 'coral',
|
||||
'sea green',
|
||||
'sky blue', 'magenta', 'purple', 'slate blue', 'violet red', 'navy blue', 'olive', 'orange', 'red', 'sienna',
|
||||
'yellow']),
|
||||
comments=dict(type='str'),
|
||||
details_level=dict(type='str', choices=['uid', 'standard', 'full']),
|
||||
groups=dict(type='list'),
|
||||
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 = 'simple-gateway'
|
||||
|
||||
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_simple_gateway_facts
|
||||
short_description: Get simple-gateway objects facts on Checkpoint over Web Services API
|
||||
description:
|
||||
- Get simple-gateway 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:
|
||||
name:
|
||||
description:
|
||||
- Object name.
|
||||
This parameter is relevant only for getting a specific object.
|
||||
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']
|
||||
show_membership:
|
||||
description:
|
||||
- Indicates whether to calculate and show "groups" field for every object in reply.
|
||||
type: bool
|
||||
extends_documentation_fragment: checkpoint_facts
|
||||
"""
|
||||
|
||||
EXAMPLES = """
|
||||
- name: show-simple-gateway
|
||||
cp_mgmt_simple_gateway_facts:
|
||||
name: gw1
|
||||
|
||||
- name: show-simple-gateways
|
||||
cp_mgmt_simple_gateway_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(
|
||||
name=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'])
|
||||
)),
|
||||
show_membership=dict(type='bool')
|
||||
)
|
||||
argument_spec.update(checkpoint_argument_spec_for_facts)
|
||||
|
||||
module = AnsibleModule(argument_spec=argument_spec)
|
||||
|
||||
api_call_object = "simple-gateway"
|
||||
api_call_object_plural_version = "simple-gateways"
|
||||
|
||||
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