Skip to content

Commit 427bf60

Browse files
committed
Ansible VSNext
1 parent ba1b310 commit 427bf60

10 files changed

+31
-14
lines changed

CHANGELOG.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@ Check_Point.gaia Release Notes
33
==============================
44

55
.. contents:: Topics
6+
7+
v6.0.0
8+
======
9+
10+
Release Summary
11+
---------------
12+
13+
This is release 6.0.0 of ``check_point.gaia``, released on 2025-01-01.
14+
15+
New Modules
16+
-----------
17+
cp_gaia_virtual_systems_facts – get virtual-system objects facts on Check Point over Web Services API.
18+
cp_gaia_virtual_switch – manages virtual switch on Check Point Gateway over Web Services API.
19+
cp_gaia_virtual_switch_facts – get virtual-switch objects facts on Check Point over Web Services API.
20+
cp_gaia_virtual_gateway – manages virtual-gateway objects on Check Point Gateway over Web Services API.
21+
cp_gaia_virtual_gateway_facts – get virtual-gateway objects facts on Check Point over Web Services API.
22+
cp_gaia_virtual_vsnext_state_facts – get the VSNext state on Check Point over Web Services API.
623

724
v5.0.1
825
======

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,12 @@ Modules
121121
* `cp_gaia_expert_password_facts` – get expert hash password of a Check Point machine over Web Services API.
122122
* `cp_gaia_time_and_date` – manage time and date and timezone of a Check Point machine over Web Services API.
123123
* `cp_gaia_time_and_date_facts` – get time and date and timezone of a Check Point machine over Web Services API.
124-
* `cp_gaia_virtual_systems_facts`Get virtual-system objects facts on Check Point over Web Services API.
125-
* `cp_gaia_virtual_switch`Manages virtual switch on Check Point Gateway over Web Services API.
126-
* `cp_gaia_virtual_switch_facts`Get virtual-switch objects facts on Check Point over Web Services API.
127-
* `cp_gaia_virtual_gateway`Get virtual-gateway objects facts on Check Point over Web Services API.
128-
* `cp_gaia_virtual_gateway_facts`Get virtual-gateway objects facts on Check Point over Web Services API.
129-
* `cp_gaia_virtual_vsnext_state_facts`Show the VSNext state on Check Point over Web Services API.
124+
* `cp_gaia_virtual_systems_facts`get virtual-system objects facts on Check Point over Web Services API.
125+
* `cp_gaia_virtual_switch`manages virtual switch on Check Point Gateway over Web Services API.
126+
* `cp_gaia_virtual_switch_facts`get virtual-switch objects facts on Check Point over Web Services API.
127+
* `cp_gaia_virtual_gateway`manages virtual-gateway objects on Check Point Gateway over Web Services API.
128+
* `cp_gaia_virtual_gateway_facts`get virtual-gateway objects facts on Check Point over Web Services API.
129+
* `cp_gaia_virtual_vsnext_state_facts`get the VSNext state on Check Point over Web Services API.
130130

131131
### Code of Conduct
132132
This collection follows the Ansible project's

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace: check_point
99
name: gaia
1010

1111
# The version of the collection. Must be compatible with semantic versioning
12-
version: 5.0.1
12+
version: 6.0.0
1313

1414
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1515
readme: README.md

plugins/modules/cp_gaia_dhcp_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
def main():
158158
# arguments for the module:
159159
fields = dict(
160-
enabled=dict(type='bool')
160+
enabled=dict(type='bool'),
161161
subnets=dict(
162162
type='list', elements='dict',
163163
options=dict(

plugins/modules/cp_gaia_routes_facts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def main():
106106
fields = dict(
107107
limit=dict(type="int", required=False, default=50),
108108
offset=dict(type="int", required=False, default=0),
109-
order=dict(type="str", required=False, choices=['ASC', 'DESC'], default="ASC")
109+
order=dict(type="str", required=False, choices=['ASC', 'DESC'], default="ASC"),
110110
)
111111
fields.update(checkpoint_argument_spec_for_all)
112112
module = AnsibleModule(argument_spec=fields, supports_check_mode=True)

plugins/modules/cp_gaia_routes_kernel_facts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def main():
8484
fields = dict(
8585
limit=dict(type="int", required=False, default=50),
8686
offset=dict(type="int", required=False, default=0),
87-
order=dict(type="str", required=False, choices=['ASC', 'DESC'], default="ASC")
87+
order=dict(type="str", required=False, choices=['ASC', 'DESC'], default="ASC"),
8888
)
8989
fields.update(checkpoint_argument_spec_for_all)
9090
module = AnsibleModule(argument_spec=fields, supports_check_mode=True)

plugins/modules/cp_gaia_routes_ospf_facts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def main():
106106
fields = dict(
107107
limit=dict(type="int", required=False, default=50),
108108
offset=dict(type="int", required=False, default=0),
109-
order=dict(type="str", required=False, choices=['ASC', 'DESC'], default="ASC")
109+
order=dict(type="str", required=False, choices=['ASC', 'DESC'], default="ASC"),
110110
)
111111
fields.update(checkpoint_argument_spec_for_all)
112112
module = AnsibleModule(argument_spec=fields, supports_check_mode=True)

plugins/modules/cp_gaia_routes_rip_facts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def main():
106106
fields = dict(
107107
limit=dict(type="int", required=False, default=50),
108108
offset=dict(type="int", required=False, default=0),
109-
order=dict(type="str", required=False, choices=['ASC', 'DESC'], default="ASC")
109+
order=dict(type="str", required=False, choices=['ASC', 'DESC'], default="ASC"),
110110
)
111111
fields.update(checkpoint_argument_spec_for_all)
112112
module = AnsibleModule(argument_spec=fields, supports_check_mode=True)

plugins/modules/cp_gaia_routes_static_facts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def main():
9898
fields = dict(
9999
limit=dict(type="int", required=False, default=50),
100100
offset=dict(type="int", required=False, default=0),
101-
order=dict(type="str", required=False, choices=['ASC', 'DESC'], default="ASC")
101+
order=dict(type="str", required=False, choices=['ASC', 'DESC'], default="ASC"),
102102
)
103103
fields.update(checkpoint_argument_spec_for_all)
104104
module = AnsibleModule(argument_spec=fields, supports_check_mode=True)

plugins/modules/cp_gaia_static_route.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def main():
139139
comment=dict(type='str'),
140140
rank=dict(type='int'),
141141
ping=dict(type='bool', default=False),
142-
scope_local=dict(type='bool', default=False)
142+
scope_local=dict(type='bool', default=False),
143143
)
144144
fields.update(checkpoint_argument_spec_for_all)
145145
module = AnsibleModule(

0 commit comments

Comments
 (0)