mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-20 23:00:35 -05:00
Added missing description for documented plugin arguments
This commit is contained in:
parent
4b8f73afb0
commit
d7c1e27f84
1 changed files with 5 additions and 5 deletions
|
|
@ -281,7 +281,7 @@ function Get-IcingaCheckCommandConfig()
|
||||||
'0', @{
|
'0', @{
|
||||||
'varname' = 'PowerShell_switch_NoPerfData';
|
'varname' = 'PowerShell_switch_NoPerfData';
|
||||||
'caption' = 'NoPerfData';
|
'caption' = 'NoPerfData';
|
||||||
'description' = $NULL;
|
'description' = 'Specifies if the plugin will return performance data output or not';
|
||||||
'datatype' = 'Icinga\\Module\\Director\\DataType\\DataTypeDatalist';
|
'datatype' = 'Icinga\\Module\\Director\\DataType\\DataTypeDatalist';
|
||||||
'format' = $NULL;
|
'format' = $NULL;
|
||||||
'originalId' = '0';
|
'originalId' = '0';
|
||||||
|
|
@ -299,7 +299,7 @@ function Get-IcingaCheckCommandConfig()
|
||||||
'1', @{
|
'1', @{
|
||||||
'varname' = 'PowerShell_switch_NoPerfData';
|
'varname' = 'PowerShell_switch_NoPerfData';
|
||||||
'caption' = 'Verbose';
|
'caption' = 'Verbose';
|
||||||
'description' = $NULL;
|
'description' = 'Specifies if the plugin will return performance data output or not';
|
||||||
'datatype' = 'Icinga\\Module\\Director\\DataType\\DataTypeString';
|
'datatype' = 'Icinga\\Module\\Director\\DataType\\DataTypeString';
|
||||||
'format' = $NULL;
|
'format' = $NULL;
|
||||||
'originalId' = '1';
|
'originalId' = '1';
|
||||||
|
|
@ -320,7 +320,7 @@ function Get-IcingaCheckCommandConfig()
|
||||||
[string]$FieldID, @{
|
[string]$FieldID, @{
|
||||||
'varname' = $IcingaCustomVariable;
|
'varname' = $IcingaCustomVariable;
|
||||||
'caption' = $parameter.Name;
|
'caption' = $parameter.Name;
|
||||||
'description' = $NULL;
|
'description' = $parameter.Description.Text;
|
||||||
'datatype' = $IcingaDataType;
|
'datatype' = $IcingaDataType;
|
||||||
'format' = $NULL;
|
'format' = $NULL;
|
||||||
'originalId' = [string]$FieldID;
|
'originalId' = [string]$FieldID;
|
||||||
|
|
@ -377,7 +377,7 @@ function Get-IcingaCheckCommandConfig()
|
||||||
[string]$FieldID, @{
|
[string]$FieldID, @{
|
||||||
'varname' = 'PowerShell_Object_Verbose';
|
'varname' = 'PowerShell_Object_Verbose';
|
||||||
'caption' = 'Verbose';
|
'caption' = 'Verbose';
|
||||||
'description' = $NULL;
|
'description' = 'Increase the plugin output for more information on the received result.';
|
||||||
'datatype' = 'Icinga\Module\Director\DataType\DataTypeDatalist';
|
'datatype' = 'Icinga\Module\Director\DataType\DataTypeDatalist';
|
||||||
'format' = $NULL;
|
'format' = $NULL;
|
||||||
'originalId' = [string]$FieldID;
|
'originalId' = [string]$FieldID;
|
||||||
|
|
@ -407,7 +407,7 @@ function Get-IcingaCheckCommandConfig()
|
||||||
[string]$FieldID, @{
|
[string]$FieldID, @{
|
||||||
'varname' = 'PowerShell_switch_NoPerfData';
|
'varname' = 'PowerShell_switch_NoPerfData';
|
||||||
'caption' = 'Perf Data';
|
'caption' = 'Perf Data';
|
||||||
'description' = $NULL;
|
'description' = 'Specifies if the plugin will return performance data output or not';
|
||||||
'datatype' = 'Icinga\Module\Director\DataType\DataTypeDatalist';
|
'datatype' = 'Icinga\Module\Director\DataType\DataTypeDatalist';
|
||||||
'format' = $NULL;
|
'format' = $NULL;
|
||||||
'originalId' = [string]$FieldID;
|
'originalId' = [string]$FieldID;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue