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 48020cf commit 38d616dCopy full SHA for 38d616d
plugins/modules/netbox_power_outlet.py
@@ -41,6 +41,11 @@
41
- The name of the power outlet
42
required: true
43
type: str
44
+ label:
45
+ description:
46
+ - The label of the power outlet
47
+ required: false
48
+ type: str
49
type:
50
description:
51
- The type of the power outlet
@@ -202,6 +207,7 @@ def main():
202
207
options=dict(
203
208
device=dict(required=True, type="raw"),
204
209
name=dict(required=True, type="str"),
210
+ label=dict(required=False, type="str"),
205
211
type=dict(
206
212
required=False,
213
choices=[
0 commit comments