From 1ca24225c06234f9535a466ee4ae73767f1d2e5b Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Tue, 11 May 2021 10:47:23 -0500 Subject: [PATCH 1/2] adds label to intf --- plugins/modules/device_interface.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/modules/device_interface.py b/plugins/modules/device_interface.py index 03aab6b6..7f14a14e 100644 --- a/plugins/modules/device_interface.py +++ b/plugins/modules/device_interface.py @@ -51,6 +51,11 @@ - Name of the interface to be created required: true type: str + label: + description: + - Physical label of the interface + required: false + type: str type: description: - | @@ -258,6 +263,7 @@ def main(): options=dict( device=dict(required=False, type="raw"), name=dict(required=True, type="str"), + label=dict(required=False, type="str"), type=dict(required=False, type="str"), enabled=dict(required=False, type="bool"), lag=dict(required=False, type="raw"), From 50b973eb8fe9ee8e93599e2d64ba1cb4dfaca806 Mon Sep 17 00:00:00 2001 From: Josh VanDeraa Date: Thu, 13 May 2021 21:17:32 -0500 Subject: [PATCH 2/2] Updates galaxy.yml to 2.0.1 --- galaxy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy.yml b/galaxy.yml index 820b47d3..5bad6709 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: 2.0.0 +version: 2.0.1 # The path to the Markdown (.md) readme file. This path is relative to the root of the collection readme: README.md