From 8568fbbe973760185c60f6a3e39509d5c515c060 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Wed, 16 Nov 2022 10:59:01 -0600 Subject: [PATCH 01/25] Updates to handle additional keys. --- changelogs/changelog.yaml | 6 ++++++ galaxy.yml | 2 +- plugins/modules/circuit_termination.py | 17 +++++++++++++++++ plugins/modules/manufacturer.py | 8 ++++++++ pyproject.toml | 2 +- tasks.py | 10 ++++++++++ 6 files changed, 43 insertions(+), 2 deletions(-) diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 33373f84..b4b2895f 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -348,3 +348,9 @@ releases: bugfixes: - (#163) Fix bad filter params due to `STRICT_FILTERING` being enabled in Nautobot 1.4. release_summary: "Fix incorrect filter parameters" + + 4.2.0: + changes: + minor_changes: + - (#172) Add description to manufacturer + - (#171) Add provider_network to circuit_termination module \ No newline at end of file diff --git a/galaxy.yml b/galaxy.yml index fcf402ff..3b2bfc22 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.1.1 +version: 4.2.0 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md diff --git a/plugins/modules/circuit_termination.py b/plugins/modules/circuit_termination.py index 3ca41360..817a1769 100644 --- a/plugins/modules/circuit_termination.py +++ b/plugins/modules/circuit_termination.py @@ -89,6 +89,12 @@ - Description of the circuit termination required: false type: str + provider_network: + version_added: "4.2.0" + description: + - Connection to a provider_network type + type: raw + required: false state: description: - Use C(present) or C(absent) for adding or removing. @@ -128,6 +134,16 @@ port_speed: 10000 state: present + - name: Create circuit termination to Provider Network + networktocode.nautobot.circuit_termination: + url: http://nautobot.local + token: thisIsMyToken + circuit: Test Circuit + term_side: Z + provider_network: Provider A + port_speed: 10000 + state: present + - name: Update circuit termination with other fields networktocode.nautobot.circuit_termination: url: http://nautobot.local @@ -184,6 +200,7 @@ def main(): xconnect_id=dict(required=False, type="str"), pp_info=dict(required=False, type="str"), description=dict(required=False, type="str"), + provider_network=dict(required=False, type="raw"), ) ) diff --git a/plugins/modules/manufacturer.py b/plugins/modules/manufacturer.py index a19101d9..92d453a6 100644 --- a/plugins/modules/manufacturer.py +++ b/plugins/modules/manufacturer.py @@ -51,6 +51,12 @@ required: false type: str version_added: "3.0.0" + manufacturer: + description: + - Applies to the description field for Nautobot Manufacturer + required: false + type: str + version_added: "4.2.0" state: description: - Use C(present) or C(absent) for adding or removing. @@ -86,6 +92,7 @@ token: thisIsMyToken name: Test Manufacturer state: present + description: The test manufacturer - name: Delete manufacturer within nautobot networktocode.nautobot.manufacturer: @@ -124,6 +131,7 @@ def main(): dict( name=dict(required=True, type="str"), slug=dict(required=False, type="str"), + description=dict(required=False, type="str"), ) ) diff --git a/pyproject.toml b/pyproject.toml index c4012607..740da51a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nautobot_ansible_modules" -version = "4.1.1" +version = "4.2.0" description = "Ansible collection to interact with Nautobot's API" authors = ["Network to Code Date: Wed, 16 Nov 2022 11:07:26 -0600 Subject: [PATCH 02/25] Docs updates. --- docs/plugins/aggregate_module.rst | 32 +- docs/plugins/cable_module.rst | 128 +++---- docs/plugins/circuit_module.rst | 42 +-- docs/plugins/circuit_termination_module.rst | 88 +++-- docs/plugins/circuit_type_module.rst | 24 +- docs/plugins/cluster_group_module.rst | 24 +- docs/plugins/cluster_module.rst | 36 +- docs/plugins/cluster_type_module.rst | 24 +- docs/plugins/console_port_module.rst | 57 ++-- docs/plugins/console_port_template_module.rst | 53 +-- docs/plugins/console_server_port_module.rst | 57 ++-- .../console_server_port_template_module.rst | 53 +-- docs/plugins/device_bay_module.rst | 30 +- docs/plugins/device_bay_template_module.rst | 24 +- docs/plugins/device_interface_module.rst | 57 ++-- .../device_interface_template_module.rst | 29 +- docs/plugins/device_module.rst | 73 ++-- docs/plugins/device_role_module.rst | 31 +- docs/plugins/device_type_module.rst | 50 +-- docs/plugins/front_port_module.rst | 63 ++-- docs/plugins/front_port_template_module.rst | 79 ++--- docs/plugins/gql_inventory_inventory.rst | 22 +- docs/plugins/index.rst | 6 +- docs/plugins/inventory_inventory.rst | 141 ++++---- docs/plugins/inventory_item_module.rst | 41 +-- docs/plugins/ip_address_module.rst | 63 ++-- docs/plugins/ipam_role_module.rst | 26 +- docs/plugins/lookup_graphql_lookup.rst | 13 +- docs/plugins/lookup_lookup.rst | 13 +- docs/plugins/manufacturer_module.rst | 62 +++- docs/plugins/nautobot_server_module.rst | 17 +- docs/plugins/platform_module.rst | 32 +- docs/plugins/power_feed_module.rst | 61 ++-- docs/plugins/power_outlet_module.rst | 150 +++++---- docs/plugins/power_outlet_template_module.rst | 146 ++++---- docs/plugins/power_panel_module.rst | 26 +- docs/plugins/power_port_module.rst | 143 ++++---- docs/plugins/power_port_template_module.rst | 139 ++++---- docs/plugins/prefix_module.rst | 54 +-- docs/plugins/provider_module.rst | 38 ++- docs/plugins/query_graphql_module.rst | 15 +- docs/plugins/rack_group_module.rst | 32 +- docs/plugins/rack_module.rst | 76 +++-- docs/plugins/rack_role_module.rst | 26 +- docs/plugins/rear_port_module.rst | 63 ++-- docs/plugins/rear_port_template_module.rst | 77 ++--- docs/plugins/region_module.rst | 26 +- .../relationship_association_module.rst | 18 +- docs/plugins/rir_module.rst | 27 +- docs/plugins/route_target_module.rst | 28 +- docs/plugins/service_module.rst | 38 ++- docs/plugins/site_module.rst | 56 ++-- docs/plugins/status_module.rst | 30 +- docs/plugins/tag_module.rst | 28 +- docs/plugins/tenant_group_module.rst | 28 +- docs/plugins/tenant_module.rst | 34 +- docs/plugins/virtual_chassis_module.rst | 28 +- docs/plugins/virtual_machine_module.rst | 50 +-- docs/plugins/vlan_group_module.rst | 28 +- docs/plugins/vlan_module.rst | 40 +-- docs/plugins/vm_interface_module.rst | 41 +-- docs/plugins/vrf_module.rst | 39 ++- poetry.lock | 314 ++++++++++++++---- pyproject.toml | 1 + 64 files changed, 1929 insertions(+), 1461 deletions(-) diff --git a/docs/plugins/aggregate_module.rst b/docs/plugins/aggregate_module.rst index 711b165a..968ff3f4 100644 --- a/docs/plugins/aggregate_module.rst +++ b/docs/plugins/aggregate_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.aggregate module -- Creates or removes aggregates from Na .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -349,7 +350,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -401,8 +402,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` - - :ansible-option-choices-entry:`absent` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + - :ansible-option-choices-entry:`"absent"` + .. raw:: html @@ -427,7 +429,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -545,7 +547,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/cable_module.rst b/docs/plugins/cable_module.rst index 1daa87f9..0523ff10 100644 --- a/docs/plugins/cable_module.rst +++ b/docs/plugins/cable_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.cable module -- Create, update or delete cables within Na .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -289,10 +290,11 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`m` - - :ansible-option-choices-entry:`cm` - - :ansible-option-choices-entry:`ft` - - :ansible-option-choices-entry:`in` + - :ansible-option-choices-entry:`"m"` + - :ansible-option-choices-entry:`"cm"` + - :ansible-option-choices-entry:`"ft"` + - :ansible-option-choices-entry:`"in"` + .. raw:: html @@ -317,7 +319,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -373,8 +375,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -399,7 +402,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -438,7 +441,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -475,7 +478,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -493,15 +496,16 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`circuits.circuittermination` - - :ansible-option-choices-entry:`dcim.consoleport` - - :ansible-option-choices-entry:`dcim.consoleserverport` - - :ansible-option-choices-entry:`dcim.frontport` - - :ansible-option-choices-entry:`dcim.interface` - - :ansible-option-choices-entry:`dcim.powerfeed` - - :ansible-option-choices-entry:`dcim.poweroutlet` - - :ansible-option-choices-entry:`dcim.powerport` - - :ansible-option-choices-entry:`dcim.rearport` + - :ansible-option-choices-entry:`"circuits.circuittermination"` + - :ansible-option-choices-entry:`"dcim.consoleport"` + - :ansible-option-choices-entry:`"dcim.consoleserverport"` + - :ansible-option-choices-entry:`"dcim.frontport"` + - :ansible-option-choices-entry:`"dcim.interface"` + - :ansible-option-choices-entry:`"dcim.powerfeed"` + - :ansible-option-choices-entry:`"dcim.poweroutlet"` + - :ansible-option-choices-entry:`"dcim.powerport"` + - :ansible-option-choices-entry:`"dcim.rearport"` + .. raw:: html @@ -526,7 +530,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -563,7 +567,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -581,15 +585,16 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`circuits.circuittermination` - - :ansible-option-choices-entry:`dcim.consoleport` - - :ansible-option-choices-entry:`dcim.consoleserverport` - - :ansible-option-choices-entry:`dcim.frontport` - - :ansible-option-choices-entry:`dcim.interface` - - :ansible-option-choices-entry:`dcim.powerfeed` - - :ansible-option-choices-entry:`dcim.poweroutlet` - - :ansible-option-choices-entry:`dcim.powerport` - - :ansible-option-choices-entry:`dcim.rearport` + - :ansible-option-choices-entry:`"circuits.circuittermination"` + - :ansible-option-choices-entry:`"dcim.consoleport"` + - :ansible-option-choices-entry:`"dcim.consoleserverport"` + - :ansible-option-choices-entry:`"dcim.frontport"` + - :ansible-option-choices-entry:`"dcim.interface"` + - :ansible-option-choices-entry:`"dcim.powerfeed"` + - :ansible-option-choices-entry:`"dcim.poweroutlet"` + - :ansible-option-choices-entry:`"dcim.powerport"` + - :ansible-option-choices-entry:`"dcim.rearport"` + .. raw:: html @@ -648,7 +653,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -666,26 +671,27 @@ Parameters :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` + - :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 @@ -757,7 +763,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/circuit_module.rst b/docs/plugins/circuit_module.rst index 039ec498..17831d59 100644 --- a/docs/plugins/circuit_module.rst +++ b/docs/plugins/circuit_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.circuit module -- Create, update or delete circuits withi .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -345,7 +346,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -382,7 +383,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -419,7 +420,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -456,7 +457,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -512,8 +513,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -538,7 +540,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -577,7 +579,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -614,7 +616,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -732,7 +734,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/circuit_termination_module.rst b/docs/plugins/circuit_termination_module.rst index c085050b..04bc8093 100644 --- a/docs/plugins/circuit_termination_module.rst +++ b/docs/plugins/circuit_termination_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.circuit_termination module -- Create, update or delete ci .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -285,6 +286,43 @@ Parameters Patch panel information + .. raw:: html + + + + * - .. raw:: html + +
+
+ + .. _ansible_collections.networktocode.nautobot.circuit_termination_module__parameter-provider_network: + + .. rst-class:: ansible-option-title + + **provider_network** + + .. raw:: html + + + + .. rst-class:: ansible-option-type-line + + :ansible-option-type:`any` + + :ansible-option-versionadded:`added in networktocode.nautobot 4.2.0` + + + .. raw:: html + +
+ + - .. raw:: html + +
+ + Connection to a provider\_network type + + .. raw:: html
@@ -308,7 +346,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -349,7 +387,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -401,8 +439,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -427,7 +466,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -445,8 +484,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`A` - - :ansible-option-choices-entry:`Z` + - :ansible-option-choices-entry:`"A"` + - :ansible-option-choices-entry:`"Z"` + .. raw:: html @@ -505,7 +545,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -589,7 +629,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html @@ -614,7 +654,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -672,6 +712,16 @@ Examples port_speed: 10000 state: present + - name: Create circuit termination to Provider Network + networktocode.nautobot.circuit_termination: + url: http://nautobot.local + token: thisIsMyToken + circuit: Test Circuit + term_side: Z + provider_network: Provider A + port_speed: 10000 + state: present + - name: Update circuit termination with other fields networktocode.nautobot.circuit_termination: url: http://nautobot.local diff --git a/docs/plugins/circuit_type_module.rst b/docs/plugins/circuit_type_module.rst index 8c13dbb5..abe9ce4f 100644 --- a/docs/plugins/circuit_type_module.rst +++ b/docs/plugins/circuit_type_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.circuit_type module -- Create, update or delete circuit t .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -238,7 +239,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -292,8 +293,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -399,7 +401,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/cluster_group_module.rst b/docs/plugins/cluster_group_module.rst index a3235810..ef8e1c41 100644 --- a/docs/plugins/cluster_group_module.rst +++ b/docs/plugins/cluster_group_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.cluster_group module -- Create, update or delete cluster .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -238,7 +239,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -292,8 +293,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -399,7 +401,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/cluster_module.rst b/docs/plugins/cluster_module.rst index 8a3f31b4..e5694567 100644 --- a/docs/plugins/cluster_module.rst +++ b/docs/plugins/cluster_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.cluster module -- Create, update or delete clusters withi .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -345,7 +346,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -386,7 +387,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -438,8 +439,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -464,7 +466,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -501,7 +503,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -619,7 +621,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/cluster_type_module.rst b/docs/plugins/cluster_type_module.rst index 08c174e1..6d846c7e 100644 --- a/docs/plugins/cluster_type_module.rst +++ b/docs/plugins/cluster_type_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.cluster_type module -- Create, update or delete cluster t .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -238,7 +239,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -292,8 +293,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -399,7 +401,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/console_port_module.rst b/docs/plugins/console_port_module.rst index 34b26abc..1e1586c1 100644 --- a/docs/plugins/console_port_module.rst +++ b/docs/plugins/console_port_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.console_port module -- Create, update or delete console p .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -327,8 +328,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -353,7 +355,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -424,7 +426,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -442,19 +444,20 @@ Parameters :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` + - :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 @@ -526,7 +529,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/console_port_template_module.rst b/docs/plugins/console_port_template_module.rst index 6286ea96..1dc8f354 100644 --- a/docs/plugins/console_port_template_module.rst +++ b/docs/plugins/console_port_template_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.console_port_template module -- Create, update or delete .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -290,8 +291,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -350,7 +352,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -368,19 +370,20 @@ Parameters :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` + - :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 @@ -452,7 +455,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/console_server_port_module.rst b/docs/plugins/console_server_port_module.rst index 22260ee7..ed57f52b 100644 --- a/docs/plugins/console_server_port_module.rst +++ b/docs/plugins/console_server_port_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.console_server_port module -- Create, update or delete co .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -327,8 +328,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -353,7 +355,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -424,7 +426,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -442,19 +444,20 @@ Parameters :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` + - :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 @@ -526,7 +529,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/console_server_port_template_module.rst b/docs/plugins/console_server_port_template_module.rst index 12737751..2d14ab2b 100644 --- a/docs/plugins/console_server_port_template_module.rst +++ b/docs/plugins/console_server_port_template_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.console_server_port_template module -- Create, update or .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -290,8 +291,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -350,7 +352,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -368,19 +370,20 @@ Parameters :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` + - :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 @@ -452,7 +455,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/device_bay_module.rst b/docs/plugins/device_bay_module.rst index b30942f1..569c0a2f 100644 --- a/docs/plugins/device_bay_module.rst +++ b/docs/plugins/device_bay_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.device_bay module -- Create, update or delete device bays .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -364,8 +365,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -390,7 +392,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -508,7 +510,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/device_bay_template_module.rst b/docs/plugins/device_bay_template_module.rst index 27c96523..ed3939f9 100644 --- a/docs/plugins/device_bay_template_module.rst +++ b/docs/plugins/device_bay_template_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.device_bay_template module -- Create, update or delete de .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -290,8 +291,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -397,7 +399,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/device_interface_module.rst b/docs/plugins/device_interface_module.rst index e9ad7ca6..745ff8f0 100644 --- a/docs/plugins/device_interface_module.rst +++ b/docs/plugins/device_interface_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.device_interface module -- Creates or removes interfaces .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -292,6 +293,7 @@ Parameters - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -315,7 +317,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -352,7 +354,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -389,7 +391,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -426,7 +428,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -447,6 +449,7 @@ Parameters - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -470,7 +473,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -507,7 +510,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -544,7 +547,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -581,7 +584,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -637,8 +640,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -663,7 +667,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -700,7 +704,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -771,7 +775,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -811,7 +815,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -848,7 +852,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -868,9 +872,10 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-default-bold:`false` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry-default:`false` :ansible-option-choices-default-mark:`← (default)` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -943,7 +948,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/device_interface_template_module.rst b/docs/plugins/device_interface_template_module.rst index f65bd67a..7fa6c8fb 100644 --- a/docs/plugins/device_interface_template_module.rst +++ b/docs/plugins/device_interface_template_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.device_interface_template module -- Creates or removes in .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -218,6 +219,7 @@ Parameters - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -241,7 +243,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -278,7 +280,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -334,8 +336,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -394,7 +397,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -483,7 +486,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/device_module.rst b/docs/plugins/device_module.rst index 8dfbad2e..d51cd4c8 100644 --- a/docs/plugins/device_module.rst +++ b/docs/plugins/device_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.device module -- Create, update or delete devices within .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -345,7 +346,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -382,7 +383,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -400,10 +401,11 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`Front` - - :ansible-option-choices-entry:`front` - - :ansible-option-choices-entry:`Rear` - - :ansible-option-choices-entry:`rear` + - :ansible-option-choices-entry:`"Front"` + - :ansible-option-choices-entry:`"front"` + - :ansible-option-choices-entry:`"Rear"` + - :ansible-option-choices-entry:`"rear"` + .. raw:: html @@ -428,7 +430,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -465,7 +467,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -502,7 +504,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -539,7 +541,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -576,7 +578,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -613,7 +615,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -650,7 +652,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -691,7 +693,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -728,7 +730,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -765,7 +767,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -817,8 +819,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -843,7 +846,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -882,7 +885,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -919,7 +922,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -1037,7 +1040,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html @@ -1062,7 +1065,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -1099,7 +1102,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -1136,7 +1139,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html diff --git a/docs/plugins/device_role_module.rst b/docs/plugins/device_role_module.rst index 1b7ca3a3..0bc8838f 100644 --- a/docs/plugins/device_role_module.rst +++ b/docs/plugins/device_role_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.device_role module -- Create, update or delete devices ro .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -312,7 +313,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -366,8 +367,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -473,7 +475,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html @@ -498,7 +500,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -519,6 +521,7 @@ Parameters - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` + .. raw:: html diff --git a/docs/plugins/device_type_module.rst b/docs/plugins/device_type_module.rst index 263713f0..aeb07368 100644 --- a/docs/plugins/device_type_module.rst +++ b/docs/plugins/device_type_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.device_type module -- Create, update or delete device typ .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -255,6 +256,7 @@ Parameters - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -278,7 +280,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -315,7 +317,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -352,7 +354,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -389,7 +391,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -430,7 +432,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -486,8 +488,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -512,7 +515,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -530,10 +533,11 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`Parent` - - :ansible-option-choices-entry:`parent` - - :ansible-option-choices-entry:`Child` - - :ansible-option-choices-entry:`child` + - :ansible-option-choices-entry:`"Parent"` + - :ansible-option-choices-entry:`"parent"` + - :ansible-option-choices-entry:`"Child"` + - :ansible-option-choices-entry:`"child"` + .. raw:: html @@ -558,7 +562,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -629,7 +633,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -713,7 +717,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/front_port_module.rst b/docs/plugins/front_port_module.rst index 7d82cf7d..4a55481d 100644 --- a/docs/plugins/front_port_module.rst +++ b/docs/plugins/front_port_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.front_port module -- Create, update or delete front ports .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -312,7 +313,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -349,7 +350,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -401,8 +402,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -427,7 +429,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -498,7 +500,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -516,20 +518,21 @@ Parameters :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` + - :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 @@ -601,7 +604,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/front_port_template_module.rst b/docs/plugins/front_port_template_module.rst index 2a653c7a..9b153522 100644 --- a/docs/plugins/front_port_template_module.rst +++ b/docs/plugins/front_port_template_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.front_port_template module -- Create, update or delete fr .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -275,7 +276,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -312,7 +313,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -364,8 +365,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -424,7 +426,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -442,30 +444,31 @@ Parameters :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` + - :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 @@ -537,7 +540,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/gql_inventory_inventory.rst b/docs/plugins/gql_inventory_inventory.rst index 7f67eca1..73870b0d 100644 --- a/docs/plugins/gql_inventory_inventory.rst +++ b/docs/plugins/gql_inventory_inventory.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This inventory plugin is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this inventory plugin, @@ -186,11 +185,12 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-default-bold:`urllib2` :ansible-option-default:`← (default)` - - :ansible-option-choices-entry:`all` - - :ansible-option-choices-entry:`yes` - - :ansible-option-choices-entry:`safe` - - :ansible-option-choices-entry:`none` + - :ansible-option-choices-entry-default:`"urllib2"` :ansible-option-choices-default-mark:`← (default)` + - :ansible-option-choices-entry:`"all"` + - :ansible-option-choices-entry:`"yes"` + - :ansible-option-choices-entry:`"safe"` + - :ansible-option-choices-entry:`"none"` + .. raw:: html @@ -281,7 +281,8 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`networktocode.nautobot.gql\_inventory` + - :ansible-option-choices-entry:`"networktocode.nautobot.gql\_inventory"` + .. raw:: html @@ -528,7 +529,8 @@ Parameters :ansible-option-choices:`Choices:` - :ansible-option-choices-entry:`false` - - :ansible-option-default-bold:`true` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry-default:`true` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html diff --git a/docs/plugins/index.rst b/docs/plugins/index.rst index c87dd4fb..543be22f 100644 --- a/docs/plugins/index.rst +++ b/docs/plugins/index.rst @@ -6,7 +6,7 @@ Networktocode.Nautobot ====================== -Collection version 4.1.1 +Collection version 4.2.0 .. contents:: :local: @@ -21,6 +21,10 @@ This is a collection of Nautobot Ansible modules * Network to Code +**Supported ansible-core versions:** + +* 2.9.10 or newer + .. raw:: html
+
+ + .. _ansible_collections.networktocode.nautobot.manufacturer_module__parameter-manufacturer: + + .. rst-class:: ansible-option-title + + **manufacturer** + + .. raw:: html + + + + .. rst-class:: ansible-option-type-line + + :ansible-option-type:`string` + + :ansible-option-versionadded:`added in networktocode.nautobot 4.2.0` + + + .. raw:: html + +
+ + - .. raw:: html + +
+ + Applies to the description field for Nautobot Manufacturer + + .. raw:: html
@@ -160,7 +198,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +235,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -238,7 +276,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -292,8 +330,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -399,7 +438,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html @@ -441,6 +480,7 @@ Examples token: thisIsMyToken name: Test Manufacturer state: present + description: The test manufacturer - name: Delete manufacturer within nautobot networktocode.nautobot.manufacturer: diff --git a/docs/plugins/nautobot_server_module.rst b/docs/plugins/nautobot_server_module.rst index 7064fe76..90964946 100644 --- a/docs/plugins/nautobot_server_module.rst +++ b/docs/plugins/nautobot_server_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.nautobot_server module -- Manages Nautobot Server applica .. version_added -.. versionadded:: 3.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 3.0.0 .. contents:: :local: @@ -590,7 +591,7 @@ Common return values are documented :ref:`here `, the foll .. rst-class:: ansible-option-line .. rst-class:: ansible-option-sample - :ansible-option-sample-bold:`Sample:` true + :ansible-option-sample-bold:`Sample:` :ansible-rv-sample-value:`true` .. raw:: html @@ -635,7 +636,7 @@ Common return values are documented :ref:`here `, the foll .. rst-class:: ansible-option-line .. rst-class:: ansible-option-sample - :ansible-option-sample-bold:`Sample:` "nautobot-server createsuperuser --noinput --email=admin33@example.com --username=superadmin" + :ansible-option-sample-bold:`Sample:` :ansible-rv-sample-value:`"nautobot-server createsuperuser --noinput --email=admin33@example.com --username=superadmin"` .. raw:: html @@ -680,7 +681,7 @@ Common return values are documented :ref:`here `, the foll .. rst-class:: ansible-option-line .. rst-class:: ansible-option-sample - :ansible-option-sample-bold:`Sample:` "superadmin user already exists." + :ansible-option-sample-bold:`Sample:` :ansible-rv-sample-value:`"superadmin user already exists."` .. raw:: html @@ -725,7 +726,7 @@ Common return values are documented :ref:`here `, the foll .. rst-class:: ansible-option-line .. rst-class:: ansible-option-sample - :ansible-option-sample-bold:`Sample:` "/opt/nautobot" + :ansible-option-sample-bold:`Sample:` :ansible-rv-sample-value:`"/opt/nautobot"` .. raw:: html diff --git a/docs/plugins/platform_module.rst b/docs/plugins/platform_module.rst index 232d7209..1fb34ee8 100644 --- a/docs/plugins/platform_module.rst +++ b/docs/plugins/platform_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.platform module -- Create or delete platforms within Naut .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -345,7 +346,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -386,7 +387,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -440,8 +441,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -547,7 +549,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/power_feed_module.rst b/docs/plugins/power_feed_module.rst index 9789ebff..c5139148 100644 --- a/docs/plugins/power_feed_module.rst +++ b/docs/plugins/power_feed_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.power_feed module -- Create, update or delete power feeds .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -345,7 +346,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -363,8 +364,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`single-phase` - - :ansible-option-choices-entry:`three-phase` + - :ansible-option-choices-entry:`"single-phase"` + - :ansible-option-choices-entry:`"three-phase"` + .. raw:: html @@ -389,7 +391,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -426,7 +428,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -467,7 +469,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -519,8 +521,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -545,7 +548,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -584,7 +587,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -602,8 +605,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`ac` - - :ansible-option-choices-entry:`dc` + - :ansible-option-choices-entry:`"ac"` + - :ansible-option-choices-entry:`"dc"` + .. raw:: html @@ -628,7 +632,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -699,7 +703,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -717,8 +721,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`primary` - - :ansible-option-choices-entry:`redundant` + - :ansible-option-choices-entry:`"primary"` + - :ansible-option-choices-entry:`"redundant"` + .. raw:: html @@ -790,7 +795,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html @@ -815,7 +820,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html diff --git a/docs/plugins/power_outlet_module.rst b/docs/plugins/power_outlet_module.rst index e9d07716..c59343ef 100644 --- a/docs/plugins/power_outlet_module.rst +++ b/docs/plugins/power_outlet_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.power_outlet module -- Create, update or delete power out .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -252,9 +253,10 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`A` - - :ansible-option-choices-entry:`B` - - :ansible-option-choices-entry:`C` + - :ansible-option-choices-entry:`"A"` + - :ansible-option-choices-entry:`"B"` + - :ansible-option-choices-entry:`"C"` + .. raw:: html @@ -279,7 +281,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -316,7 +318,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -353,7 +355,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -409,8 +411,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -435,7 +438,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -506,7 +509,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -524,60 +527,61 @@ Parameters :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` + - :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 @@ -649,7 +653,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/power_outlet_template_module.rst b/docs/plugins/power_outlet_template_module.rst index ce94e3e0..31c6a785 100644 --- a/docs/plugins/power_outlet_template_module.rst +++ b/docs/plugins/power_outlet_template_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.power_outlet_template module -- Create, update or delete .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -215,9 +216,10 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`A` - - :ansible-option-choices-entry:`B` - - :ansible-option-choices-entry:`C` + - :ansible-option-choices-entry:`"A"` + - :ansible-option-choices-entry:`"B"` + - :ansible-option-choices-entry:`"C"` + .. raw:: html @@ -242,7 +244,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -279,7 +281,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -316,7 +318,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -372,8 +374,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -432,7 +435,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -450,60 +453,61 @@ Parameters :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` + - :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 @@ -575,7 +579,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/power_panel_module.rst b/docs/plugins/power_panel_module.rst index 4f78c117..173f4281 100644 --- a/docs/plugins/power_panel_module.rst +++ b/docs/plugins/power_panel_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.power_panel module -- Create, update or delete power pane .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -238,7 +239,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -275,7 +276,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -327,8 +328,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -434,7 +436,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/power_port_module.rst b/docs/plugins/power_port_module.rst index 250b63d1..55b72277 100644 --- a/docs/plugins/power_port_module.rst +++ b/docs/plugins/power_port_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.power_port module -- Create, update or delete power ports .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -345,7 +346,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -401,8 +402,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -427,7 +429,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -498,7 +500,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -516,60 +518,61 @@ Parameters :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` + - :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 @@ -641,7 +644,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/power_port_template_module.rst b/docs/plugins/power_port_template_module.rst index 647b9177..b8ab90a0 100644 --- a/docs/plugins/power_port_template_module.rst +++ b/docs/plugins/power_port_template_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.power_port_template module -- Create, update or delete po .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -364,8 +365,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -424,7 +426,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -442,60 +444,61 @@ Parameters :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` + - :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 @@ -567,7 +570,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/prefix_module.rst b/docs/plugins/prefix_module.rst index 2ee395d3..2933873c 100644 --- a/docs/plugins/prefix_module.rst +++ b/docs/plugins/prefix_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.prefix module -- Creates or removes prefixes from Nautobo .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -289,9 +290,10 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-default-bold:`false` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry-default:`false` :ansible-option-choices-default-mark:`← (default)` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -315,7 +317,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -336,6 +338,7 @@ Parameters - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -359,7 +362,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -396,7 +399,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -433,7 +436,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -472,7 +475,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -509,7 +512,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -550,7 +553,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -602,8 +605,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -628,7 +632,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -667,7 +671,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -704,7 +708,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -822,7 +826,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html @@ -847,7 +851,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -884,7 +888,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html diff --git a/docs/plugins/provider_module.rst b/docs/plugins/provider_module.rst index fae34f66..d9e47d86 100644 --- a/docs/plugins/provider_module.rst +++ b/docs/plugins/provider_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.provider module -- Create, update or delete providers wit .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -345,7 +346,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -382,7 +383,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -419,7 +420,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -456,7 +457,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -512,8 +513,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -538,7 +540,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -656,7 +658,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/query_graphql_module.rst b/docs/plugins/query_graphql_module.rst index 76e65055..3a846d13 100644 --- a/docs/plugins/query_graphql_module.rst +++ b/docs/plugins/query_graphql_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.query_graphql module -- Queries and returns elements from .. version_added -.. versionadded:: 1.1.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.1.0 .. contents:: :local: @@ -276,9 +277,10 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-default-bold:`false` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry-default:`false` :ansible-option-choices-default-mark:`← (default)` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -352,7 +354,8 @@ Parameters :ansible-option-choices:`Choices:` - :ansible-option-choices-entry:`false` - - :ansible-option-default-bold:`true` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry-default:`true` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html diff --git a/docs/plugins/rack_group_module.rst b/docs/plugins/rack_group_module.rst index 401b5474..d2099188 100644 --- a/docs/plugins/rack_group_module.rst +++ b/docs/plugins/rack_group_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.rack_group module -- Create, update or delete racks group .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -312,7 +313,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -349,7 +350,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -386,7 +387,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -440,8 +441,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -547,7 +549,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/rack_module.rst b/docs/plugins/rack_module.rst index ec7dddad..244c984f 100644 --- a/docs/plugins/rack_module.rst +++ b/docs/plugins/rack_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.rack module -- Create, update or delete racks within Naut .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -292,6 +293,7 @@ Parameters - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -315,7 +317,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -352,7 +354,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -389,7 +391,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -426,7 +428,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -444,8 +446,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`Millimeters` - - :ansible-option-choices-entry:`Inches` + - :ansible-option-choices-entry:`"Millimeters"` + - :ansible-option-choices-entry:`"Inches"` + .. raw:: html @@ -470,7 +473,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -507,7 +510,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -548,7 +551,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -585,7 +588,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -622,7 +625,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -659,7 +662,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -711,8 +714,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -737,7 +741,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -776,7 +780,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -813,7 +817,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -884,7 +888,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -902,11 +906,12 @@ Parameters :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` + - :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 @@ -931,7 +936,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -1015,7 +1020,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html @@ -1040,7 +1045,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -1063,6 +1068,7 @@ Parameters - :ansible-option-choices-entry:`21` - :ansible-option-choices-entry:`23` + .. raw:: html diff --git a/docs/plugins/rack_role_module.rst b/docs/plugins/rack_role_module.rst index 9a9d55e0..cc842d77 100644 --- a/docs/plugins/rack_role_module.rst +++ b/docs/plugins/rack_role_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.rack_role module -- Create, update or delete racks roles .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -275,7 +276,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -329,8 +330,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -436,7 +438,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/rear_port_module.rst b/docs/plugins/rear_port_module.rst index 1ed4d75c..1b771690 100644 --- a/docs/plugins/rear_port_module.rst +++ b/docs/plugins/rear_port_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.rear_port module -- Create, update or delete rear ports w .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -364,8 +365,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -390,7 +392,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -427,7 +429,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -464,7 +466,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -482,20 +484,21 @@ Parameters :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` + - :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 @@ -567,7 +570,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/rear_port_template_module.rst b/docs/plugins/rear_port_template_module.rst index fcbecea1..580cbd3c 100644 --- a/docs/plugins/rear_port_template_module.rst +++ b/docs/plugins/rear_port_template_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.rear_port_template module -- Create, update or delete rea .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -327,8 +328,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -387,7 +389,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -405,30 +407,31 @@ Parameters :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` + - :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 @@ -500,7 +503,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/region_module.rst b/docs/plugins/region_module.rst index a0c8f27c..a1c0e958 100644 --- a/docs/plugins/region_module.rst +++ b/docs/plugins/region_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.region module -- Creates or removes regions from Nautobot .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -275,7 +276,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -329,8 +330,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -438,7 +440,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/relationship_association_module.rst b/docs/plugins/relationship_association_module.rst index 8428439d..af4b6c94 100644 --- a/docs/plugins/relationship_association_module.rst +++ b/docs/plugins/relationship_association_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.relationship_association module -- Creates or removes a r .. version_added -.. versionadded:: 4.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 4.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -383,8 +384,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -492,7 +494,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/rir_module.rst b/docs/plugins/rir_module.rst index 7d316d4c..1c980ff8 100644 --- a/docs/plugins/rir_module.rst +++ b/docs/plugins/rir_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.rir module -- Create, update or delete RIRs within Nautob .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -181,6 +182,7 @@ Parameters - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -204,7 +206,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -241,7 +243,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -282,7 +284,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -336,8 +338,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -443,7 +446,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/route_target_module.rst b/docs/plugins/route_target_module.rst index dc5cb4d2..07a0d3ae 100644 --- a/docs/plugins/route_target_module.rst +++ b/docs/plugins/route_target_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.route_target module -- Creates or removes route targets f .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -268,7 +269,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -324,8 +325,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -350,7 +352,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -387,7 +389,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -507,7 +509,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/service_module.rst b/docs/plugins/service_module.rst index c5f25c7a..73e83fd9 100644 --- a/docs/plugins/service_module.rst +++ b/docs/plugins/service_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.service module -- Creates or removes service from Nautobo .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -345,7 +346,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -382,7 +383,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -419,7 +420,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -475,8 +476,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -501,7 +503,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -619,7 +621,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html @@ -644,7 +646,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html diff --git a/docs/plugins/site_module.rst b/docs/plugins/site_module.rst index 2faa1652..c2072093 100644 --- a/docs/plugins/site_module.rst +++ b/docs/plugins/site_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.site module -- Creates or removes sites from Nautobot .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -345,7 +346,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -382,7 +383,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -419,7 +420,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -456,7 +457,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -493,7 +494,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -564,7 +565,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -601,7 +602,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -642,7 +643,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -679,7 +680,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -716,7 +717,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -768,8 +769,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -794,7 +796,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -833,7 +835,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -870,7 +872,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -907,7 +909,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -1027,7 +1029,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/status_module.rst b/docs/plugins/status_module.rst index 3eb28b42..2ccb100b 100644 --- a/docs/plugins/status_module.rst +++ b/docs/plugins/status_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.status module -- Creates or removes status from Nautobot .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -236,7 +237,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -273,7 +274,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -310,7 +311,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -351,7 +352,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -405,8 +406,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -514,7 +516,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/tag_module.rst b/docs/plugins/tag_module.rst index 7a0a3df6..1b5d3da2 100644 --- a/docs/plugins/tag_module.rst +++ b/docs/plugins/tag_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.tag module -- Creates or removes tags from Nautobot .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -233,7 +234,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -270,7 +271,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -307,7 +308,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -348,7 +349,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -402,8 +403,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -511,7 +513,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/tenant_group_module.rst b/docs/plugins/tenant_group_module.rst index 0559b423..0e027a32 100644 --- a/docs/plugins/tenant_group_module.rst +++ b/docs/plugins/tenant_group_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.tenant_group module -- Creates or removes tenant groups f .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.1.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -312,7 +313,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -364,8 +365,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -473,7 +475,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/tenant_module.rst b/docs/plugins/tenant_module.rst index 9006f50f..e691bbb7 100644 --- a/docs/plugins/tenant_module.rst +++ b/docs/plugins/tenant_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.tenant module -- Creates or removes tenants from Nautobot .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -308,7 +309,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -349,7 +350,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -401,8 +402,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -427,7 +429,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -464,7 +466,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -584,7 +586,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/virtual_chassis_module.rst b/docs/plugins/virtual_chassis_module.rst index da3c8b10..f1819ec3 100644 --- a/docs/plugins/virtual_chassis_module.rst +++ b/docs/plugins/virtual_chassis_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.virtual_chassis module -- Create, update or delete virtua .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -327,8 +328,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -353,7 +355,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -471,7 +473,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/virtual_machine_module.rst b/docs/plugins/virtual_machine_module.rst index 213af1ff..8de9a0b6 100644 --- a/docs/plugins/virtual_machine_module.rst +++ b/docs/plugins/virtual_machine_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.virtual_machine module -- Create, update or delete virtua .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -268,7 +269,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -305,7 +306,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -342,7 +343,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -379,7 +380,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -416,7 +417,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -453,7 +454,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -490,7 +491,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -527,7 +528,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -568,7 +569,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -620,8 +621,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -646,7 +648,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -685,7 +687,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -722,7 +724,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -840,7 +842,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html @@ -865,7 +867,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -902,7 +904,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html diff --git a/docs/plugins/vlan_group_module.rst b/docs/plugins/vlan_group_module.rst index b95b8ac9..3326167f 100644 --- a/docs/plugins/vlan_group_module.rst +++ b/docs/plugins/vlan_group_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.vlan_group module -- Create, update or delete vlans group .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -275,7 +276,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -312,7 +313,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -366,8 +367,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -473,7 +475,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/docs/plugins/vlan_module.rst b/docs/plugins/vlan_module.rst index ef2987ea..3ca050f4 100644 --- a/docs/plugins/vlan_module.rst +++ b/docs/plugins/vlan_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.vlan module -- Create, update or delete vlans within Naut .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -271,7 +272,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -312,7 +313,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -364,8 +365,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -390,7 +392,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -429,7 +431,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -466,7 +468,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -584,7 +586,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html @@ -609,7 +611,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -646,7 +648,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -683,7 +685,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html diff --git a/docs/plugins/vm_interface_module.rst b/docs/plugins/vm_interface_module.rst index 66820091..7e0bfe7f 100644 --- a/docs/plugins/vm_interface_module.rst +++ b/docs/plugins/vm_interface_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.vm_interface module -- Creates or removes interfaces from .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -218,6 +219,7 @@ Parameters - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -241,7 +243,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -278,7 +280,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -315,7 +317,7 @@ Parameters :ansible-option-type:`integer` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -352,7 +354,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -389,7 +391,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -445,8 +447,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -471,7 +474,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -508,7 +511,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -579,7 +582,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -665,7 +668,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html @@ -690,7 +693,7 @@ Parameters :ansible-option-type:`any` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html diff --git a/docs/plugins/vrf_module.rst b/docs/plugins/vrf_module.rst index 2ffc898f..2eaeda4e 100644 --- a/docs/plugins/vrf_module.rst +++ b/docs/plugins/vrf_module.rst @@ -18,8 +18,7 @@ .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices -.. role:: ansible-option-choices-entry -.. role:: ansible-option-default +.. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold @@ -43,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.1.1). + This module is part of the `networktocode.nautobot collection `_ (version 4.2.0). To install it, use: :code:`ansible-galaxy collection install networktocode.nautobot`. You need further requirements to be able to use this module, @@ -53,7 +52,9 @@ networktocode.nautobot.vrf module -- Create, update or delete vrfs within Nautob .. version_added -.. versionadded:: 1.0.0 of networktocode.nautobot +.. rst-class:: ansible-version-added + +New in networktocode.nautobot 1.0.0 .. contents:: :local: @@ -123,7 +124,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 4.1.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 4.1.0` .. raw:: html @@ -160,7 +161,7 @@ Parameters :ansible-option-type:`dictionary` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -197,7 +198,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -234,7 +235,7 @@ Parameters :ansible-option-type:`boolean` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -255,6 +256,7 @@ Parameters - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` + .. raw:: html @@ -278,7 +280,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -315,7 +317,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -352,7 +354,7 @@ Parameters :ansible-option-type:`string` / :ansible-option-required:`required` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -389,7 +391,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -430,7 +432,7 @@ Parameters :ansible-option-type:`string` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -482,8 +484,9 @@ Parameters :ansible-option-choices:`Choices:` - - :ansible-option-choices-entry:`absent` - - :ansible-option-default-bold:`present` :ansible-option-default:`← (default)` + - :ansible-option-choices-entry:`"absent"` + - :ansible-option-choices-entry-default:`"present"` :ansible-option-choices-default-mark:`← (default)` + .. raw:: html @@ -508,7 +511,7 @@ Parameters :ansible-option-type:`list` / :ansible-option-elements:`elements=any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -545,7 +548,7 @@ Parameters :ansible-option-type:`any` - :ansible-option-versionadded:`added in 3.0.0 of networktocode.nautobot` + :ansible-option-versionadded:`added in networktocode.nautobot 3.0.0` .. raw:: html @@ -663,7 +666,7 @@ Parameters .. rst-class:: ansible-option-line - :ansible-option-default-bold:`Default:` :ansible-option-default:`"true"` + :ansible-option-default-bold:`Default:` :ansible-option-default:`true` .. raw:: html diff --git a/poetry.lock b/poetry.lock index 48a417b0..5d92c540 100644 --- a/poetry.lock +++ b/poetry.lock @@ -137,7 +137,7 @@ twiggy = ">=0.5.0" [[package]] name = "antsibull-docs" -version = "1.3.0" +version = "1.7.3" description = "Tools for building Ansible documentation" category = "dev" optional = false @@ -145,10 +145,11 @@ python-versions = ">=3.6.1,<4.0.0" [package.dependencies] ansible-pygments = "*" -antsibull-core = ">=1.0.0,<2.0.0" +antsibull-core = ">=1.2.0,<2.0.0" asyncio-pool = "*" docutils = "*" jinja2 = "*" +packaging = "*" rstcheck = ">=3.0.0,<7.0.0" sphinx = "*" @@ -210,10 +211,10 @@ optional = false python-versions = ">=3.5" [package.extras] -dev = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "furo", "sphinx", "sphinx-notfound-page", "pre-commit", "cloudpickle"] -docs = ["furo", "sphinx", "zope.interface", "sphinx-notfound-page"] -tests = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "zope.interface", "cloudpickle"] -tests_no_zope = ["coverage[toml] (>=5.0.2)", "hypothesis", "pympler", "pytest (>=4.3.0)", "mypy (>=0.900,!=0.940)", "pytest-mypy-plugins", "cloudpickle"] +dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy (>=0.900,!=0.940)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "sphinx", "sphinx-notfound-page", "zope.interface"] +docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"] +tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "zope.interface"] +tests_no_zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"] [[package]] name = "babel" @@ -362,11 +363,11 @@ cffi = ">=1.12" [package.extras] docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"] -docstest = ["pyenchant (>=1.6.11)", "twine (>=1.12.0)", "sphinxcontrib-spelling (>=4.0.1)"] +docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"] sdist = ["setuptools_rust (>=0.11.4)"] ssh = ["bcrypt (>=3.1.5)"] -test = ["pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pretend", "iso8601", "pytz", "hypothesis (>=1.11.4,!=3.79.2)"] +test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pytz"] [[package]] name = "dataclasses" @@ -450,8 +451,8 @@ attrs = ">=19.2.0" sortedcontainers = ">=2.1.0,<3.0.0" [package.extras] -all = ["black (>=19.10b0)", "click (>=7.0)", "django (>=2.2)", "dpcontracts (>=0.4)", "lark-parser (>=0.6.5)", "libcst (>=0.3.16)", "numpy (>=1.9.0)", "pandas (>=0.25)", "pytest (>=4.6)", "python-dateutil (>=1.4)", "pytz (>=2014.1)", "redis (>=3.0.0)", "rich (>=9.0.0)", "importlib-resources (>=3.3.0)", "importlib-metadata (>=3.6)", "backports.zoneinfo (>=0.2.1)", "tzdata (>=2021.5)"] -cli = ["click (>=7.0)", "black (>=19.10b0)", "rich (>=9.0.0)"] +all = ["backports.zoneinfo (>=0.2.1)", "black (>=19.10b0)", "click (>=7.0)", "django (>=2.2)", "dpcontracts (>=0.4)", "importlib-metadata (>=3.6)", "importlib-resources (>=3.3.0)", "lark-parser (>=0.6.5)", "libcst (>=0.3.16)", "numpy (>=1.9.0)", "pandas (>=0.25)", "pytest (>=4.6)", "python-dateutil (>=1.4)", "pytz (>=2014.1)", "redis (>=3.0.0)", "rich (>=9.0.0)", "tzdata (>=2021.5)"] +cli = ["black (>=19.10b0)", "click (>=7.0)", "rich (>=9.0.0)"] codemods = ["libcst (>=0.3.16)"] dateutil = ["python-dateutil (>=1.4)"] django = ["django (>=2.2)"] @@ -463,7 +464,7 @@ pandas = ["pandas (>=0.25)"] pytest = ["pytest (>=4.6)"] pytz = ["pytz (>=2014.1)"] redis = ["redis (>=3.0.0)"] -zoneinfo = ["importlib-resources (>=3.3.0)", "backports.zoneinfo (>=0.2.1)", "tzdata (>=2021.5)"] +zoneinfo = ["backports.zoneinfo (>=0.2.1)", "importlib-resources (>=3.3.0)", "tzdata (>=2021.5)"] [[package]] name = "idna" @@ -504,7 +505,7 @@ python-versions = ">=3.6" typing-extensions = {version = ">=3.7.4.3", markers = "python_version < \"3.8\""} [package.extras] -test = ["flake8 (>=3.8.4,<3.9.0)", "pycodestyle (>=2.6.0,<2.7.0)", "mypy (==0.942)", "pytest (>=6.2.4,<6.3.0)"] +test = ["flake8 (>=3.8.4,<3.9.0)", "mypy (==0.942)", "pycodestyle (>=2.6.0,<2.7.0)", "pytest (>=6.2.4,<6.3.0)"] [[package]] name = "importlib-metadata" @@ -518,8 +519,8 @@ python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" zipp = ">=0.5" [package.extras] -docs = ["sphinx", "rst.linker"] -testing = ["packaging", "pep517", "importlib-resources (>=1.3)"] +docs = ["rst.linker", "sphinx"] +testing = ["importlib-resources (>=1.3)", "packaging", "pep517"] [[package]] name = "iniconfig" @@ -546,10 +547,10 @@ optional = false python-versions = ">=3.6.1,<4.0" [package.extras] -pipfile_deprecated_finder = ["pipreqs", "requirementslib"] -requirements_deprecated_finder = ["pipreqs", "pip-api"] colors = ["colorama (>=0.4.3,<0.5.0)"] +pipfile_deprecated_finder = ["pipreqs", "requirementslib"] plugins = ["setuptools"] +requirements_deprecated_finder = ["pip-api", "pipreqs"] [[package]] name = "jinja2" @@ -614,7 +615,7 @@ optional = false python-versions = ">=3.6" [package.extras] -build = ["twine", "wheel", "blurb"] +build = ["blurb", "twine", "wheel"] docs = ["sphinx"] test = ["pytest (<5.4)", "pytest-cov"] @@ -850,7 +851,7 @@ python-versions = ">=3.6" pytest = ">=5.0" [package.extras] -dev = ["pre-commit", "tox", "pytest-asyncio"] +dev = ["pre-commit", "pytest-asyncio", "tox"] [[package]] name = "pytest-pythonpath" @@ -935,7 +936,7 @@ optional = false python-versions = ">=2.7" [package.extras] -dev = ["Django (>=1.11)", "nose2", "tox", "check-manifest", "coverage", "flake8", "wheel", "zest.releaser", "readme-renderer (<25.0)", "colorama (<=0.4.1)"] +dev = ["Django (>=1.11)", "check-manifest", "colorama (<=0.4.1)", "coverage", "flake8", "nose2", "readme-renderer (<25.0)", "tox", "wheel", "zest.releaser"] doc = ["sphinx", "sphinx-rtd-theme"] [[package]] @@ -1006,8 +1007,8 @@ sphinxcontrib-serializinghtml = ">=1.1.5" [package.extras] docs = ["sphinxcontrib-websupport"] -lint = ["flake8 (>=3.5.0)", "isort", "mypy (>=0.920)", "docutils-stubs", "types-typed-ast", "types-pkg-resources", "types-requests"] -test = ["pytest", "pytest-cov", "html5lib", "cython", "typed-ast"] +lint = ["docutils-stubs", "flake8 (>=3.5.0)", "isort", "mypy (>=0.920)", "types-pkg-resources", "types-requests", "types-typed-ast"] +test = ["cython", "html5lib", "pytest", "pytest-cov", "typed-ast"] [[package]] name = "sphinx-rtd-theme" @@ -1022,7 +1023,7 @@ docutils = "<0.18" sphinx = ">=1.6" [package.extras] -dev = ["transifex-client", "sphinxcontrib-httpdomain", "bump2version"] +dev = ["bump2version", "sphinxcontrib-httpdomain", "transifex-client"] [[package]] name = "sphinxcontrib-applehelp" @@ -1033,7 +1034,7 @@ optional = false python-versions = ">=3.5" [package.extras] -lint = ["flake8", "mypy", "docutils-stubs"] +lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] [[package]] @@ -1045,7 +1046,7 @@ optional = false python-versions = ">=3.5" [package.extras] -lint = ["flake8", "mypy", "docutils-stubs"] +lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] [[package]] @@ -1057,8 +1058,8 @@ optional = false python-versions = ">=3.6" [package.extras] -lint = ["flake8", "mypy", "docutils-stubs"] -test = ["pytest", "html5lib"] +lint = ["docutils-stubs", "flake8", "mypy"] +test = ["html5lib", "pytest"] [[package]] name = "sphinxcontrib-jsmath" @@ -1069,7 +1070,7 @@ optional = false python-versions = ">=3.5" [package.extras] -test = ["pytest", "flake8", "mypy"] +test = ["flake8", "mypy", "pytest"] [[package]] name = "sphinxcontrib-qthelp" @@ -1080,7 +1081,7 @@ optional = false python-versions = ">=3.5" [package.extras] -lint = ["flake8", "mypy", "docutils-stubs"] +lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] [[package]] @@ -1092,7 +1093,7 @@ optional = false python-versions = ">=3.5" [package.extras] -lint = ["flake8", "mypy", "docutils-stubs"] +lint = ["docutils-stubs", "flake8", "mypy"] test = ["pytest"] [[package]] @@ -1159,8 +1160,8 @@ optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4" [package.extras] -brotli = ["brotlicffi (>=0.8.0)", "brotli (>=1.0.9)", "brotlipy (>=0.6.0)"] -secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "urllib3-secure-extra", "ipaddress"] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] +secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] [[package]] @@ -1193,13 +1194,13 @@ optional = false python-versions = ">=3.6" [package.extras] -docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"] -testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest-cov", "pytest-enabler (>=1.0.1)", "jaraco.itertools", "func-timeout", "pytest-black (>=0.3.7)", "pytest-mypy"] +docs = ["jaraco.packaging (>=8.2)", "rst.linker (>=1.9)", "sphinx"] +testing = ["func-timeout", "jaraco.itertools", "pytest (>=4.6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy"] [metadata] lock-version = "1.1" python-versions = "^3.6.2" -content-hash = "af4f9da72cb6e9887fb9f5935c14620cf880f4bec4d079082cc295fd30ac1e3b" +content-hash = "d93cd3a424d048d47dcec8b4df94273670a1c07c56f1161c48a3215f41662c85" [metadata.files] aiocontextvars = [ @@ -1303,10 +1304,22 @@ antsibull = [ {file = "antsibull-0.45.1-py3-none-any.whl", hash = "sha256:dfdabbaeacc0c00408961448a03f4e2516ac2658e220ca184669403efe9cb329"}, {file = "antsibull-0.45.1.tar.gz", hash = "sha256:67dc55d84bb10e06bf344eed9a0c3ac057a16beed40ab9fc3e38f693865279d6"}, ] -antsibull-changelog = [] -antsibull-core = [] -antsibull-docs = [] -astroid = [] +antsibull-changelog = [ + {file = "antsibull-changelog-0.16.0.tar.gz", hash = "sha256:743a03108f78ee6f065c346234c5bd21933ec65a5e6aae4542bddb952419ea88"}, + {file = "antsibull_changelog-0.16.0-py3-none-any.whl", hash = "sha256:578b5116f0d8dc76ed5fa0f7ee3acdf357f34e7173311267c8510e6acfb5dd08"}, +] +antsibull-core = [ + {file = "antsibull-core-1.2.0.tar.gz", hash = "sha256:d4c613b5704a8be27437721777068f7543e9cf2ae35de83fa1584f1a89f14e37"}, + {file = "antsibull_core-1.2.0-py3-none-any.whl", hash = "sha256:84312f3c27bb4ec11980f1ec00618ff84ca3ace6f9f9d9779277cd47ae3f79d3"}, +] +antsibull-docs = [ + {file = "antsibull_docs-1.7.3-py3-none-any.whl", hash = "sha256:d8140e596588a060725ed1b09863ed8377c02f889598c165025464e670c34ec6"}, + {file = "antsibull_docs-1.7.3.tar.gz", hash = "sha256:a2c0ca4ec446b71c2492843c9d7d393567b2ec08560b28a126bd6dc8a113add3"}, +] +astroid = [ + {file = "astroid-2.11.7-py3-none-any.whl", hash = "sha256:86b0a340a512c65abf4368b80252754cda17c02cdbbd3f587dddf98112233e7b"}, + {file = "astroid-2.11.7.tar.gz", hash = "sha256:bb24615c77f4837c707669d16907331374ae8a964650a66999da3f5ca68dc946"}, +] async-timeout = [ {file = "async-timeout-4.0.2.tar.gz", hash = "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"}, {file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"}, @@ -1319,9 +1332,17 @@ asynctest = [ {file = "asynctest-0.13.0-py3-none-any.whl", hash = "sha256:5da6118a7e6d6b54d83a8f7197769d046922a44d2a99c21382f0a6e4fadae676"}, {file = "asynctest-0.13.0.tar.gz", hash = "sha256:c27862842d15d83e6a34eb0b2866c323880eb3a75e4485b079ea11748fd77fac"}, ] -atomicwrites = [] -attrs = [] -babel = [] +atomicwrites = [ + {file = "atomicwrites-1.4.1.tar.gz", hash = "sha256:81b2c9071a49367a7f770170e5eec8cb66567cfbbc8c73d20ce5ca4a8d71cf11"}, +] +attrs = [ + {file = "attrs-22.1.0-py2.py3-none-any.whl", hash = "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"}, + {file = "attrs-22.1.0.tar.gz", hash = "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6"}, +] +babel = [ + {file = "Babel-2.10.3-py3-none-any.whl", hash = "sha256:ff56f4892c1c4bf0d814575ea23471c230d544203c7748e8c68f0089478d48eb"}, + {file = "Babel-2.10.3.tar.gz", hash = "sha256:7614553711ee97490f732126dc077f8d0ae084ebc6a96e23db1482afabdb2c51"}, +] bandit = [ {file = "bandit-1.7.1-py3-none-any.whl", hash = "sha256:f5acd838e59c038a159b5c621cf0f8270b279e884eadd7b782d7491c02add0d4"}, {file = "bandit-1.7.1.tar.gz", hash = "sha256:a81b00b5436e6880fa8ad6799bc830e02032047713cbb143a12939ac67eb756c"}, @@ -1334,7 +1355,72 @@ certifi = [ {file = "certifi-2022.6.15-py3-none-any.whl", hash = "sha256:fe86415d55e84719d75f8b69414f6438ac3547d2078ab91b67e779ef69378412"}, {file = "certifi-2022.6.15.tar.gz", hash = "sha256:84c85a9078b11105f04f3036a9482ae10e4621616db313fe045dd24743a0820d"}, ] -cffi = [] +cffi = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] charset-normalizer = [ {file = "charset-normalizer-2.0.12.tar.gz", hash = "sha256:2857e29ff0d34db842cd7ca3230549d1a697f96ee6d3fb071cfa6c7393832597"}, {file = "charset_normalizer-2.0.12-py3-none-any.whl", hash = "sha256:6881edbebdb17b39b4eaaa821b438bf6eddffb4468cf344f09f89def34a8b1df"}, @@ -1389,7 +1475,30 @@ coverage = [ {file = "coverage-4.5.4-cp38-cp38-macosx_10_13_x86_64.whl", hash = "sha256:141f08ed3c4b1847015e2cd62ec06d35e67a3ac185c26f7635f4406b90afa9c5"}, {file = "coverage-4.5.4.tar.gz", hash = "sha256:e07d9f1a23e9e93ab5c62902833bf3e4b1f65502927379148b6622686223125c"}, ] -cryptography = [] +cryptography = [ + {file = "cryptography-37.0.4-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:549153378611c0cca1042f20fd9c5030d37a72f634c9326e225c9f666d472884"}, + {file = "cryptography-37.0.4-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:a958c52505c8adf0d3822703078580d2c0456dd1d27fabfb6f76fe63d2971cd6"}, + {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f721d1885ecae9078c3f6bbe8a88bc0786b6e749bf32ccec1ef2b18929a05046"}, + {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:3d41b965b3380f10e4611dbae366f6dc3cefc7c9ac4e8842a806b9672ae9add5"}, + {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80f49023dd13ba35f7c34072fa17f604d2f19bf0989f292cedf7ab5770b87a0b"}, + {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2dcb0b3b63afb6df7fd94ec6fbddac81b5492513f7b0436210d390c14d46ee8"}, + {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:b7f8dd0d4c1f21759695c05a5ec8536c12f31611541f8904083f3dc582604280"}, + {file = "cryptography-37.0.4-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:30788e070800fec9bbcf9faa71ea6d8068f5136f60029759fd8c3efec3c9dcb3"}, + {file = "cryptography-37.0.4-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:190f82f3e87033821828f60787cfa42bff98404483577b591429ed99bed39d59"}, + {file = "cryptography-37.0.4-cp36-abi3-win32.whl", hash = "sha256:b62439d7cd1222f3da897e9a9fe53bbf5c104fff4d60893ad1355d4c14a24157"}, + {file = "cryptography-37.0.4-cp36-abi3-win_amd64.whl", hash = "sha256:f7a6de3e98771e183645181b3627e2563dcde3ce94a9e42a3f427d2255190327"}, + {file = "cryptography-37.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bc95ed67b6741b2607298f9ea4932ff157e570ef456ef7ff0ef4884a134cc4b"}, + {file = "cryptography-37.0.4-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:f8c0a6e9e1dd3eb0414ba320f85da6b0dcbd543126e30fcc546e7372a7fbf3b9"}, + {file = "cryptography-37.0.4-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:e007f052ed10cc316df59bc90fbb7ff7950d7e2919c9757fd42a2b8ecf8a5f67"}, + {file = "cryptography-37.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bc997818309f56c0038a33b8da5c0bfbb3f1f067f315f9abd6fc07ad359398d"}, + {file = "cryptography-37.0.4-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:d204833f3c8a33bbe11eda63a54b1aad7aa7456ed769a982f21ec599ba5fa282"}, + {file = "cryptography-37.0.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:75976c217f10d48a8b5a8de3d70c454c249e4b91851f6838a4e48b8f41eb71aa"}, + {file = "cryptography-37.0.4-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:7099a8d55cd49b737ffc99c17de504f2257e3787e02abe6d1a6d136574873441"}, + {file = "cryptography-37.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2be53f9f5505673eeda5f2736bea736c40f051a739bfae2f92d18aed1eb54596"}, + {file = "cryptography-37.0.4-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:91ce48d35f4e3d3f1d83e29ef4a9267246e6a3be51864a5b7d2247d5086fa99a"}, + {file = "cryptography-37.0.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4c590ec31550a724ef893c50f9a97a0c14e9c851c85621c5650d699a7b88f7ab"}, + {file = "cryptography-37.0.4.tar.gz", hash = "sha256:63f9c17c0e2474ccbebc9302ce2f07b55b3b3fcb211ded18a42d5764f5c10a82"}, +] dataclasses = [ {file = "dataclasses-0.8-py3-none-any.whl", hash = "sha256:0201d89fa866f68c8ebd9d08ee6ff50c0b255f8ec63a71c16fda7af82bb887bf"}, {file = "dataclasses-0.8.tar.gz", hash = "sha256:8479067f342acf957dc82ec415d355ab5edb7e7646b90dc6e2fd1d96ad084c97"}, @@ -1499,7 +1608,10 @@ idna = [ idna-ssl = [ {file = "idna-ssl-1.1.0.tar.gz", hash = "sha256:a933e3bb13da54383f9e8f35dc4f9cb9eb9b3b78c6b36f311254d6d0d92c6c7c"}, ] -imagesize = [] +imagesize = [ + {file = "imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b"}, + {file = "imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a"}, +] immutables = [ {file = "immutables-0.18-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d841dfa15b932bdad27f5149bce86b32d0dd8a29679ed61405677317b6893447"}, {file = "immutables-0.18-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29a5886845cd0ca8263b721337750a895e28feee2f16694a526977a791909db5"}, @@ -1559,7 +1671,10 @@ iniconfig = [ {file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"}, {file = "iniconfig-1.1.1.tar.gz", hash = "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"}, ] -invoke = [] +invoke = [ + {file = "invoke-1.7.1-py3-none-any.whl", hash = "sha256:2dc975b4f92be0c0a174ad2d063010c8a1fdb5e9389d69871001118b4fcac4fb"}, + {file = "invoke-1.7.1.tar.gz", hash = "sha256:7b6deaf585eee0a848205d0b8c0014b9bf6f287a8eb798818a642dff1df14b19"}, +] isort = [ {file = "isort-5.10.1-py3-none-any.whl", hash = "sha256:6f62d78e2f89b4500b080fe3a81690850cd254227f27f75c3a0c491a1f351ba7"}, {file = "isort-5.10.1.tar.gz", hash = "sha256:e8443a5e7a020e9d7f97f1d7d9cd17c88bcb3bc7e218bf9cf5095fe550be2951"}, @@ -1572,7 +1687,10 @@ jmespath = [ {file = "jmespath-0.10.0-py2.py3-none-any.whl", hash = "sha256:cdf6525904cc597730141d61b36f2e4b8ecc257c420fa2f4549bac2c2d0cb72f"}, {file = "jmespath-0.10.0.tar.gz", hash = "sha256:b85d0567b8666149a93172712e68920734333c0ce7e89b78b3e987f71e5ed4f9"}, ] -jsondiff = [] +jsondiff = [ + {file = "jsondiff-2.0.0-py3-none-any.whl", hash = "sha256:689841d66273fc88fc79f7d33f4c074774f4f214b6466e3aff0e5adaf889d1e0"}, + {file = "jsondiff-2.0.0.tar.gz", hash = "sha256:2795844ef075ec8a2b8d385c4d59f5ea48b08e7180fce3cb2787be0db00b1fb4"}, +] lazy-object-proxy = [ {file = "lazy-object-proxy-1.7.1.tar.gz", hash = "sha256:d609c75b986def706743cdebe5e47553f4a5a1da9c5ff66d76013ef396b5a8a4"}, {file = "lazy_object_proxy-1.7.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb8c5fd1684d60a9902c60ebe276da1f2281a318ca16c1d0a96db28f62e9166b"}, @@ -1769,7 +1887,10 @@ mypy-extensions = [ {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, ] -netutils = [] +netutils = [ + {file = "netutils-1.2.0-py3-none-any.whl", hash = "sha256:23c2ca960544ac6674263063a3580fe3d9d94d5898512df468298659c7eff7e3"}, + {file = "netutils-1.2.0.tar.gz", hash = "sha256:a661326a46352208ea465f0305831f042f7943289e4cbc3e085c23c07682d24b"}, +] packaging = [ {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, @@ -1782,7 +1903,10 @@ pathspec = [ {file = "pathspec-0.9.0-py2.py3-none-any.whl", hash = "sha256:7d15c4ddb0b5c802d161efc417ec1a2558ea2653c2e8ad9c19098201dc1c993a"}, {file = "pathspec-0.9.0.tar.gz", hash = "sha256:e564499435a2673d586f6b2130bb5b95f04a3ba06f81b8f895b651a3c76aabb1"}, ] -pbr = [] +pbr = [ + {file = "pbr-5.10.0-py2.py3-none-any.whl", hash = "sha256:da3e18aac0a3c003e9eea1a81bd23e5a3a75d745670dcf736317b7d966887fdf"}, + {file = "pbr-5.10.0.tar.gz", hash = "sha256:cfcc4ff8e698256fc17ea3ff796478b050852585aa5bae79ecd05b2ab7b39b9a"}, +] perky = [ {file = "perky-0.5.5-py3-none-any.whl", hash = "sha256:29857b816d4d02bfb9cb875f07424af66b93c06d9e610943b25b2d50b75888e4"}, {file = "perky-0.5.5.tar.gz", hash = "sha256:7998a8131fd2313ce948e27e290e49764837d99dd6133e2ee88f05e12561aaa1"}, @@ -1803,10 +1927,55 @@ pycparser = [ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, ] -pydantic = [] -pygments = [] -pylint = [] -pynautobot = [] +pydantic = [ + {file = "pydantic-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9c9e04a6cdb7a363d7cb3ccf0efea51e0abb48e180c0d31dca8d247967d85c6e"}, + {file = "pydantic-1.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fafe841be1103f340a24977f61dee76172e4ae5f647ab9e7fd1e1fca51524f08"}, + {file = "pydantic-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afacf6d2a41ed91fc631bade88b1d319c51ab5418870802cedb590b709c5ae3c"}, + {file = "pydantic-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ee0d69b2a5b341fc7927e92cae7ddcfd95e624dfc4870b32a85568bd65e6131"}, + {file = "pydantic-1.9.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ff68fc85355532ea77559ede81f35fff79a6a5543477e168ab3a381887caea76"}, + {file = "pydantic-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c0f5e142ef8217019e3eef6ae1b6b55f09a7a15972958d44fbd228214cede567"}, + {file = "pydantic-1.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:615661bfc37e82ac677543704437ff737418e4ea04bef9cf11c6d27346606044"}, + {file = "pydantic-1.9.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:328558c9f2eed77bd8fffad3cef39dbbe3edc7044517f4625a769d45d4cf7555"}, + {file = "pydantic-1.9.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bd446bdb7755c3a94e56d7bdfd3ee92396070efa8ef3a34fab9579fe6aa1d84"}, + {file = "pydantic-1.9.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e0b214e57623a535936005797567231a12d0da0c29711eb3514bc2b3cd008d0f"}, + {file = "pydantic-1.9.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:d8ce3fb0841763a89322ea0432f1f59a2d3feae07a63ea2c958b2315e1ae8adb"}, + {file = "pydantic-1.9.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:b34ba24f3e2d0b39b43f0ca62008f7ba962cff51efa56e64ee25c4af6eed987b"}, + {file = "pydantic-1.9.2-cp36-cp36m-win_amd64.whl", hash = "sha256:84d76ecc908d917f4684b354a39fd885d69dd0491be175f3465fe4b59811c001"}, + {file = "pydantic-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4de71c718c9756d679420c69f216776c2e977459f77e8f679a4a961dc7304a56"}, + {file = "pydantic-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5803ad846cdd1ed0d97eb00292b870c29c1f03732a010e66908ff48a762f20e4"}, + {file = "pydantic-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a8c5360a0297a713b4123608a7909e6869e1b56d0e96eb0d792c27585d40757f"}, + {file = "pydantic-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:cdb4272678db803ddf94caa4f94f8672e9a46bae4a44f167095e4d06fec12979"}, + {file = "pydantic-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:19b5686387ea0d1ea52ecc4cffb71abb21702c5e5b2ac626fd4dbaa0834aa49d"}, + {file = "pydantic-1.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:32e0b4fb13ad4db4058a7c3c80e2569adbd810c25e6ca3bbd8b2a9cc2cc871d7"}, + {file = "pydantic-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91089b2e281713f3893cd01d8e576771cd5bfdfbff5d0ed95969f47ef6d676c3"}, + {file = "pydantic-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e631c70c9280e3129f071635b81207cad85e6c08e253539467e4ead0e5b219aa"}, + {file = "pydantic-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b3946f87e5cef3ba2e7bd3a4eb5a20385fe36521d6cc1ebf3c08a6697c6cfb3"}, + {file = "pydantic-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5565a49effe38d51882cb7bac18bda013cdb34d80ac336428e8908f0b72499b0"}, + {file = "pydantic-1.9.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:bd67cb2c2d9602ad159389c29e4ca964b86fa2f35c2faef54c3eb28b4efd36c8"}, + {file = "pydantic-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4aafd4e55e8ad5bd1b19572ea2df546ccace7945853832bb99422a79c70ce9b8"}, + {file = "pydantic-1.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:d70916235d478404a3fa8c997b003b5f33aeac4686ac1baa767234a0f8ac2326"}, + {file = "pydantic-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:f0ca86b525264daa5f6b192f216a0d1e860b7383e3da1c65a1908f9c02f42801"}, + {file = "pydantic-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:1061c6ee6204f4f5a27133126854948e3b3d51fcc16ead2e5d04378c199b2f44"}, + {file = "pydantic-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e78578f0c7481c850d1c969aca9a65405887003484d24f6110458fb02cca7747"}, + {file = "pydantic-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5da164119602212a3fe7e3bc08911a89db4710ae51444b4224c2382fd09ad453"}, + {file = "pydantic-1.9.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ead3cd020d526f75b4188e0a8d71c0dbbe1b4b6b5dc0ea775a93aca16256aeb"}, + {file = "pydantic-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7d0f183b305629765910eaad707800d2f47c6ac5bcfb8c6397abdc30b69eeb15"}, + {file = "pydantic-1.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:f1a68f4f65a9ee64b6ccccb5bf7e17db07caebd2730109cb8a95863cfa9c4e55"}, + {file = "pydantic-1.9.2-py3-none-any.whl", hash = "sha256:78a4d6bdfd116a559aeec9a4cfe77dda62acc6233f8b56a716edad2651023e5e"}, + {file = "pydantic-1.9.2.tar.gz", hash = "sha256:8cb0bc509bfb71305d7a59d00163d5f9fc4530f0881ea32c74ff4f74c85f3d3d"}, +] +pygments = [ + {file = "Pygments-2.13.0-py3-none-any.whl", hash = "sha256:f643f331ab57ba3c9d89212ee4a2dabc6e94f117cf4eefde99a0574720d14c42"}, + {file = "Pygments-2.13.0.tar.gz", hash = "sha256:56a8508ae95f98e2b9bdf93a6be5ae3f7d8af858b43e02c5a2ff083726be40c1"}, +] +pylint = [ + {file = "pylint-2.13.9-py3-none-any.whl", hash = "sha256:705c620d388035bdd9ff8b44c5bcdd235bfb49d276d488dd2c8ff1736aa42526"}, + {file = "pylint-2.13.9.tar.gz", hash = "sha256:095567c96e19e6f57b5b907e67d265ff535e588fe26b12b5ebe1fc5645b2c731"}, +] +pynautobot = [ + {file = "pynautobot-1.1.2-py3-none-any.whl", hash = "sha256:f79c7d0aa7a413d0c5e82e0de2142041c88f34a9515381a1c1b27dc888eb69ca"}, + {file = "pynautobot-1.1.2.tar.gz", hash = "sha256:e599b1901ce24749217905d81f8c3ee281bf93375449e6180818cc708b3d850c"}, +] pyparsing = [ {file = "pyparsing-3.0.7-py3-none-any.whl", hash = "sha256:a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484"}, {file = "pyparsing-3.0.7.tar.gz", hash = "sha256:18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea"}, @@ -1831,7 +2000,10 @@ pytest-xdist = [ {file = "pytest-xdist-2.5.0.tar.gz", hash = "sha256:4580deca3ff04ddb2ac53eba39d76cb5dd5edeac050cb6fbc768b0dd712b4edf"}, {file = "pytest_xdist-2.5.0-py3-none-any.whl", hash = "sha256:6fe5c74fec98906deb8f2d2b616b5c782022744978e7bd4695d39c8f42d0ce65"}, ] -pytz = [] +pytz = [ + {file = "pytz-2022.2.1-py2.py3-none-any.whl", hash = "sha256:220f481bdafa09c3955dfbdddb7b57780e9a94f5127e35456a48589b9e0c0197"}, + {file = "pytz-2022.2.1.tar.gz", hash = "sha256:cea221417204f2d1a2aa03ddae3e867921971d0d76f14d87abb4414415bbdcf5"}, +] pyyaml = [ {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, @@ -1879,7 +2051,9 @@ semantic-version = [ {file = "semantic_version-2.10.0-py2.py3-none-any.whl", hash = "sha256:de78a3b8e0feda74cabc54aab2da702113e33ac9d9eb9d2389bcf1f58b7d9177"}, {file = "semantic_version-2.10.0.tar.gz", hash = "sha256:bdabb6d336998cbb378d4b9db3a4b56a1e3235701dc05ea2690d9a997ed5041c"}, ] -sh = [] +sh = [ + {file = "sh-1.14.3.tar.gz", hash = "sha256:e4045b6c732d9ce75d571c79f5ac2234edd9ae4f5fa9d59b09705082bdca18c7"}, +] six = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, @@ -1944,12 +2118,40 @@ twiggy = [ {file = "Twiggy-0.5.1-py3-none-any.whl", hash = "sha256:014671fdff7538b7f2396ff01724937ef57e1ac0e08f688747afbbcdeec9f081"}, {file = "Twiggy-0.5.1.tar.gz", hash = "sha256:7938840275972f6ce89994a5bdfb0b84f0386301a043a960af6364952e78ffe4"}, ] -typed-ast = [] +typed-ast = [ + {file = "typed_ast-1.5.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:669dd0c4167f6f2cd9f57041e03c3c2ebf9063d0757dc89f79ba1daa2bfca9d4"}, + {file = "typed_ast-1.5.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:211260621ab1cd7324e0798d6be953d00b74e0428382991adfddb352252f1d62"}, + {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:267e3f78697a6c00c689c03db4876dd1efdfea2f251a5ad6555e82a26847b4ac"}, + {file = "typed_ast-1.5.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c542eeda69212fa10a7ada75e668876fdec5f856cd3d06829e6aa64ad17c8dfe"}, + {file = "typed_ast-1.5.4-cp310-cp310-win_amd64.whl", hash = "sha256:a9916d2bb8865f973824fb47436fa45e1ebf2efd920f2b9f99342cb7fab93f72"}, + {file = "typed_ast-1.5.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:79b1e0869db7c830ba6a981d58711c88b6677506e648496b1f64ac7d15633aec"}, + {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a94d55d142c9265f4ea46fab70977a1944ecae359ae867397757d836ea5a3f47"}, + {file = "typed_ast-1.5.4-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:183afdf0ec5b1b211724dfef3d2cad2d767cbefac291f24d69b00546c1837fb6"}, + {file = "typed_ast-1.5.4-cp36-cp36m-win_amd64.whl", hash = "sha256:639c5f0b21776605dd6c9dbe592d5228f021404dafd377e2b7ac046b0349b1a1"}, + {file = "typed_ast-1.5.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:cf4afcfac006ece570e32d6fa90ab74a17245b83dfd6655a6f68568098345ff6"}, + {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed855bbe3eb3715fca349c80174cfcfd699c2f9de574d40527b8429acae23a66"}, + {file = "typed_ast-1.5.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6778e1b2f81dfc7bc58e4b259363b83d2e509a65198e85d5700dfae4c6c8ff1c"}, + {file = "typed_ast-1.5.4-cp37-cp37m-win_amd64.whl", hash = "sha256:0261195c2062caf107831e92a76764c81227dae162c4f75192c0d489faf751a2"}, + {file = "typed_ast-1.5.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2efae9db7a8c05ad5547d522e7dbe62c83d838d3906a3716d1478b6c1d61388d"}, + {file = "typed_ast-1.5.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7d5d014b7daa8b0bf2eaef684295acae12b036d79f54178b92a2b6a56f92278f"}, + {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:370788a63915e82fd6f212865a596a0fefcbb7d408bbbb13dea723d971ed8bdc"}, + {file = "typed_ast-1.5.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:4e964b4ff86550a7a7d56345c7864b18f403f5bd7380edf44a3c1fb4ee7ac6c6"}, + {file = "typed_ast-1.5.4-cp38-cp38-win_amd64.whl", hash = "sha256:683407d92dc953c8a7347119596f0b0e6c55eb98ebebd9b23437501b28dcbb8e"}, + {file = "typed_ast-1.5.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4879da6c9b73443f97e731b617184a596ac1235fe91f98d279a7af36c796da35"}, + {file = "typed_ast-1.5.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e123d878ba170397916557d31c8f589951e353cc95fb7f24f6bb69adc1a8a97"}, + {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebd9d7f80ccf7a82ac5f88c521115cc55d84e35bf8b446fcd7836eb6b98929a3"}, + {file = "typed_ast-1.5.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98f80dee3c03455e92796b58b98ff6ca0b2a6f652120c263efdba4d6c5e58f72"}, + {file = "typed_ast-1.5.4-cp39-cp39-win_amd64.whl", hash = "sha256:0fdbcf2fef0ca421a3f5912555804296f0b0960f0418c440f5d6d3abb549f3e1"}, + {file = "typed_ast-1.5.4.tar.gz", hash = "sha256:39e21ceb7388e4bb37f4c679d72707ed46c2fbf2a5609b8b8ebc4b067d977df2"}, +] typing-extensions = [ {file = "typing_extensions-4.1.1-py3-none-any.whl", hash = "sha256:21c85e0fe4b9a155d0799430b0ad741cdce7e359660ccbd8b530613e8df88ce2"}, {file = "typing_extensions-4.1.1.tar.gz", hash = "sha256:1a9462dcc3347a79b1f1c0271fbe79e844580bb598bafa1ed208b94da3cdcd42"}, ] -urllib3 = [] +urllib3 = [ + {file = "urllib3-1.26.12-py2.py3-none-any.whl", hash = "sha256:b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997"}, + {file = "urllib3-1.26.12.tar.gz", hash = "sha256:3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e"}, +] wrapt = [ {file = "wrapt-1.14.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:1b376b3f4896e7930f1f772ac4b064ac12598d1c38d04907e696cc4d794b43d3"}, {file = "wrapt-1.14.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:903500616422a40a98a5a3c4ff4ed9d0066f3b4c951fa286018ecdf0750194ef"}, diff --git a/pyproject.toml b/pyproject.toml index 740da51a..ba5dd06e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,6 +34,7 @@ parameterized = "^0.8.1" invoke = "^1.6.0" bandit = "^1.7.0" antsibull = "^0.45.1" +antsibull-docs = "^1.7.3" [build-system] requires = ["poetry-core>=1.0.0"] From 19c6f0355bc452f45c57cb0a1a65388f9a94c936 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Wed, 16 Nov 2022 11:08:23 -0600 Subject: [PATCH 03/25] Adds new line on changelog. --- changelogs/changelog.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index b4b2895f..4f898225 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -352,5 +352,5 @@ releases: 4.2.0: changes: minor_changes: + - (#171) Add provider_network to circuit_termination module - (#172) Add description to manufacturer - - (#171) Add provider_network to circuit_termination module \ No newline at end of file From f425dee6120ece932f632c3a6306c0e077cda074 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Wed, 16 Nov 2022 11:10:42 -0600 Subject: [PATCH 04/25] Updates changelog.rst --- CHANGELOG.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 25a5a745..5b2ae685 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,19 @@ networktocode.nautobot Release Notes .. contents:: Topics +v4.2.0 +====== + +Release Summary +--------------- + +Update missing keys on module updates. + +Bugfixes +-------- + +- (#171) Add provider_network to circuit_termination module +- (#172) Add description to manufacturer v4.1.1 ====== From 9e08e2754c45e879f540bf76bd3f468d59ea27ae Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Wed, 16 Nov 2022 11:58:23 -0600 Subject: [PATCH 05/25] Format updates. --- tasks.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 779da35b..e2d02796 100644 --- a/tasks.py +++ b/tasks.py @@ -219,12 +219,14 @@ def integration(context): env={"PYTHON_VER": context["nautobot_ansible"]["python_ver"]}, ) + @task def galaxy_build(context): """Build the collection.""" context.run("ansible-galaxy collection build .") + @task def galaxy_build_force(context): """Force build the collection.""" - context.run("ansible-galaxy collection build . --force") \ No newline at end of file + context.run("ansible-galaxy collection build . --force") From 68b91d0743570682d23cfa46d0c1da439e553682 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Wed, 16 Nov 2022 17:01:41 -0600 Subject: [PATCH 06/25] Fix manufacturer test. --- plugins/modules/manufacturer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/manufacturer.py b/plugins/modules/manufacturer.py index 92d453a6..272a62ce 100644 --- a/plugins/modules/manufacturer.py +++ b/plugins/modules/manufacturer.py @@ -51,7 +51,7 @@ required: false type: str version_added: "3.0.0" - manufacturer: + description: description: - Applies to the description field for Nautobot Manufacturer required: false From 13145a3a6af95b3197d5ff861bb15f5b46410929 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Wed, 16 Nov 2022 17:12:11 -0600 Subject: [PATCH 07/25] Update tests. --- tests/integration/nautobot-populate.py | 4 +++ .../latest/tasks/circuit_termination.yml | 34 +++++++++++++++++++ .../targets/latest/tasks/manufacturer.yml | 6 ++++ 3 files changed, 44 insertions(+) diff --git a/tests/integration/nautobot-populate.py b/tests/integration/nautobot-populate.py index f0d7b57a..3b1272d9 100755 --- a/tests/integration/nautobot-populate.py +++ b/tests/integration/nautobot-populate.py @@ -375,6 +375,10 @@ def make_nautobot_calls(endpoint, payload): created_providers = make_nautobot_calls(nb.circuits.providers, providers) test_provider = nb.circuits.providers.get(slug="test-provider") +# Create Provider Networks +provider_networks = [{"name": "Test Provider Network", "provider": created_providers[0]}] +created_provider_networks = make_nautobot_calls(nb.circuits.provider_networks, provider_networks) + # Create Circuit Type circuit_types = [{"name": "Test Circuit Type", "slug": "test-circuit-type"}] created_circuit_types = make_nautobot_calls(nb.circuits.circuit_types, circuit_types) diff --git a/tests/integration/targets/latest/tasks/circuit_termination.yml b/tests/integration/targets/latest/tasks/circuit_termination.yml index 05c559af..32fd045c 100644 --- a/tests/integration/targets/latest/tasks/circuit_termination.yml +++ b/tests/integration/targets/latest/tasks/circuit_termination.yml @@ -104,6 +104,40 @@ - test_four['circuit_termination']['port_speed'] == 10000 - test_four['msg'] == "circuit_termination test_circuit_z created" +- name: "PYNAUTOBOT_CIRCUIT_TERMINATION 5: Disconnect previously connected Z Side" + networktocode.nautobot.circuit_termination: + url: "{{ nautobot_url }}" + token: "{{ nautobot_token }}" + circuit: Test Circuit + term_side: Z + site: "Test Site" + port_speed: 10000 + state: absent + register: test_five_disconnect + +- name: "PYNAUTOBOT_CIRCUIT_TERMINATION 5: Create connection to provider_network within Nautobot with only required information" + networktocode.nautobot.circuit_termination: + url: "{{ nautobot_url }}" + token: "{{ nautobot_token }}" + circuit: Test Circuit + term_side: Z + provider_network: "Test Provider Network" + port_speed: 10000 + state: present + register: test_five + +- name: "PYNAUTOBOT_CIRCUIT_TERMINATION 5: ASSERT - Necessary info creation" + assert: + that: + - test_five is changed + - test_five['diff']['before']['state'] == "absent" + - test_five['diff']['after']['state'] == "present" + - test_five['circuit_termination']['circuit'] == circuit['key'] + - test_five['circuit_termination']['term_side'] == "Z" + - test_five['circuit_termination']['provider_network'] == "Test Provider Network" + - test_five['circuit_termination']['port_speed'] == 10000 + - test_five['msg'] == "circuit_termination test_circuit_a created" + - name: "PYNAUTOBOT_CIRCUIT_TERMINATION 5: Delete provider within nautobot" networktocode.nautobot.circuit_termination: url: "{{ nautobot_url }}" diff --git a/tests/integration/targets/latest/tasks/manufacturer.yml b/tests/integration/targets/latest/tasks/manufacturer.yml index d83401a6..611861dd 100644 --- a/tests/integration/targets/latest/tasks/manufacturer.yml +++ b/tests/integration/targets/latest/tasks/manufacturer.yml @@ -10,6 +10,7 @@ token: "{{ nautobot_token }}" name: Test Manufacturer Two state: present + description: "Test Manufactureer" register: test_one - name: "MANUFACTURER 1: ASSERT - Necessary info creation" @@ -20,6 +21,7 @@ - test_one['diff']['after']['state'] == "present" - test_one['manufacturer']['name'] == "Test Manufacturer Two" - test_one['manufacturer']['slug'] == "test-manufacturer-two" + - test_one['manufacturer']['description'] == "Test Manufactureer" - test_one['msg'] == "manufacturer Test Manufacturer Two created" - name: "MANUFACTURER 2: Create duplicate" @@ -28,6 +30,7 @@ token: "{{ nautobot_token }}" name: Test Manufacturer Two state: present + description: "Test Manufactureer" register: test_two - name: "MANUFACTURER 2: ASSERT - Create duplicate" @@ -36,6 +39,7 @@ - not test_two['changed'] - test_two['manufacturer']['name'] == "Test Manufacturer Two" - test_two['manufacturer']['slug'] == "test-manufacturer-two" + - test_two['manufacturer']['description'] == "Test Manufactureer" - test_two['msg'] == "manufacturer Test Manufacturer Two already exists" - name: "MANUFACTURER 3: Update" @@ -52,6 +56,7 @@ - test_three['changed'] - test_three['manufacturer']['name'] == "test manufacturer two" - test_three['manufacturer']['slug'] == "test-manufacturer-two" + - test_three['manufacturer']['description'] == "Test Manufactureer" - test_three['msg'] == "manufacturer test manufacturer two updated" - name: "MANUFACTURER 4: ASSERT - Delete" @@ -60,6 +65,7 @@ token: "{{ nautobot_token }}" name: test manufacturer two state: absent + description: "Test Manufactureer" register: test_four - name: "MANUFACTURER 3: ASSERT - Delete" From 6f93a9f187af5c8a0679567723ea401f4d51f36f Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Wed, 16 Nov 2022 18:53:09 -0600 Subject: [PATCH 08/25] Updates provider net to be provider name instead of obj. --- tests/integration/nautobot-populate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/nautobot-populate.py b/tests/integration/nautobot-populate.py index 3b1272d9..5dda9dcb 100755 --- a/tests/integration/nautobot-populate.py +++ b/tests/integration/nautobot-populate.py @@ -376,7 +376,7 @@ def make_nautobot_calls(endpoint, payload): test_provider = nb.circuits.providers.get(slug="test-provider") # Create Provider Networks -provider_networks = [{"name": "Test Provider Network", "provider": created_providers[0]}] +provider_networks = [{"name": "Test Provider Network", "provider": "Test Provider"}] created_provider_networks = make_nautobot_calls(nb.circuits.provider_networks, provider_networks) # Create Circuit Type From 24c16dd20abacbb6ce68feee3bcf627a7c5b4e3b Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Wed, 16 Nov 2022 19:44:41 -0600 Subject: [PATCH 09/25] Move to using test circuit 2 for provider_network test. --- .../targets/latest/tasks/circuit_termination.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/tests/integration/targets/latest/tasks/circuit_termination.yml b/tests/integration/targets/latest/tasks/circuit_termination.yml index 32fd045c..1b268a89 100644 --- a/tests/integration/targets/latest/tasks/circuit_termination.yml +++ b/tests/integration/targets/latest/tasks/circuit_termination.yml @@ -7,6 +7,7 @@ - set_fact: test_site: "{{ lookup('networktocode.nautobot.lookup', 'sites', api_endpoint=nautobot_url, token=nautobot_token, api_filter='slug=test-site') }}" circuit: '{{ lookup(''networktocode.nautobot.lookup'', ''circuits'', api_endpoint=nautobot_url, token=nautobot_token, api_filter=''cid="Test Circuit"'') }}' + circuit2: '{{ lookup(''networktocode.nautobot.lookup'', ''circuits'', api_endpoint=nautobot_url, token=nautobot_token, api_filter=''cid="Test Circuit Two"'') }}' - name: "PYNAUTOBOT_CIRCUIT_TERMINATION 1: Create provider within Nautobot with only required information" networktocode.nautobot.circuit_termination: @@ -104,22 +105,11 @@ - test_four['circuit_termination']['port_speed'] == 10000 - test_four['msg'] == "circuit_termination test_circuit_z created" -- name: "PYNAUTOBOT_CIRCUIT_TERMINATION 5: Disconnect previously connected Z Side" - networktocode.nautobot.circuit_termination: - url: "{{ nautobot_url }}" - token: "{{ nautobot_token }}" - circuit: Test Circuit - term_side: Z - site: "Test Site" - port_speed: 10000 - state: absent - register: test_five_disconnect - - name: "PYNAUTOBOT_CIRCUIT_TERMINATION 5: Create connection to provider_network within Nautobot with only required information" networktocode.nautobot.circuit_termination: url: "{{ nautobot_url }}" token: "{{ nautobot_token }}" - circuit: Test Circuit + circuit: Test Circuit Two term_side: Z provider_network: "Test Provider Network" port_speed: 10000 From aa719d771f7945e14c8fb9d1013cf4d889340a28 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 18 Nov 2022 12:52:23 -0600 Subject: [PATCH 10/25] Update tests/integration/targets/latest/tasks/circuit_termination.yml Co-authored-by: Joe Wesch <10467633+joewesch@users.noreply.github.com> --- tests/integration/targets/latest/tasks/circuit_termination.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/targets/latest/tasks/circuit_termination.yml b/tests/integration/targets/latest/tasks/circuit_termination.yml index 1b268a89..744ae2f8 100644 --- a/tests/integration/targets/latest/tasks/circuit_termination.yml +++ b/tests/integration/targets/latest/tasks/circuit_termination.yml @@ -111,7 +111,8 @@ token: "{{ nautobot_token }}" circuit: Test Circuit Two term_side: Z - provider_network: "Test Provider Network" + provider_network: + name: "Test Provider Network" port_speed: 10000 state: present register: test_five From 591ed5f1e038db6b6b1743fbf362f1159d30cb91 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 18 Nov 2022 13:48:11 -0600 Subject: [PATCH 11/25] Test Updates --- tests/integration/nautobot-populate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/nautobot-populate.py b/tests/integration/nautobot-populate.py index 5dda9dcb..6edfa870 100755 --- a/tests/integration/nautobot-populate.py +++ b/tests/integration/nautobot-populate.py @@ -376,7 +376,7 @@ def make_nautobot_calls(endpoint, payload): test_provider = nb.circuits.providers.get(slug="test-provider") # Create Provider Networks -provider_networks = [{"name": "Test Provider Network", "provider": "Test Provider"}] +provider_networks = [{"name": "Test Provider Network", "provider": test_provider.id}] created_provider_networks = make_nautobot_calls(nb.circuits.provider_networks, provider_networks) # Create Circuit Type From 47bc1f7005db170f103b578c260c1067898f5291 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 18 Nov 2022 13:57:49 -0600 Subject: [PATCH 12/25] Updates example for terminating to provider_network. --- plugins/modules/circuit_termination.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/modules/circuit_termination.py b/plugins/modules/circuit_termination.py index 817a1769..230f4cc3 100644 --- a/plugins/modules/circuit_termination.py +++ b/plugins/modules/circuit_termination.py @@ -140,7 +140,8 @@ token: thisIsMyToken circuit: Test Circuit term_side: Z - provider_network: Provider A + provider_network: + name: "Provider A" port_speed: 10000 state: present From 08208847a037ce2ffc93315031495f694d3a59f0 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 18 Nov 2022 14:28:25 -0600 Subject: [PATCH 13/25] Fix test condition var. --- tests/integration/targets/latest/tasks/circuit_termination.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/targets/latest/tasks/circuit_termination.yml b/tests/integration/targets/latest/tasks/circuit_termination.yml index 744ae2f8..895a91e6 100644 --- a/tests/integration/targets/latest/tasks/circuit_termination.yml +++ b/tests/integration/targets/latest/tasks/circuit_termination.yml @@ -123,7 +123,7 @@ - test_five is changed - test_five['diff']['before']['state'] == "absent" - test_five['diff']['after']['state'] == "present" - - test_five['circuit_termination']['circuit'] == circuit['key'] + - test_five['circuit_termination']['circuit'] == circuit2['key'] - test_five['circuit_termination']['term_side'] == "Z" - test_five['circuit_termination']['provider_network'] == "Test Provider Network" - test_five['circuit_termination']['port_speed'] == 10000 From 86f4b25c50639d56f6ac60d669dd33787ee276da Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 18 Nov 2022 17:22:33 -0600 Subject: [PATCH 14/25] Update key --- tests/integration/targets/latest/tasks/circuit_termination.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/targets/latest/tasks/circuit_termination.yml b/tests/integration/targets/latest/tasks/circuit_termination.yml index 895a91e6..71459ed8 100644 --- a/tests/integration/targets/latest/tasks/circuit_termination.yml +++ b/tests/integration/targets/latest/tasks/circuit_termination.yml @@ -125,7 +125,7 @@ - test_five['diff']['after']['state'] == "present" - test_five['circuit_termination']['circuit'] == circuit2['key'] - test_five['circuit_termination']['term_side'] == "Z" - - test_five['circuit_termination']['provider_network'] == "Test Provider Network" + - test_five['circuit_termination']['provider_network']['name'] == "Test Provider Network" - test_five['circuit_termination']['port_speed'] == 10000 - test_five['msg'] == "circuit_termination test_circuit_a created" From a81de69037dd4736896a49c7af3ee42b310c55f9 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 18 Nov 2022 17:59:43 -0600 Subject: [PATCH 15/25] Updates nautobot version --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index e2d02796..0b699b4f 100644 --- a/tasks.py +++ b/tasks.py @@ -24,7 +24,7 @@ def is_truthy(arg): namespace.configure( { "nautobot_ansible": { - "nautobot_ver": "1.2.10", + "nautobot_ver": "1.3.10", "project_name": "nautobot_ansible", "python_ver": "3.7", "local": False, From 5ad597d84f521da6da3aeb0918d103989ee851e1 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 18 Nov 2022 19:31:45 -0600 Subject: [PATCH 16/25] Update for debug. --- .../latest/tasks/circuit_termination.yml | 28 +++++++++++-------- 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/tests/integration/targets/latest/tasks/circuit_termination.yml b/tests/integration/targets/latest/tasks/circuit_termination.yml index 71459ed8..4f6586d1 100644 --- a/tests/integration/targets/latest/tasks/circuit_termination.yml +++ b/tests/integration/targets/latest/tasks/circuit_termination.yml @@ -117,6 +117,10 @@ state: present register: test_five +- name: "Debug Test Five output" + debug: + msg: "{{ test_five }}" + - name: "PYNAUTOBOT_CIRCUIT_TERMINATION 5: ASSERT - Necessary info creation" assert: that: @@ -129,25 +133,25 @@ - test_five['circuit_termination']['port_speed'] == 10000 - test_five['msg'] == "circuit_termination test_circuit_a created" -- name: "PYNAUTOBOT_CIRCUIT_TERMINATION 5: Delete provider within nautobot" +- name: "PYNAUTOBOT_CIRCUIT_TERMINATION 6: Delete provider within nautobot" networktocode.nautobot.circuit_termination: url: "{{ nautobot_url }}" token: "{{ nautobot_token }}" circuit: Test Circuit term_side: A state: absent - register: test_five + register: test_six - name: "PYNAUTOBOT_CIRCUIT_TERMINATION 5: ASSERT - Delete" assert: that: - - test_five is changed - - test_five['circuit_termination']['circuit'] == circuit['key'] - - test_five['circuit_termination']['term_side'] == "A" - - test_five['circuit_termination']['site'] == test_site['key'] - - test_five['circuit_termination']['port_speed'] == 10000 - - test_five['circuit_termination']['upstream_speed'] == 1000 - - test_five['circuit_termination']['xconnect_id'] == "10X100" - - test_five['circuit_termination']['pp_info'] == "PP10-24" - - test_five['circuit_termination']['description'] == "Test description" - - test_five['msg'] == "circuit_termination test_circuit_a deleted" + - test_six is changed + - test_six['circuit_termination']['circuit'] == circuit['key'] + - test_six['circuit_termination']['term_side'] == "A" + - test_six['circuit_termination']['site'] == test_site['key'] + - test_six['circuit_termination']['port_speed'] == 10000 + - test_six['circuit_termination']['upstream_speed'] == 1000 + - test_six['circuit_termination']['xconnect_id'] == "10X100" + - test_six['circuit_termination']['pp_info'] == "PP10-24" + - test_six['circuit_termination']['description'] == "Test description" + - test_six['msg'] == "circuit_termination test_circuit_a deleted" From 3a90250510127c1f109dd85c9c2fa137dee47a2e Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 18 Nov 2022 19:33:29 -0600 Subject: [PATCH 17/25] Bump test releases. --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d16aa20d..81273237 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,19 +53,19 @@ jobs: nautobot-version: "1.1.6" ansible-release: "base" # Ansible 2.10 - python-version: "3.8" - nautobot-version: "1.2" + nautobot-version: "1.3" ansible-release: "2.11" - python-version: "3.8" - nautobot-version: "1.2" + nautobot-version: "1.3" ansible-release: "2.9" - python-version: "3.8" - nautobot-version: "1.3" + nautobot-version: "1.4" ansible-release: "2.10" - python-version: "3.8" - nautobot-version: "1.3" + nautobot-version: "1.4" ansible-release: "2.12" - python-version: "3.8" - nautobot-version: "1.4" + nautobot-version: "1.5" ansible-release: "2.12" env: INVOKE_NAUTOBOT_ANSIBLE_PYTHON_VER: "${{ matrix.python-version }}" From 70d320e418b0ec76efce76e51633c90adf508efe Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 18 Nov 2022 20:47:51 -0600 Subject: [PATCH 18/25] Test updates --- .github/workflows/ci.yml | 4 ++-- .../integration/targets/latest/tasks/circuit_termination.yml | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 81273237..cc56263d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,8 +49,8 @@ jobs: # nautobot-version: ["1.0.3", "1.1.1"] # ansible-release: ["base", "core"] include: - - python-version: "3.7" - nautobot-version: "1.1.6" + - python-version: "3.8" + nautobot-version: "1.3" ansible-release: "base" # Ansible 2.10 - python-version: "3.8" nautobot-version: "1.3" diff --git a/tests/integration/targets/latest/tasks/circuit_termination.yml b/tests/integration/targets/latest/tasks/circuit_termination.yml index 4f6586d1..542d7f5a 100644 --- a/tests/integration/targets/latest/tasks/circuit_termination.yml +++ b/tests/integration/targets/latest/tasks/circuit_termination.yml @@ -8,6 +8,7 @@ test_site: "{{ lookup('networktocode.nautobot.lookup', 'sites', api_endpoint=nautobot_url, token=nautobot_token, api_filter='slug=test-site') }}" circuit: '{{ lookup(''networktocode.nautobot.lookup'', ''circuits'', api_endpoint=nautobot_url, token=nautobot_token, api_filter=''cid="Test Circuit"'') }}' circuit2: '{{ lookup(''networktocode.nautobot.lookup'', ''circuits'', api_endpoint=nautobot_url, token=nautobot_token, api_filter=''cid="Test Circuit Two"'') }}' + provider_network: '{{ lookup(''networktocode.nautobot.lookup'', ''provider_networks'', api_endpoint=nautobot_url, token=nautobot_token, api_filter=''name="Test Provider Network"'') }}' - name: "PYNAUTOBOT_CIRCUIT_TERMINATION 1: Create provider within Nautobot with only required information" networktocode.nautobot.circuit_termination: @@ -129,7 +130,7 @@ - test_five['diff']['after']['state'] == "present" - test_five['circuit_termination']['circuit'] == circuit2['key'] - test_five['circuit_termination']['term_side'] == "Z" - - test_five['circuit_termination']['provider_network']['name'] == "Test Provider Network" + - test_five['circuit_termination']['provider_network'] == provider_network['id'] - test_five['circuit_termination']['port_speed'] == 10000 - test_five['msg'] == "circuit_termination test_circuit_a created" From 045742d3ee0ebf11744c7146d73c4de6c67ee57f Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 18 Nov 2022 21:17:53 -0600 Subject: [PATCH 19/25] Adds provider_network lookup --- plugins/lookup/lookup.py | 1 + tests/integration/targets/latest/tasks/circuit_termination.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/lookup/lookup.py b/plugins/lookup/lookup.py index 2d458a84..4d34137f 100644 --- a/plugins/lookup/lookup.py +++ b/plugins/lookup/lookup.py @@ -186,6 +186,7 @@ def get_endpoint(nautobot, term): "power-port-templates": {"endpoint": nautobot.dcim.power_port_templates}, "power-ports": {"endpoint": nautobot.dcim.power_ports}, "prefixes": {"endpoint": nautobot.ipam.prefixes}, + "provider_networks": {"endpoint": nautobot.circuits.provider_networks}, "rack-groups": {"endpoint": nautobot.dcim.rack_groups}, "rack-reservations": {"endpoint": nautobot.dcim.rack_reservations}, "rack-roles": {"endpoint": nautobot.dcim.rack_roles}, diff --git a/tests/integration/targets/latest/tasks/circuit_termination.yml b/tests/integration/targets/latest/tasks/circuit_termination.yml index 542d7f5a..442752fe 100644 --- a/tests/integration/targets/latest/tasks/circuit_termination.yml +++ b/tests/integration/targets/latest/tasks/circuit_termination.yml @@ -130,7 +130,7 @@ - test_five['diff']['after']['state'] == "present" - test_five['circuit_termination']['circuit'] == circuit2['key'] - test_five['circuit_termination']['term_side'] == "Z" - - test_five['circuit_termination']['provider_network'] == provider_network['id'] + - test_five['circuit_termination']['provider_network'] == provider_network['key'] # Use Key as that is the ID - test_five['circuit_termination']['port_speed'] == 10000 - test_five['msg'] == "circuit_termination test_circuit_a created" From 8547b29c5f3febf4a4b47cbcae2963d786010c4a Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Fri, 18 Nov 2022 21:18:24 -0600 Subject: [PATCH 20/25] Update changelog --- CHANGELOG.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5b2ae685..33f32f3b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,6 +17,8 @@ Bugfixes - (#171) Add provider_network to circuit_termination module - (#172) Add description to manufacturer +- (#171) Drop testing for Python 3.6 & Python 3.7 (may still work, just no longer tested) +- (#171) Adds provider_networks to lookup plugin filter v4.1.1 ====== From b6bfb35bab2fd038ec0fcfece824662d4d19ee62 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Sat, 19 Nov 2022 07:40:39 -0600 Subject: [PATCH 21/25] Updates message. --- tests/integration/targets/latest/tasks/circuit_termination.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/targets/latest/tasks/circuit_termination.yml b/tests/integration/targets/latest/tasks/circuit_termination.yml index 442752fe..607b2b84 100644 --- a/tests/integration/targets/latest/tasks/circuit_termination.yml +++ b/tests/integration/targets/latest/tasks/circuit_termination.yml @@ -132,7 +132,7 @@ - test_five['circuit_termination']['term_side'] == "Z" - test_five['circuit_termination']['provider_network'] == provider_network['key'] # Use Key as that is the ID - test_five['circuit_termination']['port_speed'] == 10000 - - test_five['msg'] == "circuit_termination test_circuit_a created" + - test_five['msg'] == "circuit_termination test_circuit_two_z created" - name: "PYNAUTOBOT_CIRCUIT_TERMINATION 6: Delete provider within nautobot" networktocode.nautobot.circuit_termination: From 261122699da8aeb2928eddd38e15fea3d32aff7c Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Sat, 19 Nov 2022 12:58:17 -0600 Subject: [PATCH 22/25] Sets testing back to previous supported versions. --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc56263d..ff700cef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: integration: runs-on: "ubuntu-20.04" strategy: - fail-fast: true + fail-fast: false matrix: # Need to check what is needed for the integration step # python-version: ["3.6", "3.7", "3.8", "3.9"] @@ -51,7 +51,7 @@ jobs: include: - python-version: "3.8" nautobot-version: "1.3" - ansible-release: "base" # Ansible 2.10 + ansible-release: "base" # Ansible 2.10 - python-version: "3.8" nautobot-version: "1.3" ansible-release: "2.11" @@ -64,9 +64,9 @@ jobs: - python-version: "3.8" nautobot-version: "1.4" ansible-release: "2.12" - - python-version: "3.8" - nautobot-version: "1.5" - ansible-release: "2.12" + # - python-version: "3.8" + # nautobot-version: "1.5" + # ansible-release: "2.12" env: INVOKE_NAUTOBOT_ANSIBLE_PYTHON_VER: "${{ matrix.python-version }}" INVOKE_NAUTOBOT_ANSIBLE_NAUTOBOT_VER: "${{ matrix.nautobot-version }}" From d9b7bcbf70b28d41c3cce16531813c956cb5bb48 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Thu, 15 Dec 2022 11:47:19 -0600 Subject: [PATCH 23/25] Update tasks.py Co-authored-by: Joe Wesch <10467633+joewesch@users.noreply.github.com> --- tasks.py | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/tasks.py b/tasks.py index 0b699b4f..6ebf03fb 100644 --- a/tasks.py +++ b/tasks.py @@ -220,13 +220,14 @@ def integration(context): ) -@task -def galaxy_build(context): +@task( + help={ + "force": "Force the build command to create a new collection, overwriting any existing files.", + }, +) +def galaxy_build(context, force=False): """Build the collection.""" - context.run("ansible-galaxy collection build .") - - -@task -def galaxy_build_force(context): - """Force build the collection.""" - context.run("ansible-galaxy collection build . --force") + command = "ansible-galaxy collection build ." + if force: + command += " --force" + context.run(command) From 25ac6f5439d39f1be212ac953b5ab5457ab81972 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Dec 2022 01:45:49 +0000 Subject: [PATCH 24/25] Bump cryptography from 37.0.4 to 38.0.3 Bumps [cryptography](https://github.com/pyca/cryptography) from 37.0.4 to 38.0.3. - [Release notes](https://github.com/pyca/cryptography/releases) - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pyca/cryptography/compare/37.0.4...38.0.3) --- updated-dependencies: - dependency-name: cryptography dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- poetry.lock | 96 ++++++++++++++++++++++++++++++++++------------------- 1 file changed, 62 insertions(+), 34 deletions(-) diff --git a/poetry.lock b/poetry.lock index 5d92c540..04125a5f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -38,7 +38,7 @@ typing-extensions = {version = ">=3.7.4", markers = "python_version < \"3.8\""} yarl = ">=1.0,<2.0" [package.extras] -speedups = ["aiodns", "brotli", "cchardet"] +speedups = ["Brotli", "aiodns", "cchardet"] [[package]] name = "aiosignal" @@ -163,6 +163,7 @@ python-versions = ">=3.6.2" [package.dependencies] lazy-object-proxy = ">=1.4.0" +setuptools = ">=20.0" typed-ast = {version = ">=1.4.0,<2.0", markers = "implementation_name == \"cpython\" and python_version < \"3.8\""} typing-extensions = {version = ">=3.10", markers = "python_version < \"3.10\""} wrapt = ">=1.11,<2" @@ -214,7 +215,7 @@ python-versions = ">=3.5" dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy (>=0.900,!=0.940)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "sphinx", "sphinx-notfound-page", "zope.interface"] docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"] tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "zope.interface"] -tests_no_zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"] +tests-no-zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"] [[package]] name = "babel" @@ -259,7 +260,7 @@ tomli = ">=0.2.6,<2.0.0" typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\" and implementation_name == \"cpython\""} typing-extensions = [ {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}, - {version = "!=3.10.0.1", markers = "python_version >= \"3.10\""}, + {version = ">=3.10.0.0,<3.10.0.1 || >3.10.0.1", markers = "python_version >= \"3.10\""}, ] [package.extras] @@ -297,7 +298,7 @@ optional = false python-versions = ">=3.5.0" [package.extras] -unicode_backport = ["unicodedata2"] +unicode-backport = ["unicodedata2"] [[package]] name = "click" @@ -352,7 +353,7 @@ python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4" [[package]] name = "cryptography" -version = "37.0.4" +version = "38.0.3" description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." category = "main" optional = false @@ -365,7 +366,7 @@ cffi = ">=1.12" docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"] docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"] -sdist = ["setuptools_rust (>=0.11.4)"] +sdist = ["setuptools-rust (>=0.11.4)"] ssh = ["bcrypt (>=3.1.5)"] test = ["hypothesis (>=1.11.4,!=3.79.2)", "iso8601", "pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-subtests", "pytest-xdist", "pytz"] @@ -548,9 +549,9 @@ python-versions = ">=3.6.1,<4.0" [package.extras] colors = ["colorama (>=0.4.3,<0.5.0)"] -pipfile_deprecated_finder = ["pipreqs", "requirementslib"] +pipfile-deprecated-finder = ["pipreqs", "requirementslib"] plugins = ["setuptools"] -requirements_deprecated_finder = ["pip-api", "pipreqs"] +requirements-deprecated-finder = ["pip-api", "pipreqs"] [[package]] name = "jinja2" @@ -914,7 +915,7 @@ urllib3 = ">=1.21.1,<1.27" [package.extras] socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] -use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<5)"] [[package]] name = "rstcheck" @@ -936,8 +937,20 @@ optional = false python-versions = ">=2.7" [package.extras] -dev = ["Django (>=1.11)", "check-manifest", "colorama (<=0.4.1)", "coverage", "flake8", "nose2", "readme-renderer (<25.0)", "tox", "wheel", "zest.releaser"] -doc = ["sphinx", "sphinx-rtd-theme"] +dev = ["Django (>=1.11)", "check-manifest", "colorama (<=0.4.1)", "coverage", "flake8", "nose2", "readme-renderer (<25.0)", "tox", "wheel", "zest.releaser[recommended]"] +doc = ["Sphinx", "sphinx-rtd-theme"] + +[[package]] +name = "setuptools" +version = "59.6.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.extras] +docs = ["furo", "jaraco.packaging (>=8.2)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx", "sphinx-inline-tabs", "sphinxcontrib-towncrier"] +testing = ["flake8-2020", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mock", "paver", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy", "pytest-virtualenv (>=1.2.7)", "pytest-xdist", "sphinx", "virtualenv (>=13.0.0)", "wheel"] [[package]] name = "sh" @@ -997,6 +1010,7 @@ Jinja2 = ">=2.3" packaging = "*" Pygments = ">=2.0" requests = ">=2.5.0" +setuptools = "*" snowballstemmer = ">=1.1" sphinxcontrib-applehelp = "*" sphinxcontrib-devhelp = "*" @@ -1431,7 +1445,6 @@ click = [ ] codecov = [ {file = "codecov-2.1.12-py2.py3-none-any.whl", hash = "sha256:585dc217dc3d8185198ceb402f85d5cb5dbfa0c5f350a5abcdf9e347776a5b47"}, - {file = "codecov-2.1.12-py3.8.egg", hash = "sha256:782a8e5352f22593cbc5427a35320b99490eb24d9dcfa2155fd99d2b75cfb635"}, {file = "codecov-2.1.12.tar.gz", hash = "sha256:a0da46bb5025426da895af90938def8ee12d37fcbcbbbc15b6dc64cf7ebc51c1"}, ] colorama = [ @@ -1476,28 +1489,32 @@ coverage = [ {file = "coverage-4.5.4.tar.gz", hash = "sha256:e07d9f1a23e9e93ab5c62902833bf3e4b1f65502927379148b6622686223125c"}, ] cryptography = [ - {file = "cryptography-37.0.4-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:549153378611c0cca1042f20fd9c5030d37a72f634c9326e225c9f666d472884"}, - {file = "cryptography-37.0.4-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:a958c52505c8adf0d3822703078580d2c0456dd1d27fabfb6f76fe63d2971cd6"}, - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f721d1885ecae9078c3f6bbe8a88bc0786b6e749bf32ccec1ef2b18929a05046"}, - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:3d41b965b3380f10e4611dbae366f6dc3cefc7c9ac4e8842a806b9672ae9add5"}, - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:80f49023dd13ba35f7c34072fa17f604d2f19bf0989f292cedf7ab5770b87a0b"}, - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f2dcb0b3b63afb6df7fd94ec6fbddac81b5492513f7b0436210d390c14d46ee8"}, - {file = "cryptography-37.0.4-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:b7f8dd0d4c1f21759695c05a5ec8536c12f31611541f8904083f3dc582604280"}, - {file = "cryptography-37.0.4-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:30788e070800fec9bbcf9faa71ea6d8068f5136f60029759fd8c3efec3c9dcb3"}, - {file = "cryptography-37.0.4-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:190f82f3e87033821828f60787cfa42bff98404483577b591429ed99bed39d59"}, - {file = "cryptography-37.0.4-cp36-abi3-win32.whl", hash = "sha256:b62439d7cd1222f3da897e9a9fe53bbf5c104fff4d60893ad1355d4c14a24157"}, - {file = "cryptography-37.0.4-cp36-abi3-win_amd64.whl", hash = "sha256:f7a6de3e98771e183645181b3627e2563dcde3ce94a9e42a3f427d2255190327"}, - {file = "cryptography-37.0.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bc95ed67b6741b2607298f9ea4932ff157e570ef456ef7ff0ef4884a134cc4b"}, - {file = "cryptography-37.0.4-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:f8c0a6e9e1dd3eb0414ba320f85da6b0dcbd543126e30fcc546e7372a7fbf3b9"}, - {file = "cryptography-37.0.4-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:e007f052ed10cc316df59bc90fbb7ff7950d7e2919c9757fd42a2b8ecf8a5f67"}, - {file = "cryptography-37.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bc997818309f56c0038a33b8da5c0bfbb3f1f067f315f9abd6fc07ad359398d"}, - {file = "cryptography-37.0.4-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:d204833f3c8a33bbe11eda63a54b1aad7aa7456ed769a982f21ec599ba5fa282"}, - {file = "cryptography-37.0.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:75976c217f10d48a8b5a8de3d70c454c249e4b91851f6838a4e48b8f41eb71aa"}, - {file = "cryptography-37.0.4-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:7099a8d55cd49b737ffc99c17de504f2257e3787e02abe6d1a6d136574873441"}, - {file = "cryptography-37.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2be53f9f5505673eeda5f2736bea736c40f051a739bfae2f92d18aed1eb54596"}, - {file = "cryptography-37.0.4-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:91ce48d35f4e3d3f1d83e29ef4a9267246e6a3be51864a5b7d2247d5086fa99a"}, - {file = "cryptography-37.0.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4c590ec31550a724ef893c50f9a97a0c14e9c851c85621c5650d699a7b88f7ab"}, - {file = "cryptography-37.0.4.tar.gz", hash = "sha256:63f9c17c0e2474ccbebc9302ce2f07b55b3b3fcb211ded18a42d5764f5c10a82"}, + {file = "cryptography-38.0.3-cp36-abi3-macosx_10_10_universal2.whl", hash = "sha256:984fe150f350a3c91e84de405fe49e688aa6092b3525f407a18b9646f6612320"}, + {file = "cryptography-38.0.3-cp36-abi3-macosx_10_10_x86_64.whl", hash = "sha256:ed7b00096790213e09eb11c97cc6e2b757f15f3d2f85833cd2d3ec3fe37c1722"}, + {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:bbf203f1a814007ce24bd4d51362991d5cb90ba0c177a9c08825f2cc304d871f"}, + {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:554bec92ee7d1e9d10ded2f7e92a5d70c1f74ba9524947c0ba0c850c7b011828"}, + {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1b52c9e5f8aa2b802d48bd693190341fae201ea51c7a167d69fc48b60e8a959"}, + {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_24_x86_64.whl", hash = "sha256:728f2694fa743a996d7784a6194da430f197d5c58e2f4e278612b359f455e4a2"}, + {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:dfb4f4dd568de1b6af9f4cda334adf7d72cf5bc052516e1b2608b683375dd95c"}, + {file = "cryptography-38.0.3-cp36-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:5419a127426084933076132d317911e3c6eb77568a1ce23c3ac1e12d111e61e0"}, + {file = "cryptography-38.0.3-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:9b24bcff7853ed18a63cfb0c2b008936a9554af24af2fb146e16d8e1aed75748"}, + {file = "cryptography-38.0.3-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:25c1d1f19729fb09d42e06b4bf9895212292cb27bb50229f5aa64d039ab29146"}, + {file = "cryptography-38.0.3-cp36-abi3-win32.whl", hash = "sha256:7f836217000342d448e1c9a342e9163149e45d5b5eca76a30e84503a5a96cab0"}, + {file = "cryptography-38.0.3-cp36-abi3-win_amd64.whl", hash = "sha256:c46837ea467ed1efea562bbeb543994c2d1f6e800785bd5a2c98bc096f5cb220"}, + {file = "cryptography-38.0.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06fc3cc7b6f6cca87bd56ec80a580c88f1da5306f505876a71c8cfa7050257dd"}, + {file = "cryptography-38.0.3-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:65535bc550b70bd6271984d9863a37741352b4aad6fb1b3344a54e6950249b55"}, + {file = "cryptography-38.0.3-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:5e89468fbd2fcd733b5899333bc54d0d06c80e04cd23d8c6f3e0542358c6060b"}, + {file = "cryptography-38.0.3-pp38-pypy38_pp73-macosx_10_10_x86_64.whl", hash = "sha256:6ab9516b85bebe7aa83f309bacc5f44a61eeb90d0b4ec125d2d003ce41932d36"}, + {file = "cryptography-38.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:068147f32fa662c81aebab95c74679b401b12b57494872886eb5c1139250ec5d"}, + {file = "cryptography-38.0.3-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:402852a0aea73833d982cabb6d0c3bb582c15483d29fb7085ef2c42bfa7e38d7"}, + {file = "cryptography-38.0.3-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:b1b35d9d3a65542ed2e9d90115dfd16bbc027b3f07ee3304fc83580f26e43249"}, + {file = "cryptography-38.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:6addc3b6d593cd980989261dc1cce38263c76954d758c3c94de51f1e010c9a50"}, + {file = "cryptography-38.0.3-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:be243c7e2bfcf6cc4cb350c0d5cdf15ca6383bbcb2a8ef51d3c9411a9d4386f0"}, + {file = "cryptography-38.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78cf5eefac2b52c10398a42765bfa981ce2372cbc0457e6bf9658f41ec3c41d8"}, + {file = "cryptography-38.0.3-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:4e269dcd9b102c5a3d72be3c45d8ce20377b8076a43cbed6f660a1afe365e436"}, + {file = "cryptography-38.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:8d41a46251bf0634e21fac50ffd643216ccecfaf3701a063257fe0b2be1b6548"}, + {file = "cryptography-38.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:785e4056b5a8b28f05a533fab69febf5004458e20dad7e2e13a3120d8ecec75a"}, + {file = "cryptography-38.0.3.tar.gz", hash = "sha256:bfbe6ee19615b07a98b1d2287d6a6073f734735b49ee45b11324d85efc4d5cbd"}, ] dataclasses = [ {file = "dataclasses-0.8-py3-none-any.whl", hash = "sha256:0201d89fa866f68c8ebd9d08ee6ff50c0b255f8ec63a71c16fda7af82bb887bf"}, @@ -2012,6 +2029,13 @@ pyyaml = [ {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, @@ -2051,6 +2075,10 @@ semantic-version = [ {file = "semantic_version-2.10.0-py2.py3-none-any.whl", hash = "sha256:de78a3b8e0feda74cabc54aab2da702113e33ac9d9eb9d2389bcf1f58b7d9177"}, {file = "semantic_version-2.10.0.tar.gz", hash = "sha256:bdabb6d336998cbb378d4b9db3a4b56a1e3235701dc05ea2690d9a997ed5041c"}, ] +setuptools = [ + {file = "setuptools-59.6.0-py3-none-any.whl", hash = "sha256:4ce92f1e1f8f01233ee9952c04f6b81d1e02939d6e1b488428154974a4d0783e"}, + {file = "setuptools-59.6.0.tar.gz", hash = "sha256:22c7348c6d2976a52632c67f7ab0cdf40147db7789f9aed18734643fe9cf3373"}, +] sh = [ {file = "sh-1.14.3.tar.gz", hash = "sha256:e4045b6c732d9ce75d571c79f5ac2234edd9ae4f5fa9d59b09705082bdca18c7"}, ] From ced6b0b135588cbede0ec4871914b186c3eb4e8d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Dec 2022 01:46:11 +0000 Subject: [PATCH 25/25] Bump certifi from 2022.6.15 to 2022.12.7 Bumps [certifi](https://github.com/certifi/python-certifi) from 2022.6.15 to 2022.12.7. - [Release notes](https://github.com/certifi/python-certifi/releases) - [Commits](https://github.com/certifi/python-certifi/compare/2022.06.15...2022.12.07) --- updated-dependencies: - dependency-name: certifi dependency-type: indirect ... Signed-off-by: dependabot[bot] --- poetry.lock | 52 ++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 38 insertions(+), 14 deletions(-) diff --git a/poetry.lock b/poetry.lock index 5d92c540..88e1e7d5 100644 --- a/poetry.lock +++ b/poetry.lock @@ -38,7 +38,7 @@ typing-extensions = {version = ">=3.7.4", markers = "python_version < \"3.8\""} yarl = ">=1.0,<2.0" [package.extras] -speedups = ["aiodns", "brotli", "cchardet"] +speedups = ["Brotli", "aiodns", "cchardet"] [[package]] name = "aiosignal" @@ -163,6 +163,7 @@ python-versions = ">=3.6.2" [package.dependencies] lazy-object-proxy = ">=1.4.0" +setuptools = ">=20.0" typed-ast = {version = ">=1.4.0,<2.0", markers = "implementation_name == \"cpython\" and python_version < \"3.8\""} typing-extensions = {version = ">=3.10", markers = "python_version < \"3.10\""} wrapt = ">=1.11,<2" @@ -214,7 +215,7 @@ python-versions = ">=3.5" dev = ["cloudpickle", "coverage[toml] (>=5.0.2)", "furo", "hypothesis", "mypy (>=0.900,!=0.940)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "sphinx", "sphinx-notfound-page", "zope.interface"] docs = ["furo", "sphinx", "sphinx-notfound-page", "zope.interface"] tests = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "zope.interface"] -tests_no_zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"] +tests-no-zope = ["cloudpickle", "coverage[toml] (>=5.0.2)", "hypothesis", "mypy (>=0.900,!=0.940)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins"] [[package]] name = "babel" @@ -259,7 +260,7 @@ tomli = ">=0.2.6,<2.0.0" typed-ast = {version = ">=1.4.2", markers = "python_version < \"3.8\" and implementation_name == \"cpython\""} typing-extensions = [ {version = ">=3.10.0.0", markers = "python_version < \"3.10\""}, - {version = "!=3.10.0.1", markers = "python_version >= \"3.10\""}, + {version = ">=3.10.0.0,<3.10.0.1 || >3.10.0.1", markers = "python_version >= \"3.10\""}, ] [package.extras] @@ -271,7 +272,7 @@ uvloop = ["uvloop (>=0.15.2)"] [[package]] name = "certifi" -version = "2022.6.15" +version = "2022.12.7" description = "Python package for providing Mozilla's CA Bundle." category = "main" optional = false @@ -297,7 +298,7 @@ optional = false python-versions = ">=3.5.0" [package.extras] -unicode_backport = ["unicodedata2"] +unicode-backport = ["unicodedata2"] [[package]] name = "click" @@ -362,7 +363,7 @@ python-versions = ">=3.6" cffi = ">=1.12" [package.extras] -docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx-rtd-theme"] +docs = ["sphinx (>=1.6.5,!=1.8.0,!=3.1.0,!=3.1.1)", "sphinx_rtd_theme"] docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] pep8test = ["black", "flake8", "flake8-import-order", "pep8-naming"] sdist = ["setuptools_rust (>=0.11.4)"] @@ -548,9 +549,9 @@ python-versions = ">=3.6.1,<4.0" [package.extras] colors = ["colorama (>=0.4.3,<0.5.0)"] -pipfile_deprecated_finder = ["pipreqs", "requirementslib"] +pipfile-deprecated-finder = ["pipreqs", "requirementslib"] plugins = ["setuptools"] -requirements_deprecated_finder = ["pip-api", "pipreqs"] +requirements-deprecated-finder = ["pip-api", "pipreqs"] [[package]] name = "jinja2" @@ -914,7 +915,7 @@ urllib3 = ">=1.21.1,<1.27" [package.extras] socks = ["PySocks (>=1.5.6,!=1.5.7)", "win-inet-pton"] -use_chardet_on_py3 = ["chardet (>=3.0.2,<5)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<5)"] [[package]] name = "rstcheck" @@ -936,8 +937,20 @@ optional = false python-versions = ">=2.7" [package.extras] -dev = ["Django (>=1.11)", "check-manifest", "colorama (<=0.4.1)", "coverage", "flake8", "nose2", "readme-renderer (<25.0)", "tox", "wheel", "zest.releaser"] -doc = ["sphinx", "sphinx-rtd-theme"] +dev = ["Django (>=1.11)", "check-manifest", "colorama (<=0.4.1)", "coverage", "flake8", "nose2", "readme-renderer (<25.0)", "tox", "wheel", "zest.releaser[recommended]"] +doc = ["Sphinx", "sphinx-rtd-theme"] + +[[package]] +name = "setuptools" +version = "59.6.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "dev" +optional = false +python-versions = ">=3.6" + +[package.extras] +docs = ["furo", "jaraco.packaging (>=8.2)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx", "sphinx-inline-tabs", "sphinxcontrib-towncrier"] +testing = ["flake8-2020", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "mock", "paver", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.0.1)", "pytest-flake8", "pytest-mypy", "pytest-virtualenv (>=1.2.7)", "pytest-xdist", "sphinx", "virtualenv (>=13.0.0)", "wheel"] [[package]] name = "sh" @@ -997,6 +1010,7 @@ Jinja2 = ">=2.3" packaging = "*" Pygments = ">=2.0" requests = ">=2.5.0" +setuptools = "*" snowballstemmer = ">=1.1" sphinxcontrib-applehelp = "*" sphinxcontrib-devhelp = "*" @@ -1352,8 +1366,8 @@ black = [ {file = "black-21.12b0.tar.gz", hash = "sha256:77b80f693a569e2e527958459634f18df9b0ba2625ba4e0c2d5da5be42e6f2b3"}, ] certifi = [ - {file = "certifi-2022.6.15-py3-none-any.whl", hash = "sha256:fe86415d55e84719d75f8b69414f6438ac3547d2078ab91b67e779ef69378412"}, - {file = "certifi-2022.6.15.tar.gz", hash = "sha256:84c85a9078b11105f04f3036a9482ae10e4621616db313fe045dd24743a0820d"}, + {file = "certifi-2022.12.7-py3-none-any.whl", hash = "sha256:4ad3232f5e926d6718ec31cfc1fcadfde020920e278684144551c91769c7bc18"}, + {file = "certifi-2022.12.7.tar.gz", hash = "sha256:35824b4c3a97115964b408844d64aa14db1cc518f6562e8d7261699d1350a9e3"}, ] cffi = [ {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, @@ -1431,7 +1445,6 @@ click = [ ] codecov = [ {file = "codecov-2.1.12-py2.py3-none-any.whl", hash = "sha256:585dc217dc3d8185198ceb402f85d5cb5dbfa0c5f350a5abcdf9e347776a5b47"}, - {file = "codecov-2.1.12-py3.8.egg", hash = "sha256:782a8e5352f22593cbc5427a35320b99490eb24d9dcfa2155fd99d2b75cfb635"}, {file = "codecov-2.1.12.tar.gz", hash = "sha256:a0da46bb5025426da895af90938def8ee12d37fcbcbbbc15b6dc64cf7ebc51c1"}, ] colorama = [ @@ -2012,6 +2025,13 @@ pyyaml = [ {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, + {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, + {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, + {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, + {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, @@ -2051,6 +2071,10 @@ semantic-version = [ {file = "semantic_version-2.10.0-py2.py3-none-any.whl", hash = "sha256:de78a3b8e0feda74cabc54aab2da702113e33ac9d9eb9d2389bcf1f58b7d9177"}, {file = "semantic_version-2.10.0.tar.gz", hash = "sha256:bdabb6d336998cbb378d4b9db3a4b56a1e3235701dc05ea2690d9a997ed5041c"}, ] +setuptools = [ + {file = "setuptools-59.6.0-py3-none-any.whl", hash = "sha256:4ce92f1e1f8f01233ee9952c04f6b81d1e02939d6e1b488428154974a4d0783e"}, + {file = "setuptools-59.6.0.tar.gz", hash = "sha256:22c7348c6d2976a52632c67f7ab0cdf40147db7789f9aed18734643fe9cf3373"}, +] sh = [ {file = "sh-1.14.3.tar.gz", hash = "sha256:e4045b6c732d9ce75d571c79f5ac2234edd9ae4f5fa9d59b09705082bdca18c7"}, ]