Skip to content

Commit

Permalink
feat(panos_virual_wire): Add gathered_filter
Browse files Browse the repository at this point in the history
  • Loading branch information
shinmog committed Oct 12, 2022
1 parent ec7172e commit e400f2d
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions plugins/modules/panos_virtual_wire.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
extends_documentation_fragment:
- paloaltonetworks.panos.fragments.transitional_provider
- paloaltonetworks.panos.fragments.network_resource_module_state
- paloaltonetworks.panos.fragments.gathered_filter
- paloaltonetworks.panos.fragments.vsys_import
- paloaltonetworks.panos.fragments.full_template_support
notes:
Expand All @@ -43,17 +44,14 @@
description:
- Name of the Virtual Wire
type: str
required: True
interface1:
description:
- First interface of Virtual Wire
type: str
required: True
interface2:
description:
- Second interface of Virtual Wire
type: str
required: True
tag:
description:
- Set tag that is allowed over Virtual Wire. Currently
Expand Down Expand Up @@ -97,6 +95,7 @@ def main():
template=True,
template_stack=True,
with_network_resource_module_state=True,
with_gathered_filter=True,
with_classic_provider_spec=True,
with_set_vsys_reference=True,
sdk_cls=("network", "VirtualWire"),
Expand All @@ -105,8 +104,8 @@ def main():
type="str",
required=True,
),
interface1=dict(type="str", required=True),
interface2=dict(type="str", required=True),
interface1=dict(),
interface2=dict(),
tag=dict(type="int"),
multicast=dict(type="bool"),
pass_through=dict(type="bool"),
Expand Down

0 comments on commit e400f2d

Please sign in to comment.