* Fix #61145 * Fix type keyword * Removed file fragment
This commit is contained in:
parent
39f35ac5bb
commit
9744ce1e1d
107 changed files with 301 additions and 301 deletions
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: checkpoint_access_rule
|
||||
short_description: Manages access rules on Checkpoint over Web Services API
|
||||
short_description: Manages access rules on Check Point over Web Services API
|
||||
description:
|
||||
- Manages access rules on Checkpoint devices including creating, updating, removing access rules objects,
|
||||
- Manages access rules on Check Point devices including creating, updating, removing access rules objects,
|
||||
All operations are performed over Web Services API.
|
||||
version_added: "2.8"
|
||||
author: "Ansible by Red Hat (@rcarrillocruz)"
|
|
@ -29,9 +29,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: checkpoint_access_rule_facts
|
||||
short_description: Get access rules objects facts on Checkpoint over Web Services API
|
||||
short_description: Get access rules objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get access rules objects facts on Checkpoint devices.
|
||||
- Get access rules objects facts on Check Point devices.
|
||||
All operations are performed over Web Services API.
|
||||
version_added: "2.8"
|
||||
author: "Ansible by Red Hat (@rcarrillocruz)"
|
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: checkpoint_host
|
||||
short_description: Manages host objects on Checkpoint over Web Services API
|
||||
short_description: Manages host objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages host objects on Checkpoint devices including creating, updating, removing access rules objects.
|
||||
- Manages host objects on Check Point devices including creating, updating, removing access rules objects.
|
||||
All operations are performed over Web Services API.
|
||||
version_added: "2.8"
|
||||
author: "Ansible by Red Hat (@rcarrillocruz)"
|
|
@ -29,9 +29,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: checkpoint_host_facts
|
||||
short_description: Get host objects facts on Checkpoint over Web Services API
|
||||
short_description: Get host objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get host objects facts on Checkpoint devices.
|
||||
- Get host objects facts on Check Point devices.
|
||||
All operations are performed over Web Services API.
|
||||
version_added: "2.8"
|
||||
author: "Ansible by Red Hat (@rcarrillocruz)"
|
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: checkpoint_run_script
|
||||
short_description: Run scripts on Checkpoint devices over Web Services API
|
||||
short_description: Run scripts on Check Point devices over Web Services API
|
||||
description:
|
||||
- Run scripts on Checkpoint devices.
|
||||
- Run scripts on Check Point devices.
|
||||
All operations are performed over Web Services API.
|
||||
version_added: "2.8"
|
||||
author: "Ansible by Red Hat (@rcarrillocruz)"
|
|
@ -29,9 +29,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: checkpoint_task_facts
|
||||
short_description: Get task objects facts on Checkpoint over Web Services API
|
||||
short_description: Get task objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get task objects facts on Checkpoint devices.
|
||||
- Get task objects facts on Check Point devices.
|
||||
All operations are performed over Web Services API.
|
||||
version_added: "2.8"
|
||||
author: "Ansible by Red Hat (@rcarrillocruz)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_access_layer
|
||||
short_description: Manages access-layer objects on Checkpoint over Web Services API
|
||||
short_description: Manages access-layer objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages access-layer objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages access-layer objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_access_layer_facts
|
||||
short_description: Get access-layer objects facts on Checkpoint over Web Services API
|
||||
short_description: Get access-layer objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get access-layer objects facts on Checkpoint devices.
|
||||
- Get access-layer objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_access_role
|
||||
short_description: Manages access-role objects on Checkpoint over Web Services API
|
||||
short_description: Manages access-role objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages access-role objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages access-role objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_access_role_facts
|
||||
short_description: Get access-role objects facts on Checkpoint over Web Services API
|
||||
short_description: Get access-role objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get access-role objects facts on Checkpoint devices.
|
||||
- Get access-role objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_access_rule
|
||||
short_description: Manages access-rule objects on Checkpoint over Web Services API
|
||||
short_description: Manages access-rule objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages access-rule objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages access-rule objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_access_rule_facts
|
||||
short_description: Get access-rule objects facts on Checkpoint over Web Services API
|
||||
short_description: Get access-rule objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get access-rule objects facts on Checkpoint devices.
|
||||
- Get access-rule objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_address_range
|
||||
short_description: Manages address-range objects on Checkpoint over Web Services API
|
||||
short_description: Manages address-range objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages address-range objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages address-range objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_address_range_facts
|
||||
short_description: Get address-range objects facts on Checkpoint over Web Services API
|
||||
short_description: Get address-range objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get address-range objects facts on Checkpoint devices.
|
||||
- Get address-range objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_administrator
|
||||
short_description: Manages administrator objects on Checkpoint over Web Services API
|
||||
short_description: Manages administrator objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages administrator objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages administrator objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_administrator_facts
|
||||
short_description: Get administrator objects facts on Checkpoint over Web Services API
|
||||
short_description: Get administrator objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get administrator objects facts on Checkpoint devices.
|
||||
- Get administrator objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_application_site
|
||||
short_description: Manages application-site objects on Checkpoint over Web Services API
|
||||
short_description: Manages application-site objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages application-site objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages application-site objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_application_site_category
|
||||
short_description: Manages application-site-category objects on Checkpoint over Web Services API
|
||||
short_description: Manages application-site-category objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages application-site-category objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages application-site-category objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_application_site_category_facts
|
||||
short_description: Get application-site-category objects facts on Checkpoint over Web Services API
|
||||
short_description: Get application-site-category objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get application-site-category objects facts on Checkpoint devices.
|
||||
- Get application-site-category objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_application_site_facts
|
||||
short_description: Get application-site objects facts on Checkpoint over Web Services API
|
||||
short_description: Get application-site objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get application-site objects facts on Checkpoint devices.
|
||||
- Get application-site objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_application_site_group
|
||||
short_description: Manages application-site-group objects on Checkpoint over Web Services API
|
||||
short_description: Manages application-site-group objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages application-site-group objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages application-site-group objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_application_site_group_facts
|
||||
short_description: Get application-site-group objects facts on Checkpoint over Web Services API
|
||||
short_description: Get application-site-group objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get application-site-group objects facts on Checkpoint devices.
|
||||
- Get application-site-group objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_assign_global_assignment
|
||||
short_description: assign global assignment on Checkpoint over Web Services API
|
||||
short_description: assign global assignment on Check Point over Web Services API
|
||||
description:
|
||||
- assign global assignment on Checkpoint over Web Services API
|
||||
- assign global assignment on Check Point over Web Services API
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_dns_domain
|
||||
short_description: Manages dns-domain objects on Checkpoint over Web Services API
|
||||
short_description: Manages dns-domain objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages dns-domain objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages dns-domain objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_dns_domain_facts
|
||||
short_description: Get dns-domain objects facts on Checkpoint over Web Services API
|
||||
short_description: Get dns-domain objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get dns-domain objects facts on Checkpoint devices.
|
||||
- Get dns-domain objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_dynamic_object
|
||||
short_description: Manages dynamic-object objects on Checkpoint over Web Services API
|
||||
short_description: Manages dynamic-object objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages dynamic-object objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages dynamic-object objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_dynamic_object_facts
|
||||
short_description: Get dynamic-object objects facts on Checkpoint over Web Services API
|
||||
short_description: Get dynamic-object objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get dynamic-object objects facts on Checkpoint devices.
|
||||
- Get dynamic-object objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_exception_group
|
||||
short_description: Manages exception-group objects on Checkpoint over Web Services API
|
||||
short_description: Manages exception-group objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages exception-group objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages exception-group objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_exception_group_facts
|
||||
short_description: Get exception-group objects facts on Checkpoint over Web Services API
|
||||
short_description: Get exception-group objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get exception-group objects facts on Checkpoint devices.
|
||||
- Get exception-group objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_global_assignment
|
||||
short_description: Manages global-assignment objects on Checkpoint over Web Services API
|
||||
short_description: Manages global-assignment objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages global-assignment objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages global-assignment objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_global_assignment_facts
|
||||
short_description: Get global-assignment objects facts on Checkpoint over Web Services API
|
||||
short_description: Get global-assignment objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get global-assignment objects facts on Checkpoint devices.
|
||||
- Get global-assignment objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_group
|
||||
short_description: Manages group objects on Checkpoint over Web Services API
|
||||
short_description: Manages group objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages group objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages group objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_group_facts
|
||||
short_description: Get group objects facts on Checkpoint over Web Services API
|
||||
short_description: Get group objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get group objects facts on Checkpoint devices.
|
||||
- Get group objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_group_with_exclusion
|
||||
short_description: Manages group-with-exclusion objects on Checkpoint over Web Services API
|
||||
short_description: Manages group-with-exclusion objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages group-with-exclusion objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages group-with-exclusion objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_group_with_exclusion_facts
|
||||
short_description: Get group-with-exclusion objects facts on Checkpoint over Web Services API
|
||||
short_description: Get group-with-exclusion objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get group-with-exclusion objects facts on Checkpoint devices.
|
||||
- Get group-with-exclusion objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_host
|
||||
short_description: Manages host objects on Checkpoint over Web Services API
|
||||
short_description: Manages host objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages host objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages host objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_host_facts
|
||||
short_description: Get host objects facts on Checkpoint over Web Services API
|
||||
short_description: Get host objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get host objects facts on Checkpoint devices.
|
||||
- Get host objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_install_policy
|
||||
short_description: install policy on Checkpoint over Web Services API
|
||||
short_description: install policy on Check Point over Web Services API
|
||||
description:
|
||||
- install policy on Checkpoint over Web Services API
|
||||
- install policy on Check Point over Web Services API
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_mds_facts
|
||||
short_description: Get Multi-Domain Server (mds) objects facts on Checkpoint over Web Services API
|
||||
short_description: Get Multi-Domain Server (mds) objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get mds objects facts on Checkpoint devices.
|
||||
- Get mds objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_multicast_address_range
|
||||
short_description: Manages multicast-address-range objects on Checkpoint over Web Services API
|
||||
short_description: Manages multicast-address-range objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages multicast-address-range objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages multicast-address-range objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_multicast_address_range_facts
|
||||
short_description: Get multicast-address-range objects facts on Checkpoint over Web Services API
|
||||
short_description: Get multicast-address-range objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get multicast-address-range objects facts on Checkpoint devices.
|
||||
- Get multicast-address-range objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_network
|
||||
short_description: Manages network objects on Checkpoint over Web Services API
|
||||
short_description: Manages network objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages network objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages network objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_network_facts
|
||||
short_description: Get network objects facts on Checkpoint over Web Services API
|
||||
short_description: Get network objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get network objects facts on Checkpoint devices.
|
||||
- Get network objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_package
|
||||
short_description: Manages package objects on Checkpoint over Web Services API
|
||||
short_description: Manages package objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages package objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages package objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_package_facts
|
||||
short_description: Get package objects facts on Checkpoint over Web Services API
|
||||
short_description: Get package objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get package objects facts on Checkpoint devices.
|
||||
- Get package objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_put_file
|
||||
short_description: put file on Checkpoint over Web Services API
|
||||
short_description: put file on Check Point over Web Services API
|
||||
description:
|
||||
- put file on Checkpoint over Web Services API
|
||||
- put file on Check Point over Web Services API
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_security_zone
|
||||
short_description: Manages security-zone objects on Checkpoint over Web Services API
|
||||
short_description: Manages security-zone objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages security-zone objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages security-zone objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_security_zone_facts
|
||||
short_description: Get security-zone objects facts on Checkpoint over Web Services API
|
||||
short_description: Get security-zone objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get security-zone objects facts on Checkpoint devices.
|
||||
- Get security-zone objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_dce_rpc
|
||||
short_description: Manages service-dce-rpc objects on Checkpoint over Web Services API
|
||||
short_description: Manages service-dce-rpc objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages service-dce-rpc objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages service-dce-rpc objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_dce_rpc_facts
|
||||
short_description: Get service-dce-rpc objects facts on Checkpoint over Web Services API
|
||||
short_description: Get service-dce-rpc objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get service-dce-rpc objects facts on Checkpoint devices.
|
||||
- Get service-dce-rpc objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_group
|
||||
short_description: Manages service-group objects on Checkpoint over Web Services API
|
||||
short_description: Manages service-group objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages service-group objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages service-group objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_group_facts
|
||||
short_description: Get service-group objects facts on Checkpoint over Web Services API
|
||||
short_description: Get service-group objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get service-group objects facts on Checkpoint devices.
|
||||
- Get service-group objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_icmp
|
||||
short_description: Manages service-icmp objects on Checkpoint over Web Services API
|
||||
short_description: Manages service-icmp objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages service-icmp objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages service-icmp objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_icmp6
|
||||
short_description: Manages service-icmp6 objects on Checkpoint over Web Services API
|
||||
short_description: Manages service-icmp6 objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages service-icmp6 objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages service-icmp6 objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_icmp6_facts
|
||||
short_description: Get service-icmp6 objects facts on Checkpoint over Web Services API
|
||||
short_description: Get service-icmp6 objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get service-icmp6 objects facts on Checkpoint devices.
|
||||
- Get service-icmp6 objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_icmp_facts
|
||||
short_description: Get service-icmp objects facts on Checkpoint over Web Services API
|
||||
short_description: Get service-icmp objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get service-icmp objects facts on Checkpoint devices.
|
||||
- Get service-icmp objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_other
|
||||
short_description: Manages service-other objects on Checkpoint over Web Services API
|
||||
short_description: Manages service-other objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages service-other objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages service-other objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_other_facts
|
||||
short_description: Get service-other objects facts on Checkpoint over Web Services API
|
||||
short_description: Get service-other objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get service-other objects facts on Checkpoint devices.
|
||||
- Get service-other objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_rpc
|
||||
short_description: Manages service-rpc objects on Checkpoint over Web Services API
|
||||
short_description: Manages service-rpc objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages service-rpc objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages service-rpc objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_rpc_facts
|
||||
short_description: Get service-rpc objects facts on Checkpoint over Web Services API
|
||||
short_description: Get service-rpc objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get service-rpc objects facts on Checkpoint devices.
|
||||
- Get service-rpc objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_sctp
|
||||
short_description: Manages service-sctp objects on Checkpoint over Web Services API
|
||||
short_description: Manages service-sctp objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages service-sctp objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages service-sctp objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_sctp_facts
|
||||
short_description: Get service-sctp objects facts on Checkpoint over Web Services API
|
||||
short_description: Get service-sctp objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get service-sctp objects facts on Checkpoint devices.
|
||||
- Get service-sctp objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_tcp
|
||||
short_description: Manages service-tcp objects on Checkpoint over Web Services API
|
||||
short_description: Manages service-tcp objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages service-tcp objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages service-tcp objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_tcp_facts
|
||||
short_description: Get service-tcp objects facts on Checkpoint over Web Services API
|
||||
short_description: Get service-tcp objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get service-tcp objects facts on Checkpoint devices.
|
||||
- Get service-tcp objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_udp
|
||||
short_description: Manages service-udp objects on Checkpoint over Web Services API
|
||||
short_description: Manages service-udp objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages service-udp objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages service-udp objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_service_udp_facts
|
||||
short_description: Get service-udp objects facts on Checkpoint over Web Services API
|
||||
short_description: Get service-udp objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get service-udp objects facts on Checkpoint devices.
|
||||
- Get service-udp objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_session_facts
|
||||
short_description: Get session objects facts on Checkpoint over Web Services API
|
||||
short_description: Get session objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get session objects facts on Checkpoint devices.
|
||||
- Get session objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_simple_gateway
|
||||
short_description: Manages simple-gateway objects on Checkpoint over Web Services API
|
||||
short_description: Manages simple-gateway objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages simple-gateway objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages simple-gateway objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_simple_gateway_facts
|
||||
short_description: Get simple-gateway objects facts on Checkpoint over Web Services API
|
||||
short_description: Get simple-gateway objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get simple-gateway objects facts on Checkpoint devices.
|
||||
- Get simple-gateway objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_tag
|
||||
short_description: Manages tag objects on Checkpoint over Web Services API
|
||||
short_description: Manages tag objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages tag objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages tag objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_tag_facts
|
||||
short_description: Get tag objects facts on Checkpoint over Web Services API
|
||||
short_description: Get tag objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get tag objects facts on Checkpoint devices.
|
||||
- Get tag objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_threat_exception
|
||||
short_description: Manages threat-exception objects on Checkpoint over Web Services API
|
||||
short_description: Manages threat-exception objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages threat-exception objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages threat-exception objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_threat_exception_facts
|
||||
short_description: Get threat-exception objects facts on Checkpoint over Web Services API
|
||||
short_description: Get threat-exception objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get threat-exception objects facts on Checkpoint devices.
|
||||
- Get threat-exception objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_threat_indicator
|
||||
short_description: Manages threat-indicator objects on Checkpoint over Web Services API
|
||||
short_description: Manages threat-indicator objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages threat-indicator objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages threat-indicator objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_threat_indicator_facts
|
||||
short_description: Get threat-indicator objects facts on Checkpoint over Web Services API
|
||||
short_description: Get threat-indicator objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get threat-indicator objects facts on Checkpoint devices.
|
||||
- Get threat-indicator objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_threat_layer
|
||||
short_description: Manages threat-layer objects on Checkpoint over Web Services API
|
||||
short_description: Manages threat-layer objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages threat-layer objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages threat-layer objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_threat_layer_facts
|
||||
short_description: Get threat-layer objects facts on Checkpoint over Web Services API
|
||||
short_description: Get threat-layer objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get threat-layer objects facts on Checkpoint devices.
|
||||
- Get threat-layer objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_threat_profile
|
||||
short_description: Manages threat-profile objects on Checkpoint over Web Services API
|
||||
short_description: Manages threat-profile objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages threat-profile objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages threat-profile objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_threat_profile_facts
|
||||
short_description: Get threat-profile objects facts on Checkpoint over Web Services API
|
||||
short_description: Get threat-profile objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get threat-profile objects facts on Checkpoint devices.
|
||||
- Get threat-profile objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_threat_rule
|
||||
short_description: Manages threat-rule objects on Checkpoint over Web Services API
|
||||
short_description: Manages threat-rule objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages threat-rule objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages threat-rule objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_threat_rule_facts
|
||||
short_description: Get threat-rule objects facts on Checkpoint over Web Services API
|
||||
short_description: Get threat-rule objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get threat-rule objects facts on Checkpoint devices.
|
||||
- Get threat-rule objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_time
|
||||
short_description: Manages time objects on Checkpoint over Web Services API
|
||||
short_description: Manages time objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages time objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages time objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_time_facts
|
||||
short_description: Get time objects facts on Checkpoint over Web Services API
|
||||
short_description: Get time objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get time objects facts on Checkpoint devices.
|
||||
- Get time objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_vpn_community_meshed
|
||||
short_description: Manages vpn-community-meshed objects on Checkpoint over Web Services API
|
||||
short_description: Manages vpn-community-meshed objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages vpn-community-meshed objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages vpn-community-meshed objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_vpn_community_meshed_facts
|
||||
short_description: Get vpn-community-meshed objects facts on Checkpoint over Web Services API
|
||||
short_description: Get vpn-community-meshed objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get vpn-community-meshed objects facts on Checkpoint devices.
|
||||
- Get vpn-community-meshed objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_vpn_community_star
|
||||
short_description: Manages vpn-community-star objects on Checkpoint over Web Services API
|
||||
short_description: Manages vpn-community-star objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages vpn-community-star objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages vpn-community-star objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_vpn_community_star_facts
|
||||
short_description: Get vpn-community-star objects facts on Checkpoint over Web Services API
|
||||
short_description: Get vpn-community-star objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get vpn-community-star objects facts on Checkpoint devices.
|
||||
- Get vpn-community-star objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_wildcard
|
||||
short_description: Manages wildcard objects on Checkpoint over Web Services API
|
||||
short_description: Manages wildcard objects on Check Point over Web Services API
|
||||
description:
|
||||
- Manages wildcard objects on Checkpoint devices including creating, updating and removing objects.
|
||||
- Manages wildcard objects on Check Point devices including creating, updating and removing objects.
|
||||
- All operations are performed over Web Services API.
|
||||
version_added: "2.9"
|
||||
author: "Or Soffer (@chkp-orso)"
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
||||
|
@ -28,9 +28,9 @@ ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|||
DOCUMENTATION = """
|
||||
---
|
||||
module: cp_mgmt_wildcard_facts
|
||||
short_description: Get wildcard objects facts on Checkpoint over Web Services API
|
||||
short_description: Get wildcard objects facts on Check Point over Web Services API
|
||||
description:
|
||||
- Get wildcard objects facts on Checkpoint devices.
|
||||
- Get wildcard objects facts on Check Point 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'.
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Ansible module to manage CheckPoint Firewall (c) 2019
|
||||
# Ansible module to manage Check Point 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
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue