icinga-powershell-mssql.psd1
@{ ModuleVersion = '1.0.1' GUID = '8441b44a-e105-42b7-82c9-8ecf69c13b8b' # ModuleToProcess = 'icinga-powershell-mssql.psm1' Author = 'Lord Hepipud, pdorschner' CompanyName = 'Icinga GmbH' Copyright = '(c) 2020 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.2.0' }, @{ModuleName = 'icinga-powershell-plugins'; ModuleVersion = '1.2.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.0.1'; } HelpInfoURI = 'https://github.com/Icinga/icinga-powershell-mssql' } |