From 3e030e85e552f2c3b14eee49d93974e67b72f362 Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Tue, 30 Apr 2024 12:44:30 -0500 Subject: [PATCH] Release v4.5.1 --- CHANGELOG.rst | 31 ++ changelogs/changelog.yaml | 7 + docs/plugins/aggregate_module.rst | 3 +- docs/plugins/cable_module.rst | 39 +- docs/plugins/circuit_module.rst | 3 +- docs/plugins/circuit_termination_module.rst | 3 +- docs/plugins/circuit_type_module.rst | 3 +- docs/plugins/cluster_group_module.rst | 3 +- docs/plugins/cluster_module.rst | 3 +- docs/plugins/cluster_type_module.rst | 3 +- docs/plugins/console_port_module.rst | 22 +- docs/plugins/console_port_template_module.rst | 22 +- docs/plugins/console_server_port_module.rst | 22 +- .../console_server_port_template_module.rst | 22 +- docs/plugins/device_bay_module.rst | 3 +- docs/plugins/device_bay_template_module.rst | 3 +- docs/plugins/device_interface_module.rst | 5 +- .../device_interface_template_module.rst | 3 +- docs/plugins/device_module.rst | 3 +- docs/plugins/device_role_module.rst | 3 +- docs/plugins/device_type_module.rst | 3 +- docs/plugins/environment_variables.rst | 35 ++ docs/plugins/front_port_module.rst | 23 +- docs/plugins/front_port_template_module.rst | 33 +- docs/plugins/gql_inventory_inventory.rst | 55 ++- docs/plugins/graphql_string_filter.rst | 27 ++ docs/plugins/index.rst | 68 +-- docs/plugins/inventory_inventory.rst | 412 +++++++++++++++++- docs/plugins/inventory_item_module.rst | 3 +- docs/plugins/ip_address_module.rst | 3 +- docs/plugins/ipam_role_module.rst | 3 +- docs/plugins/location_module.rst | 3 +- docs/plugins/location_type_module.rst | 3 +- docs/plugins/lookup_graphql_lookup.rst | 12 +- docs/plugins/lookup_lookup.rst | 18 +- docs/plugins/manufacturer_module.rst | 3 +- docs/plugins/nautobot_server_module.rst | 15 +- docs/plugins/platform_module.rst | 3 +- docs/plugins/plugin_module.rst | 3 +- docs/plugins/power_feed_module.rst | 3 +- docs/plugins/power_outlet_module.rst | 63 +-- docs/plugins/power_outlet_template_module.rst | 63 +-- docs/plugins/power_panel_module.rst | 3 +- docs/plugins/power_port_module.rst | 63 +-- docs/plugins/power_port_template_module.rst | 63 +-- docs/plugins/prefix_module.rst | 3 +- docs/plugins/provider_module.rst | 3 +- docs/plugins/query_graphql_module.rst | 7 +- docs/plugins/rack_group_module.rst | 3 +- docs/plugins/rack_module.rst | 14 +- docs/plugins/rack_role_module.rst | 3 +- docs/plugins/rear_port_module.rst | 23 +- docs/plugins/rear_port_template_module.rst | 33 +- docs/plugins/region_module.rst | 3 +- .../relationship_association_module.rst | 3 +- docs/plugins/rir_module.rst | 3 +- docs/plugins/route_target_module.rst | 3 +- docs/plugins/service_module.rst | 3 +- docs/plugins/site_module.rst | 3 +- docs/plugins/status_module.rst | 3 +- docs/plugins/tag_module.rst | 3 +- docs/plugins/tenant_group_module.rst | 3 +- docs/plugins/tenant_module.rst | 3 +- docs/plugins/virtual_chassis_module.rst | 3 +- docs/plugins/virtual_machine_module.rst | 3 +- docs/plugins/vlan_group_module.rst | 3 +- docs/plugins/vlan_module.rst | 3 +- docs/plugins/vm_interface_module.rst | 3 +- docs/plugins/vrf_module.rst | 3 +- galaxy.yml | 2 +- pyproject.toml | 2 +- 71 files changed, 691 insertions(+), 639 deletions(-) create mode 100644 docs/plugins/environment_variables.rst create mode 100644 docs/plugins/graphql_string_filter.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5b07e800..e0c13177 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,37 @@ networktocode.nautobot Release Notes .. contents:: Topics +v4.5.1 +====== + +Bugfixes +-------- +- (#344) Fixed SSL verification with pynautobot v1.5.2+ + +Minor Changes +------------- +- (#266) Removed explicitly defined choices for multiple modules + +v4.5.0 +====== + +Release Summary +--------------- + +Fixes error handling in inventory to not erase inventories, minor bug fixes, and introduces Plugin module + +Bugfixes +-------- +- (#223) Inventory Hosts Empty On Error +- (#209) Catches HTTPError for `query_graphql` and fails to enable ansible retries +- (#228) Fixes graphql inventory grouping by tags + +Minor Changes +------------- +- (#211) Removes codecov from dev dependencies +- (#220) Adds status option to device_interface module +- (#217) Fixes and enables testing for Nautobot 1.5 + v4.4.0 ====== diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index ab25b2eb..4675efa1 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -385,3 +385,10 @@ releases: - (#220) Adds status option to device_interface module - (#217) Fixes and enables testing for Nautobot 1.5 release_summary: "Fixes error handling in inventory to not erase inventories, minor bug fixes, and introduces Plugin module" + + 4.5.1: + changes: + bugfixes: + - (#344) Fixed SSL verification with pynautobot v1.5.2+ + minor_changes: + - (#266) Removed explicitly defined choices for multiple modules diff --git a/docs/plugins/aggregate_module.rst b/docs/plugins/aggregate_module.rst index 642252e3..40a5c496 100644 --- a/docs/plugins/aggregate_module.rst +++ b/docs/plugins/aggregate_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.aggregate module -- Creates or removes aggregates from Na .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/cable_module.rst b/docs/plugins/cable_module.rst index b98c591a..7ee2d890 100644 --- a/docs/plugins/cable_module.rst +++ b/docs/plugins/cable_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.cable module -- Create, update or delete cables within Na .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -286,16 +285,6 @@ Parameters The unit in which the length of the cable is measured - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"m"` - - :ansible-option-choices-entry:`"cm"` - - :ansible-option-choices-entry:`"ft"` - - :ansible-option-choices-entry:`"in"` - - .. raw:: html @@ -667,32 +656,6 @@ Parameters The type of the cable - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"cat3"` - - :ansible-option-choices-entry:`"cat5"` - - :ansible-option-choices-entry:`"cat5e"` - - :ansible-option-choices-entry:`"cat6"` - - :ansible-option-choices-entry:`"cat6a"` - - :ansible-option-choices-entry:`"cat7"` - - :ansible-option-choices-entry:`"dac-active"` - - :ansible-option-choices-entry:`"dac-passive"` - - :ansible-option-choices-entry:`"mrj21-trunk"` - - :ansible-option-choices-entry:`"coaxial"` - - :ansible-option-choices-entry:`"mmf"` - - :ansible-option-choices-entry:`"mmf-om1"` - - :ansible-option-choices-entry:`"mmf-om2"` - - :ansible-option-choices-entry:`"mmf-om3"` - - :ansible-option-choices-entry:`"mmf-om4"` - - :ansible-option-choices-entry:`"smf"` - - :ansible-option-choices-entry:`"smf-os1"` - - :ansible-option-choices-entry:`"smf-os2"` - - :ansible-option-choices-entry:`"aoc"` - - :ansible-option-choices-entry:`"power"` - - .. raw:: html diff --git a/docs/plugins/circuit_module.rst b/docs/plugins/circuit_module.rst index e1b2a979..c7440790 100644 --- a/docs/plugins/circuit_module.rst +++ b/docs/plugins/circuit_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.circuit module -- Create, update or delete circuits withi .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/circuit_termination_module.rst b/docs/plugins/circuit_termination_module.rst index cb93d309..d7bb0acb 100644 --- a/docs/plugins/circuit_termination_module.rst +++ b/docs/plugins/circuit_termination_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.circuit_termination module -- Create, update or delete ci .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/circuit_type_module.rst b/docs/plugins/circuit_type_module.rst index 64957ac9..8b009a5d 100644 --- a/docs/plugins/circuit_type_module.rst +++ b/docs/plugins/circuit_type_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.circuit_type module -- Create, update or delete circuit t .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/cluster_group_module.rst b/docs/plugins/cluster_group_module.rst index fbd7fec6..a150412c 100644 --- a/docs/plugins/cluster_group_module.rst +++ b/docs/plugins/cluster_group_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.cluster_group module -- Create, update or delete cluster .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/cluster_module.rst b/docs/plugins/cluster_module.rst index 89528620..760be272 100644 --- a/docs/plugins/cluster_module.rst +++ b/docs/plugins/cluster_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.cluster module -- Create, update or delete clusters withi .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/cluster_type_module.rst b/docs/plugins/cluster_type_module.rst index ded0db52..fb186536 100644 --- a/docs/plugins/cluster_type_module.rst +++ b/docs/plugins/cluster_type_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.cluster_type module -- Create, update or delete cluster t .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/console_port_module.rst b/docs/plugins/console_port_module.rst index 30a3a067..0a80af77 100644 --- a/docs/plugins/console_port_module.rst +++ b/docs/plugins/console_port_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.console_port module -- Create, update or delete console p .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -440,25 +439,6 @@ Parameters The type of the console port - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"de-9"` - - :ansible-option-choices-entry:`"db-25"` - - :ansible-option-choices-entry:`"rj-11"` - - :ansible-option-choices-entry:`"rj-12"` - - :ansible-option-choices-entry:`"rj-45"` - - :ansible-option-choices-entry:`"usb-a"` - - :ansible-option-choices-entry:`"usb-b"` - - :ansible-option-choices-entry:`"usb-c"` - - :ansible-option-choices-entry:`"usb-mini-a"` - - :ansible-option-choices-entry:`"usb-mini-b"` - - :ansible-option-choices-entry:`"usb-micro-a"` - - :ansible-option-choices-entry:`"usb-micro-b"` - - :ansible-option-choices-entry:`"other"` - - .. raw:: html diff --git a/docs/plugins/console_port_template_module.rst b/docs/plugins/console_port_template_module.rst index a4cfae02..52d17678 100644 --- a/docs/plugins/console_port_template_module.rst +++ b/docs/plugins/console_port_template_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.console_port_template module -- Create, update or delete .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -366,25 +365,6 @@ Parameters The type of the console port template - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"de-9"` - - :ansible-option-choices-entry:`"db-25"` - - :ansible-option-choices-entry:`"rj-11"` - - :ansible-option-choices-entry:`"rj-12"` - - :ansible-option-choices-entry:`"rj-45"` - - :ansible-option-choices-entry:`"usb-a"` - - :ansible-option-choices-entry:`"usb-b"` - - :ansible-option-choices-entry:`"usb-c"` - - :ansible-option-choices-entry:`"usb-mini-a"` - - :ansible-option-choices-entry:`"usb-mini-b"` - - :ansible-option-choices-entry:`"usb-micro-a"` - - :ansible-option-choices-entry:`"usb-micro-b"` - - :ansible-option-choices-entry:`"other"` - - .. raw:: html diff --git a/docs/plugins/console_server_port_module.rst b/docs/plugins/console_server_port_module.rst index 4d1eeeec..d15b3661 100644 --- a/docs/plugins/console_server_port_module.rst +++ b/docs/plugins/console_server_port_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.console_server_port module -- Create, update or delete co .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -440,25 +439,6 @@ Parameters The type of the console server port - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"de-9"` - - :ansible-option-choices-entry:`"db-25"` - - :ansible-option-choices-entry:`"rj-11"` - - :ansible-option-choices-entry:`"rj-12"` - - :ansible-option-choices-entry:`"rj-45"` - - :ansible-option-choices-entry:`"usb-a"` - - :ansible-option-choices-entry:`"usb-b"` - - :ansible-option-choices-entry:`"usb-c"` - - :ansible-option-choices-entry:`"usb-mini-a"` - - :ansible-option-choices-entry:`"usb-mini-b"` - - :ansible-option-choices-entry:`"usb-micro-a"` - - :ansible-option-choices-entry:`"usb-micro-b"` - - :ansible-option-choices-entry:`"other"` - - .. raw:: html diff --git a/docs/plugins/console_server_port_template_module.rst b/docs/plugins/console_server_port_template_module.rst index 0040b617..c4c49f5c 100644 --- a/docs/plugins/console_server_port_template_module.rst +++ b/docs/plugins/console_server_port_template_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.console_server_port_template module -- Create, update or .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -366,25 +365,6 @@ Parameters The type of the console server port template - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"de-9"` - - :ansible-option-choices-entry:`"db-25"` - - :ansible-option-choices-entry:`"rj-11"` - - :ansible-option-choices-entry:`"rj-12"` - - :ansible-option-choices-entry:`"rj-45"` - - :ansible-option-choices-entry:`"usb-a"` - - :ansible-option-choices-entry:`"usb-b"` - - :ansible-option-choices-entry:`"usb-c"` - - :ansible-option-choices-entry:`"usb-mini-a"` - - :ansible-option-choices-entry:`"usb-mini-b"` - - :ansible-option-choices-entry:`"usb-micro-a"` - - :ansible-option-choices-entry:`"usb-micro-b"` - - :ansible-option-choices-entry:`"other"` - - .. raw:: html diff --git a/docs/plugins/device_bay_module.rst b/docs/plugins/device_bay_module.rst index fa301a98..db6edab8 100644 --- a/docs/plugins/device_bay_module.rst +++ b/docs/plugins/device_bay_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.device_bay module -- Create, update or delete device bays .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/device_bay_template_module.rst b/docs/plugins/device_bay_template_module.rst index f4c8ef3f..b9e94721 100644 --- a/docs/plugins/device_bay_template_module.rst +++ b/docs/plugins/device_bay_template_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.device_bay_template module -- Create, update or delete de .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/device_interface_module.rst b/docs/plugins/device_interface_module.rst index 0e530645..bf1c981f 100644 --- a/docs/plugins/device_interface_module.rst +++ b/docs/plugins/device_interface_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.device_interface module -- Creates or removes interfaces .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -741,7 +740,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in networktocode.nautobot 4.4.0` + :ansible-option-versionadded:`added in networktocode.nautobot 4.5.0` .. raw:: html diff --git a/docs/plugins/device_interface_template_module.rst b/docs/plugins/device_interface_template_module.rst index 18306d42..0f236bf5 100644 --- a/docs/plugins/device_interface_template_module.rst +++ b/docs/plugins/device_interface_template_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.device_interface_template module -- Creates or removes in .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/device_module.rst b/docs/plugins/device_module.rst index 8a216ee5..a0f369b3 100644 --- a/docs/plugins/device_module.rst +++ b/docs/plugins/device_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.device module -- Create, update or delete devices within .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/device_role_module.rst b/docs/plugins/device_role_module.rst index 42659d4e..1349cea7 100644 --- a/docs/plugins/device_role_module.rst +++ b/docs/plugins/device_role_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.device_role module -- Create, update or delete devices ro .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/device_type_module.rst b/docs/plugins/device_type_module.rst index cc01924a..3d7ae276 100644 --- a/docs/plugins/device_type_module.rst +++ b/docs/plugins/device_type_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.device_type module -- Create, update or delete device typ .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/environment_variables.rst b/docs/plugins/environment_variables.rst new file mode 100644 index 00000000..11db56b2 --- /dev/null +++ b/docs/plugins/environment_variables.rst @@ -0,0 +1,35 @@ + +:orphan: + +.. _list_of_collection_env_vars: + +Index of all Collection Environment Variables +============================================= + +The following index documents all environment variables declared by plugins in collections. +Environment variables used by the ansible-core configuration are documented in :ref:`ansible_configuration_settings`. + +.. envvar:: ANSIBLE_INVENTORY_USE_EXTRA_VARS + + Merge extra vars into the available variables for composition (highest precedence). + + *Used by:* + :ref:`networktocode.nautobot.inventory inventory plugin ` +.. envvar:: NAUTOBOT_TOKEN + + See the documentations for the options where this environment variable is used. + + *Used by:* + :ref:`networktocode.nautobot.gql\_inventory inventory plugin `, + :ref:`networktocode.nautobot.inventory inventory plugin `, + :ref:`networktocode.nautobot.lookup lookup plugin `, + :ref:`networktocode.nautobot.lookup\_graphql lookup plugin ` +.. envvar:: NAUTOBOT_URL + + See the documentations for the options where this environment variable is used. + + *Used by:* + :ref:`networktocode.nautobot.gql\_inventory inventory plugin `, + :ref:`networktocode.nautobot.inventory inventory plugin `, + :ref:`networktocode.nautobot.lookup lookup plugin `, + :ref:`networktocode.nautobot.lookup\_graphql lookup plugin ` diff --git a/docs/plugins/front_port_module.rst b/docs/plugins/front_port_module.rst index f7786dd2..f5eef31a 100644 --- a/docs/plugins/front_port_module.rst +++ b/docs/plugins/front_port_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.front_port module -- Create, update or delete front ports .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -514,26 +513,6 @@ Parameters The type of the front port - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"8p8c"` - - :ansible-option-choices-entry:`"110-punch"` - - :ansible-option-choices-entry:`"bnc"` - - :ansible-option-choices-entry:`"mrj21"` - - :ansible-option-choices-entry:`"fc"` - - :ansible-option-choices-entry:`"lc"` - - :ansible-option-choices-entry:`"lc-apc"` - - :ansible-option-choices-entry:`"lsh"` - - :ansible-option-choices-entry:`"lsh-apc"` - - :ansible-option-choices-entry:`"mpo"` - - :ansible-option-choices-entry:`"mtrj"` - - :ansible-option-choices-entry:`"sc"` - - :ansible-option-choices-entry:`"sc-apc"` - - :ansible-option-choices-entry:`"st"` - - .. raw:: html diff --git a/docs/plugins/front_port_template_module.rst b/docs/plugins/front_port_template_module.rst index 18f72ee6..327380fd 100644 --- a/docs/plugins/front_port_template_module.rst +++ b/docs/plugins/front_port_template_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.front_port_template module -- Create, update or delete fr .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -440,36 +439,6 @@ Parameters The type of the front port template - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"8p8c"` - - :ansible-option-choices-entry:`"8p6c"` - - :ansible-option-choices-entry:`"8p4c"` - - :ansible-option-choices-entry:`"8p2c"` - - :ansible-option-choices-entry:`"gg45"` - - :ansible-option-choices-entry:`"tera-4p"` - - :ansible-option-choices-entry:`"tera-2p"` - - :ansible-option-choices-entry:`"tera-1p"` - - :ansible-option-choices-entry:`"110-punch"` - - :ansible-option-choices-entry:`"bnc"` - - :ansible-option-choices-entry:`"mrj21"` - - :ansible-option-choices-entry:`"st"` - - :ansible-option-choices-entry:`"sc"` - - :ansible-option-choices-entry:`"sc-apc"` - - :ansible-option-choices-entry:`"fc"` - - :ansible-option-choices-entry:`"lc"` - - :ansible-option-choices-entry:`"lc-apc"` - - :ansible-option-choices-entry:`"mtrj"` - - :ansible-option-choices-entry:`"mpo"` - - :ansible-option-choices-entry:`"lsh"` - - :ansible-option-choices-entry:`"lsh-apc"` - - :ansible-option-choices-entry:`"splice"` - - :ansible-option-choices-entry:`"cs"` - - :ansible-option-choices-entry:`"sn"` - - .. raw:: html diff --git a/docs/plugins/gql_inventory_inventory.rst b/docs/plugins/gql_inventory_inventory.rst index 17c44712..c44d88d4 100644 --- a/docs/plugins/gql_inventory_inventory.rst +++ b/docs/plugins/gql_inventory_inventory.rst @@ -42,7 +42,7 @@ networktocode.nautobot.gql_inventory inventory -- Nautobot inventory source usin .. Collection note .. note:: - This inventory plugin is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This inventory plugin is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this inventory plugin, @@ -91,7 +91,6 @@ The below requirements are needed on the local controller node that executes thi Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -139,7 +138,7 @@ Parameters :ansible-option-configuration:`Configuration:` - - Environment variable: NAUTOBOT\_URL + - Environment variable: :envvar:`NAUTOBOT\_URL` .. raw:: html @@ -240,6 +239,54 @@ Parameters :ansible-option-default-bold:`Default:` :ansible-option-default:`[]` + .. raw:: html + + + + * - .. raw:: html + +
+
+ + .. _ansible_collections.networktocode.nautobot.gql_inventory_inventory__parameter-group_names_raw: + + .. rst-class:: ansible-option-title + + **group_names_raw** + + .. raw:: html + + + + .. rst-class:: ansible-option-type-line + + :ansible-option-type:`boolean` + + :ansible-option-versionadded:`added in networktocode.nautobot 4.6.0` + + + + + + .. raw:: html + +
+ + - .. raw:: html + +
+ + Will not add the group\_by choice name to the group names + + + .. rst-class:: ansible-option-line + + :ansible-option-choices:`Choices:` + + - :ansible-option-choices-entry-default:`false` :ansible-option-choices-default-mark:`← (default)` + - :ansible-option-choices-entry:`true` + + .. raw:: html
@@ -484,7 +531,7 @@ Parameters :ansible-option-configuration:`Configuration:` - - Environment variable: NAUTOBOT\_TOKEN + - Environment variable: :envvar:`NAUTOBOT\_TOKEN` .. raw:: html diff --git a/docs/plugins/graphql_string_filter.rst b/docs/plugins/graphql_string_filter.rst new file mode 100644 index 00000000..8e7264a9 --- /dev/null +++ b/docs/plugins/graphql_string_filter.rst @@ -0,0 +1,27 @@ + +.. Document meta section + +:orphan: + +.. Document body + +.. Anchors + +.. _ansible_collections.networktocode.nautobot.graphql_string_filter: + +.. Title + +networktocode.nautobot.graphql_string filter +++++++++++++++++++++++++++++++++++++++++++++ + + +The documentation for the filter plugin, networktocode.nautobot.graphql_string, was malformed. + +The errors were: + +* :: + + Missing documentation or could not parse documentation: No documentation available for networktocode.nautobot.graphql_string (/root/.ansible/collections/ansible_collections/networktocode/nautobot/plugins/filter/graphql.py) + + +File a bug with the `networktocode.nautobot collection `_ in order to have it corrected. \ No newline at end of file diff --git a/docs/plugins/index.rst b/docs/plugins/index.rst index 1a9ff8be..6e4cc2f3 100644 --- a/docs/plugins/index.rst +++ b/docs/plugins/index.rst @@ -6,7 +6,7 @@ Networktocode.Nautobot ====================== -Collection version 4.5.0 +Collection version 4.5.1 .. contents:: :local: @@ -108,34 +108,10 @@ Modules * :ref:`vm_interface module ` -- Creates or removes interfaces from virtual machines in Nautobot * :ref:`vrf module ` -- Create, update or delete vrfs within Nautobot - -Inventory Plugins -~~~~~~~~~~~~~~~~~ - -* :ref:`gql_inventory inventory ` -- Nautobot inventory source using GraphQL capability -* :ref:`inventory inventory ` -- Nautobot inventory source - - -Lookup Plugins -~~~~~~~~~~~~~~ - -* :ref:`lookup lookup ` -- Queries and returns elements from Nautobot -* :ref:`lookup_graphql lookup ` -- Queries and returns elements from Nautobot GraphQL endpoint - - - -.. seealso:: - - List of :ref:`collections ` with docs hosted here. - .. toctree:: :maxdepth: 1 :hidden: - gql_inventory_inventory - inventory_inventory - lookup_lookup - lookup_graphql_lookup aggregate_module cable_module circuit_module @@ -196,3 +172,45 @@ Lookup Plugins vlan_group_module vm_interface_module vrf_module + + +Filter Plugins +~~~~~~~~~~~~~~ + +* :ref:`graphql_string filter ` -- + +.. toctree:: + :maxdepth: 1 + :hidden: + + graphql_string_filter + + +Inventory Plugins +~~~~~~~~~~~~~~~~~ + +* :ref:`gql_inventory inventory ` -- Nautobot inventory source using GraphQL capability +* :ref:`inventory inventory ` -- Nautobot inventory source + +.. toctree:: + :maxdepth: 1 + :hidden: + + gql_inventory_inventory + inventory_inventory + + +Lookup Plugins +~~~~~~~~~~~~~~ + +* :ref:`lookup lookup ` -- Queries and returns elements from Nautobot +* :ref:`lookup_graphql lookup ` -- Queries and returns elements from Nautobot GraphQL endpoint + +.. toctree:: + :maxdepth: 1 + :hidden: + + lookup_lookup + lookup_graphql_lookup + + diff --git a/docs/plugins/inventory_inventory.rst b/docs/plugins/inventory_inventory.rst index ee51c202..c1605049 100644 --- a/docs/plugins/inventory_inventory.rst +++ b/docs/plugins/inventory_inventory.rst @@ -42,7 +42,7 @@ networktocode.nautobot.inventory inventory -- Nautobot inventory source .. Collection note .. note:: - This inventory plugin is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This inventory plugin is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. @@ -81,7 +81,6 @@ Synopsis Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -174,7 +173,7 @@ Parameters :ansible-option-configuration:`Configuration:` - - Environment variable: NAUTOBOT\_URL + - Environment variable: :envvar:`NAUTOBOT\_URL` .. raw:: html @@ -274,7 +273,7 @@ Parameters cache = false - - Environment variable: ANSIBLE\_INVENTORY\_CACHE + - Environment variable: :envvar:`ANSIBLE\_INVENTORY\_CACHE` .. raw:: html @@ -333,9 +332,9 @@ Parameters cache_connection = VALUE - - Environment variable: ANSIBLE\_CACHE\_PLUGIN\_CONNECTION + - Environment variable: :envvar:`ANSIBLE\_CACHE\_PLUGIN\_CONNECTION` - - Environment variable: ANSIBLE\_INVENTORY\_CACHE\_CONNECTION + - Environment variable: :envvar:`ANSIBLE\_INVENTORY\_CACHE\_CONNECTION` .. raw:: html @@ -398,9 +397,9 @@ Parameters cache_plugin = memory - - Environment variable: ANSIBLE\_CACHE\_PLUGIN + - Environment variable: :envvar:`ANSIBLE\_CACHE\_PLUGIN` - - Environment variable: ANSIBLE\_INVENTORY\_CACHE\_PLUGIN + - Environment variable: :envvar:`ANSIBLE\_INVENTORY\_CACHE\_PLUGIN` .. raw:: html @@ -456,6 +455,21 @@ Parameters fact_caching_prefix = ansible_inventory_ + Removed in: version 2.16 of ansible.builtin + + + Why: Fixes typing error in INI section name + + Alternative: Use the 'defaults' section instead + + + + .. code-block:: + + [defaults] + fact_caching_prefix = ansible_inventory_ + + .. code-block:: @@ -463,9 +477,9 @@ Parameters cache_prefix = ansible_inventory_ - - Environment variable: ANSIBLE\_CACHE\_PLUGIN\_PREFIX + - Environment variable: :envvar:`ANSIBLE\_CACHE\_PLUGIN\_PREFIX` - - Environment variable: ANSIBLE\_INVENTORY\_CACHE\_PLUGIN\_PREFIX + - Environment variable: :envvar:`ANSIBLE\_INVENTORY\_CACHE\_PLUGIN\_PREFIX` .. raw:: html @@ -528,9 +542,9 @@ Parameters cache_timeout = 3600 - - Environment variable: ANSIBLE\_CACHE\_PLUGIN\_TIMEOUT + - Environment variable: :envvar:`ANSIBLE\_CACHE\_PLUGIN\_TIMEOUT` - - Environment variable: ANSIBLE\_INVENTORY\_CACHE\_TIMEOUT + - Environment variable: :envvar:`ANSIBLE\_INVENTORY\_CACHE\_TIMEOUT` .. raw:: html @@ -1198,7 +1212,7 @@ Parameters .. rst-class:: ansible-option-type-line - :ansible-option-type:`list` / :ansible-option-elements:`elements=string` + :ansible-option-type:`list` / :ansible-option-elements:`elements=dictionary` @@ -1218,6 +1232,313 @@ Parameters :ansible-option-default-bold:`Default:` :ansible-option-default:`[]` + .. raw:: html + + + + * - .. raw:: html + +
+
+ + .. _ansible_collections.networktocode.nautobot.inventory_inventory__parameter-keyed_groups/default_value: + + .. rst-class:: ansible-option-title + + **default_value** + + .. raw:: html + + + + .. rst-class:: ansible-option-type-line + + :ansible-option-type:`string` + + :ansible-option-versionadded:`added in ansible-core 2.12` + + + + + + .. raw:: html + +
+ + - .. raw:: html + +
+ + The default value when the host variable's value is an empty string. + + This option is mutually exclusive with \ :literal:`trailing\_separator`\ . + + + .. raw:: html + +
+ + * - .. raw:: html + +
+
+ + .. _ansible_collections.networktocode.nautobot.inventory_inventory__parameter-keyed_groups/key: + + .. rst-class:: ansible-option-title + + **key** + + .. raw:: html + + + + .. rst-class:: ansible-option-type-line + + :ansible-option-type:`string` + + + + + .. raw:: html + +
+ + - .. raw:: html + +
+ + The key from input dictionary used to generate groups + + + .. raw:: html + +
+ + * - .. raw:: html + +
+
+ + .. _ansible_collections.networktocode.nautobot.inventory_inventory__parameter-keyed_groups/parent_group: + + .. rst-class:: ansible-option-title + + **parent_group** + + .. raw:: html + + + + .. rst-class:: ansible-option-type-line + + :ansible-option-type:`string` + + + + + .. raw:: html + +
+ + - .. raw:: html + +
+ + parent group for keyed group + + + .. raw:: html + +
+ + * - .. raw:: html + +
+
+ + .. _ansible_collections.networktocode.nautobot.inventory_inventory__parameter-keyed_groups/prefix: + + .. rst-class:: ansible-option-title + + **prefix** + + .. raw:: html + + + + .. rst-class:: ansible-option-type-line + + :ansible-option-type:`string` + + + + + .. raw:: html + +
+ + - .. raw:: html + +
+ + A keyed group name will start with this prefix + + + .. rst-class:: ansible-option-line + + :ansible-option-default-bold:`Default:` :ansible-option-default:`""` + + .. raw:: html + +
+ + * - .. raw:: html + +
+
+ + .. _ansible_collections.networktocode.nautobot.inventory_inventory__parameter-keyed_groups/separator: + + .. rst-class:: ansible-option-title + + **separator** + + .. raw:: html + + + + .. rst-class:: ansible-option-type-line + + :ansible-option-type:`string` + + + + + .. raw:: html + +
+ + - .. raw:: html + +
+ + separator used to build the keyed group name + + + .. rst-class:: ansible-option-line + + :ansible-option-default-bold:`Default:` :ansible-option-default:`"\_"` + + .. raw:: html + +
+ + * - .. raw:: html + +
+
+ + .. _ansible_collections.networktocode.nautobot.inventory_inventory__parameter-keyed_groups/trailing_separator: + + .. rst-class:: ansible-option-title + + **trailing_separator** + + .. raw:: html + + + + .. rst-class:: ansible-option-type-line + + :ansible-option-type:`boolean` + + :ansible-option-versionadded:`added in ansible-core 2.12` + + + + + + .. raw:: html + +
+ + - .. raw:: html + +
+ + Set this option to \ :emphasis:`False`\ to omit the \ :literal:`separator`\ after the host variable when the value is an empty string. + + This option is mutually exclusive with \ :literal:`default\_value`\ . + + + .. rst-class:: ansible-option-line + + :ansible-option-choices:`Choices:` + + - :ansible-option-choices-entry:`false` + - :ansible-option-choices-entry-default:`true` :ansible-option-choices-default-mark:`← (default)` + + + .. raw:: html + +
+ + + * - .. raw:: html + +
+
+ + .. _ansible_collections.networktocode.nautobot.inventory_inventory__parameter-leading_separator: + + .. rst-class:: ansible-option-title + + **leading_separator** + + .. raw:: html + + + + .. rst-class:: ansible-option-type-line + + :ansible-option-type:`boolean` + + :ansible-option-versionadded:`added in ansible-core 2.11` + + + + + + .. raw:: html + +
+ + - .. raw:: html + +
+ + Use in conjunction with keyed\_groups. + + By default, a keyed group that does not have a prefix or a separator provided will have a name that starts with an underscore. + + This is because the default prefix is "" and the default separator is "\_". + + Set this option to False to omit the leading underscore (or other separator) if no prefix is given. + + If the group name is derived from a mapping the separator is still used to concatenate the items. + + To not use a separator in the group name at all, set the separator for the keyed group to an empty string instead. + + + .. rst-class:: ansible-option-line + + :ansible-option-choices:`Choices:` + + - :ansible-option-choices-entry:`false` + - :ansible-option-choices-entry-default:`true` :ansible-option-choices-default-mark:`← (default)` + + .. raw:: html
@@ -1580,7 +1901,70 @@ Parameters :ansible-option-configuration:`Configuration:` - - Environment variable: NAUTOBOT\_TOKEN + - Environment variable: :envvar:`NAUTOBOT\_TOKEN` + + + .. raw:: html + + + + * - .. raw:: html + +
+
+ + .. _ansible_collections.networktocode.nautobot.inventory_inventory__parameter-use_extra_vars: + + .. rst-class:: ansible-option-title + + **use_extra_vars** + + .. raw:: html + + + + .. rst-class:: ansible-option-type-line + + :ansible-option-type:`boolean` + + :ansible-option-versionadded:`added in ansible-core 2.11` + + + + + + .. raw:: html + +
+ + - .. raw:: html + +
+ + Merge extra vars into the available variables for composition (highest precedence). + + + .. rst-class:: ansible-option-line + + :ansible-option-choices:`Choices:` + + - :ansible-option-choices-entry-default:`false` :ansible-option-choices-default-mark:`← (default)` + - :ansible-option-choices-entry:`true` + + + .. rst-class:: ansible-option-line + + :ansible-option-configuration:`Configuration:` + + - INI entry: + + .. code-block:: + + [inventory_plugins] + use_extra_vars = false + + + - Environment variable: :envvar:`ANSIBLE\_INVENTORY\_USE\_EXTRA\_VARS` .. raw:: html diff --git a/docs/plugins/inventory_item_module.rst b/docs/plugins/inventory_item_module.rst index c640f987..c40234d0 100644 --- a/docs/plugins/inventory_item_module.rst +++ b/docs/plugins/inventory_item_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.inventory_item module -- Creates or removes inventory ite .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/ip_address_module.rst b/docs/plugins/ip_address_module.rst index a2e7b0de..8bff6d6e 100644 --- a/docs/plugins/ip_address_module.rst +++ b/docs/plugins/ip_address_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.ip_address module -- Creates or removes IP addresses from .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/ipam_role_module.rst b/docs/plugins/ipam_role_module.rst index 3bfc143d..adce4115 100644 --- a/docs/plugins/ipam_role_module.rst +++ b/docs/plugins/ipam_role_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.ipam_role module -- Creates or removes ipam roles from Na .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/location_module.rst b/docs/plugins/location_module.rst index 5254fc66..149eb87e 100644 --- a/docs/plugins/location_module.rst +++ b/docs/plugins/location_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.location module -- Creates or removes locations from Naut .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/location_type_module.rst b/docs/plugins/location_type_module.rst index 1a49357f..b070084e 100644 --- a/docs/plugins/location_type_module.rst +++ b/docs/plugins/location_type_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.location_type module -- Creates or removes location types .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/lookup_graphql_lookup.rst b/docs/plugins/lookup_graphql_lookup.rst index f1353651..b47b78e1 100644 --- a/docs/plugins/lookup_graphql_lookup.rst +++ b/docs/plugins/lookup_graphql_lookup.rst @@ -42,7 +42,7 @@ networktocode.nautobot.lookup_graphql lookup -- Queries and returns elements fro .. Collection note .. note:: - This lookup plugin is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This lookup plugin is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this lookup plugin, @@ -91,9 +91,11 @@ The below requirements are needed on the local controller node that executes thi .. Options -Parameters ----------- +Keyword parameters +------------------ +This describes keyword parameters of the lookup. These are the values ``key1=value1``, ``key2=value2`` and so on in the following +examples: ``lookup('networktocode.nautobot.lookup_graphql', key1=value1, key2=value2, ...)`` and ``query('networktocode.nautobot.lookup_graphql', key1=value1, key2=value2, ...)`` .. rst-class:: ansible-option-table @@ -258,7 +260,7 @@ Parameters :ansible-option-configuration:`Configuration:` - - Environment variable: NAUTOBOT\_TOKEN + - Environment variable: :envvar:`NAUTOBOT\_TOKEN` .. raw:: html @@ -302,7 +304,7 @@ Parameters :ansible-option-configuration:`Configuration:` - - Environment variable: NAUTOBOT\_URL + - Environment variable: :envvar:`NAUTOBOT\_URL` .. raw:: html diff --git a/docs/plugins/lookup_lookup.rst b/docs/plugins/lookup_lookup.rst index 9ece553e..75ec62b6 100644 --- a/docs/plugins/lookup_lookup.rst +++ b/docs/plugins/lookup_lookup.rst @@ -42,7 +42,7 @@ networktocode.nautobot.lookup lookup -- Queries and returns elements from Nautob .. Collection note .. note:: - This lookup plugin is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This lookup plugin is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this lookup plugin, @@ -145,9 +145,11 @@ Terms .. Options -Parameters ----------- +Keyword parameters +------------------ +This describes keyword parameters of the lookup. These are the values ``key1=value1``, ``key2=value2`` and so on in the following +examples: ``lookup('networktocode.nautobot.lookup', key1=value1, key2=value2, ...)`` and ``query('networktocode.nautobot.lookup', key1=value1, key2=value2, ...)`` .. rst-class:: ansible-option-table @@ -196,7 +198,7 @@ Parameters :ansible-option-configuration:`Configuration:` - - Environment variable: NAUTOBOT\_URL + - Environment variable: :envvar:`NAUTOBOT\_URL` .. raw:: html @@ -393,7 +395,7 @@ Parameters :ansible-option-configuration:`Configuration:` - - Environment variable: NAUTOBOT\_TOKEN + - Environment variable: :envvar:`NAUTOBOT\_TOKEN` .. raw:: html @@ -447,6 +449,12 @@ Parameters .. Notes +Notes +----- + +.. note:: + - When keyword and positional parameters are used together, positional parameters must be listed before keyword parameters: + ``lookup('networktocode.nautobot.lookup', term1, term2, key1=value1, key2=value2)`` and ``query('networktocode.nautobot.lookup', term1, term2, key1=value1, key2=value2)`` .. Seealso diff --git a/docs/plugins/manufacturer_module.rst b/docs/plugins/manufacturer_module.rst index 7e1181cb..432be3c2 100644 --- a/docs/plugins/manufacturer_module.rst +++ b/docs/plugins/manufacturer_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.manufacturer module -- Create or delete manufacturers wit .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/nautobot_server_module.rst b/docs/plugins/nautobot_server_module.rst index 10a6bf00..aac21e9f 100644 --- a/docs/plugins/nautobot_server_module.rst +++ b/docs/plugins/nautobot_server_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.nautobot_server module -- Manages Nautobot Server applica .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -95,7 +95,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -138,6 +137,10 @@ Parameters + .. rst-class:: ansible-option-line + + :ansible-option-default-bold:`Default:` :ansible-option-default:`{}` + .. raw:: html
@@ -278,6 +281,10 @@ Parameters A list of flags to append to the command that is passed to \ :literal:`nautobot-server`\ , so that ["flag1", "flag2"] is translated to "--flag1 --flag2". + .. rst-class:: ansible-option-line + + :ansible-option-default-bold:`Default:` :ansible-option-default:`[]` + .. raw:: html @@ -314,6 +321,10 @@ Parameters These are appended to the end of the command, so that ["arg1", "arg2"] is translated to "arg1 arg2". + .. rst-class:: ansible-option-line + + :ansible-option-default-bold:`Default:` :ansible-option-default:`[]` + .. raw:: html diff --git a/docs/plugins/platform_module.rst b/docs/plugins/platform_module.rst index 3480a9ce..96d193f3 100644 --- a/docs/plugins/platform_module.rst +++ b/docs/plugins/platform_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.platform module -- Create or delete platforms within Naut .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/plugin_module.rst b/docs/plugins/plugin_module.rst index f7985648..d2e64b63 100644 --- a/docs/plugins/plugin_module.rst +++ b/docs/plugins/plugin_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.plugin module -- CRUD operation on plugin objects .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/power_feed_module.rst b/docs/plugins/power_feed_module.rst index 876e9480..f5637629 100644 --- a/docs/plugins/power_feed_module.rst +++ b/docs/plugins/power_feed_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.power_feed module -- Create, update or delete power feeds .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/power_outlet_module.rst b/docs/plugins/power_outlet_module.rst index 65e6ae56..e7237a40 100644 --- a/docs/plugins/power_outlet_module.rst +++ b/docs/plugins/power_outlet_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.power_outlet module -- Create, update or delete power out .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -523,66 +522,6 @@ Parameters The type of the power outlet - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"iec-60320-c5"` - - :ansible-option-choices-entry:`"iec-60320-c7"` - - :ansible-option-choices-entry:`"iec-60320-c13"` - - :ansible-option-choices-entry:`"iec-60320-c15"` - - :ansible-option-choices-entry:`"iec-60320-c19"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-9h"` - - :ansible-option-choices-entry:`"nema-5-15r"` - - :ansible-option-choices-entry:`"nema-5-20r"` - - :ansible-option-choices-entry:`"nema-5-30r"` - - :ansible-option-choices-entry:`"nema-5-50r"` - - :ansible-option-choices-entry:`"nema-6-15r"` - - :ansible-option-choices-entry:`"nema-6-20r"` - - :ansible-option-choices-entry:`"nema-6-30r"` - - :ansible-option-choices-entry:`"nema-6-50r"` - - :ansible-option-choices-entry:`"nema-l5-15r"` - - :ansible-option-choices-entry:`"nema-l5-20r"` - - :ansible-option-choices-entry:`"nema-l5-30r"` - - :ansible-option-choices-entry:`"nema-l5-50r"` - - :ansible-option-choices-entry:`"nema-l6-20r"` - - :ansible-option-choices-entry:`"nema-l6-30r"` - - :ansible-option-choices-entry:`"nema-l6-50r"` - - :ansible-option-choices-entry:`"nema-l14-20r"` - - :ansible-option-choices-entry:`"nema-l14-30r"` - - :ansible-option-choices-entry:`"nema-l21-20r"` - - :ansible-option-choices-entry:`"nema-l21-30r"` - - :ansible-option-choices-entry:`"CS6360C"` - - :ansible-option-choices-entry:`"CS6364C"` - - :ansible-option-choices-entry:`"CS8164C"` - - :ansible-option-choices-entry:`"CS8264C"` - - :ansible-option-choices-entry:`"CS8364C"` - - :ansible-option-choices-entry:`"CS8464C"` - - :ansible-option-choices-entry:`"ita-e"` - - :ansible-option-choices-entry:`"ita-f"` - - :ansible-option-choices-entry:`"ita-g"` - - :ansible-option-choices-entry:`"ita-h"` - - :ansible-option-choices-entry:`"ita-i"` - - :ansible-option-choices-entry:`"ita-j"` - - :ansible-option-choices-entry:`"ita-k"` - - :ansible-option-choices-entry:`"ita-l"` - - :ansible-option-choices-entry:`"ita-m"` - - :ansible-option-choices-entry:`"ita-n"` - - :ansible-option-choices-entry:`"ita-o"` - - :ansible-option-choices-entry:`"hdot-cx"` - - .. raw:: html diff --git a/docs/plugins/power_outlet_template_module.rst b/docs/plugins/power_outlet_template_module.rst index 55240586..ba1c73a1 100644 --- a/docs/plugins/power_outlet_template_module.rst +++ b/docs/plugins/power_outlet_template_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.power_outlet_template module -- Create, update or delete .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -449,66 +448,6 @@ Parameters The type of the power outlet - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"iec-60320-c5"` - - :ansible-option-choices-entry:`"iec-60320-c7"` - - :ansible-option-choices-entry:`"iec-60320-c13"` - - :ansible-option-choices-entry:`"iec-60320-c15"` - - :ansible-option-choices-entry:`"iec-60320-c19"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-9h"` - - :ansible-option-choices-entry:`"nema-5-15r"` - - :ansible-option-choices-entry:`"nema-5-20r"` - - :ansible-option-choices-entry:`"nema-5-30r"` - - :ansible-option-choices-entry:`"nema-5-50r"` - - :ansible-option-choices-entry:`"nema-6-15r"` - - :ansible-option-choices-entry:`"nema-6-20r"` - - :ansible-option-choices-entry:`"nema-6-30r"` - - :ansible-option-choices-entry:`"nema-6-50r"` - - :ansible-option-choices-entry:`"nema-l5-15r"` - - :ansible-option-choices-entry:`"nema-l5-20r"` - - :ansible-option-choices-entry:`"nema-l5-30r"` - - :ansible-option-choices-entry:`"nema-l5-50r"` - - :ansible-option-choices-entry:`"nema-l6-20r"` - - :ansible-option-choices-entry:`"nema-l6-30r"` - - :ansible-option-choices-entry:`"nema-l6-50r"` - - :ansible-option-choices-entry:`"nema-l14-20r"` - - :ansible-option-choices-entry:`"nema-l14-30r"` - - :ansible-option-choices-entry:`"nema-l21-20r"` - - :ansible-option-choices-entry:`"nema-l21-30r"` - - :ansible-option-choices-entry:`"CS6360C"` - - :ansible-option-choices-entry:`"CS6364C"` - - :ansible-option-choices-entry:`"CS8164C"` - - :ansible-option-choices-entry:`"CS8264C"` - - :ansible-option-choices-entry:`"CS8364C"` - - :ansible-option-choices-entry:`"CS8464C"` - - :ansible-option-choices-entry:`"ita-e"` - - :ansible-option-choices-entry:`"ita-f"` - - :ansible-option-choices-entry:`"ita-g"` - - :ansible-option-choices-entry:`"ita-h"` - - :ansible-option-choices-entry:`"ita-i"` - - :ansible-option-choices-entry:`"ita-j"` - - :ansible-option-choices-entry:`"ita-k"` - - :ansible-option-choices-entry:`"ita-l"` - - :ansible-option-choices-entry:`"ita-m"` - - :ansible-option-choices-entry:`"ita-n"` - - :ansible-option-choices-entry:`"ita-o"` - - :ansible-option-choices-entry:`"hdot-cx"` - - .. raw:: html diff --git a/docs/plugins/power_panel_module.rst b/docs/plugins/power_panel_module.rst index f92ef9ad..0ec56e3e 100644 --- a/docs/plugins/power_panel_module.rst +++ b/docs/plugins/power_panel_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.power_panel module -- Create, update or delete power pane .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/power_port_module.rst b/docs/plugins/power_port_module.rst index 2da52aae..87077bbe 100644 --- a/docs/plugins/power_port_module.rst +++ b/docs/plugins/power_port_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.power_port module -- Create, update or delete power ports .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -514,66 +513,6 @@ Parameters The type of the power port - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"iec-60320-c6"` - - :ansible-option-choices-entry:`"iec-60320-c8"` - - :ansible-option-choices-entry:`"iec-60320-c14"` - - :ansible-option-choices-entry:`"iec-60320-c16"` - - :ansible-option-choices-entry:`"iec-60320-c20"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-9h"` - - :ansible-option-choices-entry:`"nema-5-15p"` - - :ansible-option-choices-entry:`"nema-5-20p"` - - :ansible-option-choices-entry:`"nema-5-30p"` - - :ansible-option-choices-entry:`"nema-5-50p"` - - :ansible-option-choices-entry:`"nema-6-15p"` - - :ansible-option-choices-entry:`"nema-6-20p"` - - :ansible-option-choices-entry:`"nema-6-30p"` - - :ansible-option-choices-entry:`"nema-6-50p"` - - :ansible-option-choices-entry:`"nema-l5-15p"` - - :ansible-option-choices-entry:`"nema-l5-20p"` - - :ansible-option-choices-entry:`"nema-l5-30p"` - - :ansible-option-choices-entry:`"nema-l5-50p"` - - :ansible-option-choices-entry:`"nema-l6-20p"` - - :ansible-option-choices-entry:`"nema-l6-30p"` - - :ansible-option-choices-entry:`"nema-l6-50p"` - - :ansible-option-choices-entry:`"nema-l14-20p"` - - :ansible-option-choices-entry:`"nema-l14-30p"` - - :ansible-option-choices-entry:`"nema-l21-20p"` - - :ansible-option-choices-entry:`"nema-l21-30p"` - - :ansible-option-choices-entry:`"cs6361c"` - - :ansible-option-choices-entry:`"cs6365c"` - - :ansible-option-choices-entry:`"cs8165c"` - - :ansible-option-choices-entry:`"cs8265c"` - - :ansible-option-choices-entry:`"cs8365c"` - - :ansible-option-choices-entry:`"cs8465c"` - - :ansible-option-choices-entry:`"ita-e"` - - :ansible-option-choices-entry:`"ita-f"` - - :ansible-option-choices-entry:`"ita-ef"` - - :ansible-option-choices-entry:`"ita-g"` - - :ansible-option-choices-entry:`"ita-h"` - - :ansible-option-choices-entry:`"ita-i"` - - :ansible-option-choices-entry:`"ita-j"` - - :ansible-option-choices-entry:`"ita-k"` - - :ansible-option-choices-entry:`"ita-l"` - - :ansible-option-choices-entry:`"ita-m"` - - :ansible-option-choices-entry:`"ita-n"` - - :ansible-option-choices-entry:`"ita-o"` - - .. raw:: html diff --git a/docs/plugins/power_port_template_module.rst b/docs/plugins/power_port_template_module.rst index 5c9b38e3..e311367e 100644 --- a/docs/plugins/power_port_template_module.rst +++ b/docs/plugins/power_port_template_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.power_port_template module -- Create, update or delete po .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -440,66 +439,6 @@ Parameters The type of the power port - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"iec-60320-c6"` - - :ansible-option-choices-entry:`"iec-60320-c8"` - - :ansible-option-choices-entry:`"iec-60320-c14"` - - :ansible-option-choices-entry:`"iec-60320-c16"` - - :ansible-option-choices-entry:`"iec-60320-c20"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-p-n-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-2p-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-3p-e-9h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-4h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-6h"` - - :ansible-option-choices-entry:`"iec-60309-3p-n-e-9h"` - - :ansible-option-choices-entry:`"nema-5-15p"` - - :ansible-option-choices-entry:`"nema-5-20p"` - - :ansible-option-choices-entry:`"nema-5-30p"` - - :ansible-option-choices-entry:`"nema-5-50p"` - - :ansible-option-choices-entry:`"nema-6-15p"` - - :ansible-option-choices-entry:`"nema-6-20p"` - - :ansible-option-choices-entry:`"nema-6-30p"` - - :ansible-option-choices-entry:`"nema-6-50p"` - - :ansible-option-choices-entry:`"nema-l5-15p"` - - :ansible-option-choices-entry:`"nema-l5-20p"` - - :ansible-option-choices-entry:`"nema-l5-30p"` - - :ansible-option-choices-entry:`"nema-l5-50p"` - - :ansible-option-choices-entry:`"nema-l6-20p"` - - :ansible-option-choices-entry:`"nema-l6-30p"` - - :ansible-option-choices-entry:`"nema-l6-50p"` - - :ansible-option-choices-entry:`"nema-l14-20p"` - - :ansible-option-choices-entry:`"nema-l14-30p"` - - :ansible-option-choices-entry:`"nema-l21-20p"` - - :ansible-option-choices-entry:`"nema-l21-30p"` - - :ansible-option-choices-entry:`"cs6361c"` - - :ansible-option-choices-entry:`"cs6365c"` - - :ansible-option-choices-entry:`"cs8165c"` - - :ansible-option-choices-entry:`"cs8265c"` - - :ansible-option-choices-entry:`"cs8365c"` - - :ansible-option-choices-entry:`"cs8465c"` - - :ansible-option-choices-entry:`"ita-e"` - - :ansible-option-choices-entry:`"ita-f"` - - :ansible-option-choices-entry:`"ita-ef"` - - :ansible-option-choices-entry:`"ita-g"` - - :ansible-option-choices-entry:`"ita-h"` - - :ansible-option-choices-entry:`"ita-i"` - - :ansible-option-choices-entry:`"ita-j"` - - :ansible-option-choices-entry:`"ita-k"` - - :ansible-option-choices-entry:`"ita-l"` - - :ansible-option-choices-entry:`"ita-m"` - - :ansible-option-choices-entry:`"ita-n"` - - :ansible-option-choices-entry:`"ita-o"` - - .. raw:: html diff --git a/docs/plugins/prefix_module.rst b/docs/plugins/prefix_module.rst index c38812dc..77a028be 100644 --- a/docs/plugins/prefix_module.rst +++ b/docs/plugins/prefix_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.prefix module -- Creates or removes prefixes from Nautobo .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/provider_module.rst b/docs/plugins/provider_module.rst index 9a8eeb84..1c936484 100644 --- a/docs/plugins/provider_module.rst +++ b/docs/plugins/provider_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.provider module -- Create, update or delete providers wit .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/query_graphql_module.rst b/docs/plugins/query_graphql_module.rst index b5e2d71d..636beee8 100644 --- a/docs/plugins/query_graphql_module.rst +++ b/docs/plugins/query_graphql_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.query_graphql module -- Queries and returns elements from .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -96,7 +96,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -171,6 +170,10 @@ Parameters Dictionary of keys/values to pass into the GraphQL query, see (\ https://pynautobot.readthedocs.io/en/latest/advanced/graphql.html\ ) for more info + .. rst-class:: ansible-option-line + + :ansible-option-default-bold:`Default:` :ansible-option-default:`{}` + .. raw:: html diff --git a/docs/plugins/rack_group_module.rst b/docs/plugins/rack_group_module.rst index 58b0988f..636c2e77 100644 --- a/docs/plugins/rack_group_module.rst +++ b/docs/plugins/rack_group_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.rack_group module -- Create, update or delete racks group .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/rack_module.rst b/docs/plugins/rack_module.rst index 40c63831..c680eb3e 100644 --- a/docs/plugins/rack_module.rst +++ b/docs/plugins/rack_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.rack module -- Create, update or delete racks within Naut .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -902,17 +901,6 @@ Parameters The type of rack. - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"2-post frame"` - - :ansible-option-choices-entry:`"4-post frame"` - - :ansible-option-choices-entry:`"4-post cabinet"` - - :ansible-option-choices-entry:`"Wall-mounted frame"` - - :ansible-option-choices-entry:`"Wall-mounted cabinet"` - - .. raw:: html diff --git a/docs/plugins/rack_role_module.rst b/docs/plugins/rack_role_module.rst index c7c6be94..978b4e6c 100644 --- a/docs/plugins/rack_role_module.rst +++ b/docs/plugins/rack_role_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.rack_role module -- Create, update or delete racks roles .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/rear_port_module.rst b/docs/plugins/rear_port_module.rst index f9681150..c8e8ee79 100644 --- a/docs/plugins/rear_port_module.rst +++ b/docs/plugins/rear_port_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.rear_port module -- Create, update or delete rear ports w .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -477,26 +476,6 @@ Parameters The type of the rear port - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"8p8c"` - - :ansible-option-choices-entry:`"110-punch"` - - :ansible-option-choices-entry:`"bnc"` - - :ansible-option-choices-entry:`"mrj21"` - - :ansible-option-choices-entry:`"fc"` - - :ansible-option-choices-entry:`"lc"` - - :ansible-option-choices-entry:`"lc-apc"` - - :ansible-option-choices-entry:`"lsh"` - - :ansible-option-choices-entry:`"lsh-apc"` - - :ansible-option-choices-entry:`"mpo"` - - :ansible-option-choices-entry:`"mtrj"` - - :ansible-option-choices-entry:`"sc"` - - :ansible-option-choices-entry:`"sc-apc"` - - :ansible-option-choices-entry:`"st"` - - .. raw:: html diff --git a/docs/plugins/rear_port_template_module.rst b/docs/plugins/rear_port_template_module.rst index 81a6bd5a..22125089 100644 --- a/docs/plugins/rear_port_template_module.rst +++ b/docs/plugins/rear_port_template_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.rear_port_template module -- Create, update or delete rea .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: @@ -403,36 +402,6 @@ Parameters The type of the rear port - .. rst-class:: ansible-option-line - - :ansible-option-choices:`Choices:` - - - :ansible-option-choices-entry:`"8p8c"` - - :ansible-option-choices-entry:`"8p6c"` - - :ansible-option-choices-entry:`"8p4c"` - - :ansible-option-choices-entry:`"8p2c"` - - :ansible-option-choices-entry:`"gg45"` - - :ansible-option-choices-entry:`"tera-4p"` - - :ansible-option-choices-entry:`"tera-2p"` - - :ansible-option-choices-entry:`"tera-1p"` - - :ansible-option-choices-entry:`"110-punch"` - - :ansible-option-choices-entry:`"bnc"` - - :ansible-option-choices-entry:`"mrj21"` - - :ansible-option-choices-entry:`"st"` - - :ansible-option-choices-entry:`"sc"` - - :ansible-option-choices-entry:`"sc-apc"` - - :ansible-option-choices-entry:`"fc"` - - :ansible-option-choices-entry:`"lc"` - - :ansible-option-choices-entry:`"lc-apc"` - - :ansible-option-choices-entry:`"mtrj"` - - :ansible-option-choices-entry:`"mpo"` - - :ansible-option-choices-entry:`"lsh"` - - :ansible-option-choices-entry:`"lsh-apc"` - - :ansible-option-choices-entry:`"splice"` - - :ansible-option-choices-entry:`"cs"` - - :ansible-option-choices-entry:`"sn"` - - .. raw:: html diff --git a/docs/plugins/region_module.rst b/docs/plugins/region_module.rst index c41480d7..66107285 100644 --- a/docs/plugins/region_module.rst +++ b/docs/plugins/region_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.region module -- Creates or removes regions from Nautobot .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/relationship_association_module.rst b/docs/plugins/relationship_association_module.rst index e96ad529..a88b504c 100644 --- a/docs/plugins/relationship_association_module.rst +++ b/docs/plugins/relationship_association_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.relationship_association module -- Creates or removes a r .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/rir_module.rst b/docs/plugins/rir_module.rst index b699eb0d..b54cc3a6 100644 --- a/docs/plugins/rir_module.rst +++ b/docs/plugins/rir_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.rir module -- Create, update or delete RIRs within Nautob .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/route_target_module.rst b/docs/plugins/route_target_module.rst index a30d20f5..f0780fa2 100644 --- a/docs/plugins/route_target_module.rst +++ b/docs/plugins/route_target_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.route_target module -- Creates or removes route targets f .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/service_module.rst b/docs/plugins/service_module.rst index 72f9ae6b..bd4fca4f 100644 --- a/docs/plugins/service_module.rst +++ b/docs/plugins/service_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.service module -- Creates or removes service from Nautobo .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/site_module.rst b/docs/plugins/site_module.rst index 5652c794..d9ae3f4f 100644 --- a/docs/plugins/site_module.rst +++ b/docs/plugins/site_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.site module -- Creates or removes sites from Nautobot .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/status_module.rst b/docs/plugins/status_module.rst index 069215c6..d72ac654 100644 --- a/docs/plugins/status_module.rst +++ b/docs/plugins/status_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.status module -- Creates or removes status from Nautobot .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/tag_module.rst b/docs/plugins/tag_module.rst index 01812f4a..eff2b4d4 100644 --- a/docs/plugins/tag_module.rst +++ b/docs/plugins/tag_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.tag module -- Creates or removes tags from Nautobot .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/tenant_group_module.rst b/docs/plugins/tenant_group_module.rst index 970d85e3..bb677bee 100644 --- a/docs/plugins/tenant_group_module.rst +++ b/docs/plugins/tenant_group_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.tenant_group module -- Creates or removes tenant groups f .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/tenant_module.rst b/docs/plugins/tenant_module.rst index f4005f5a..cc7dbd7d 100644 --- a/docs/plugins/tenant_module.rst +++ b/docs/plugins/tenant_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.tenant module -- Creates or removes tenants from Nautobot .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/virtual_chassis_module.rst b/docs/plugins/virtual_chassis_module.rst index 685465d3..d4694f6f 100644 --- a/docs/plugins/virtual_chassis_module.rst +++ b/docs/plugins/virtual_chassis_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.virtual_chassis module -- Create, update or delete virtua .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/virtual_machine_module.rst b/docs/plugins/virtual_machine_module.rst index 4c1259d2..78410630 100644 --- a/docs/plugins/virtual_machine_module.rst +++ b/docs/plugins/virtual_machine_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.virtual_machine module -- Create, update or delete virtua .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/vlan_group_module.rst b/docs/plugins/vlan_group_module.rst index 0821a7cc..3cfd217f 100644 --- a/docs/plugins/vlan_group_module.rst +++ b/docs/plugins/vlan_group_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.vlan_group module -- Create, update or delete vlans group .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/vlan_module.rst b/docs/plugins/vlan_module.rst index d3871313..36853112 100644 --- a/docs/plugins/vlan_module.rst +++ b/docs/plugins/vlan_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.vlan module -- Create, update or delete vlans within Naut .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/vm_interface_module.rst b/docs/plugins/vm_interface_module.rst index 0750a073..13e0aa61 100644 --- a/docs/plugins/vm_interface_module.rst +++ b/docs/plugins/vm_interface_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.vm_interface module -- Creates or removes interfaces from .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/docs/plugins/vrf_module.rst b/docs/plugins/vrf_module.rst index e084d64c..cea8a7d6 100644 --- a/docs/plugins/vrf_module.rst +++ b/docs/plugins/vrf_module.rst @@ -42,7 +42,7 @@ networktocode.nautobot.vrf module -- Create, update or delete vrfs within Nautob .. Collection note .. note:: - This module is part of the `networktocode.nautobot collection `_ (version 4.5.0). + This module is part of the `networktocode.nautobot collection `_ (version 4.5.1). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -94,7 +94,6 @@ The below requirements are needed on the host that executes this module. Parameters ---------- - .. rst-class:: ansible-option-table .. list-table:: diff --git a/galaxy.yml b/galaxy.yml index 82a4d5b9..10bfbf5d 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -9,7 +9,7 @@ namespace: networktocode name: nautobot # The version of the collection. Must be compatible with semantic versioning -version: 4.5.0 +version: 4.5.1 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/pyproject.toml b/pyproject.toml index 46711a18..36f18b70 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nautobot_ansible_modules" -version = "4.5.0" +version = "4.5.1" description = "Ansible collection to interact with Nautobot's API" authors = ["Network to Code "] license = "Apache 2.0"