forked from Icinga/icinga-powershell-mssql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icinga-powershell-mssql.psd1
43 lines (43 loc) · 1.98 KB
/
icinga-powershell-mssql.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@{
ModuleVersion = '1.3.0'
GUID = '8441b44a-e105-42b7-82c9-8ecf69c13b8b'
# ModuleToProcess = 'icinga-powershell-mssql.psm1'
Author = 'Lord Hepipud, pdorschner'
CompanyName = 'Icinga GmbH'
Copyright = '(c) 2021 Icinga GmbH | GPLv2'
Description = 'A collection of Icinga PowerShell MSSQL plugins for the Icinga PowerShell Framework'
PowerShellVersion = '4.0'
RequiredModules = @(
@{ModuleName = 'icinga-powershell-framework'; ModuleVersion = '1.5.0' },
@{ModuleName = 'icinga-powershell-plugins'; ModuleVersion = '1.5.0' }
)
NestedModules = @(
'.\plugins\Invoke-IcingaCheckMSSQLBackupStatus.psm1',
'.\plugins\Invoke-IcingaCheckMSSQLHealth.psm1',
'.\plugins\Invoke-IcingaCheckMSSQLPerfCounter.psm1',
'.\plugins\Invoke-IcingaCheckMSSQLResource.psm1',
'.\provider\enums\Icinga_MSSQLProviderEnums.psm1',
'.\provider\mssql\Get-IcingaMSSQLBackupOverallStatus.psm1',
'.\provider\mssql\Get-IcingaMSSQLPerfCounterNameFromDBObject.psm1',
'.\provider\mssql\Get-IcingaMSSQLPerfCounterPathFromDBObject.psm1',
'.\provider\mssql\Get-IcingaMSSQLPerformanceCounter.psm1'
)
FunctionsToExport = @('*')
CmdletsToExport = @('*')
VariablesToExport = '*'
AliasesToExport = @()
PrivateData = @{
PSData = @{
Tags = @( 'icinga', 'icinga2', 'mssqlplugins', 'icingamssql', 'icinga2mssql', 'icingawindows')
LicenseUri = 'https://github.com/Icinga/icinga-powershell-mssql/blob/master/LICENSE'
ProjectUri = 'https://github.com/Icinga/icinga-powershell-mssql'
ReleaseNotes = 'https://github.com/Icinga/icinga-powershell-mssql/releases'
};
Version = 'v1.3.0';
Name = 'Windows MSSQL';
Type = 'plugins';
Function = '';
Endpoint = '';
}
HelpInfoURI = 'https://github.com/Icinga/icinga-powershell-mssql'
}