We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6560f05 commit 2481548Copy full SHA for 2481548
plugins/modules/netbox_power_port.py
@@ -41,6 +41,11 @@
41
- The name of the power port
42
required: true
43
type: str
44
+ label:
45
+ description:
46
+ - The label of the power port
47
+ required: false
48
+ type: str
49
type:
50
description:
51
- The type of the power port
@@ -244,6 +249,7 @@ def main():
244
249
options=dict(
245
250
device=dict(required=True, type="raw"),
246
251
name=dict(required=True, type="str"),
252
+ label=dict(required=False, type="str"),
247
253
type=dict(
248
254
required=False,
255
choices=[
0 commit comments