2018-11-06 11:14:49 -05:00
|
|
|
@{
|
2020-08-04 09:13:04 -04:00
|
|
|
RootModule = 'icinga-powershell-framework.psm1'
|
2021-06-02 07:39:26 -04:00
|
|
|
ModuleVersion = '1.6.0'
|
2020-08-04 09:13:04 -04:00
|
|
|
GUID = 'fcd7a805-a41b-49f9-afee-9d17a2b76d42'
|
|
|
|
|
Author = 'Lord Hepipud'
|
|
|
|
|
CompanyName = 'Icinga GmbH'
|
2021-02-19 04:09:42 -05:00
|
|
|
Copyright = '(c) 2021 Icinga GmbH | MIT'
|
2020-08-04 09:13:04 -04:00
|
|
|
Description = 'Icinga for Windows module which allows to entirely monitor the Windows Host system.'
|
2019-11-03 09:54:01 -05:00
|
|
|
PowerShellVersion = '4.0'
|
2020-11-04 03:20:19 -05:00
|
|
|
NestedModules = @(
|
2021-08-06 09:44:31 -04:00
|
|
|
'.\cache\framework_cache.psm1'
|
2020-11-04 03:20:19 -05:00
|
|
|
)
|
2020-08-04 06:39:25 -04:00
|
|
|
FunctionsToExport = @(
|
|
|
|
|
'Use-Icinga',
|
|
|
|
|
'Invoke-IcingaCommand',
|
|
|
|
|
'Import-IcingaLib',
|
2020-11-04 03:20:19 -05:00
|
|
|
'Get-IcingaFrameworkCodeCacheFile',
|
|
|
|
|
'Write-IcingaFrameworkCodeCache',
|
2020-08-04 06:39:25 -04:00
|
|
|
'Publish-IcingaModuleManifest',
|
|
|
|
|
'Publish-IcingaEventlogDocumentation',
|
|
|
|
|
'Get-IcingaPluginDir',
|
|
|
|
|
'Get-IcingaCustomPluginDir',
|
|
|
|
|
'Get-IcingaCacheDir',
|
|
|
|
|
'Get-IcingaPowerShellConfigDir',
|
|
|
|
|
'Get-IcingaFrameworkRootPath',
|
2021-05-31 11:02:46 -04:00
|
|
|
'Get-IcingaForWindowsRootPath',
|
2020-10-30 10:06:26 -04:00
|
|
|
'Get-IcingaPowerShellModuleFile',
|
2020-11-04 03:20:19 -05:00
|
|
|
'Start-IcingaShellAsUser',
|
|
|
|
|
'Get-IcingaPowerShellConfig',
|
|
|
|
|
'Read-IcingaPowerShellConfig',
|
|
|
|
|
'Test-IcingaPowerShellConfigItem',
|
|
|
|
|
'Write-IcingaConsoleOutput',
|
|
|
|
|
'Write-IcingaConsoleNotice',
|
2021-02-22 11:28:07 -05:00
|
|
|
'Write-IcingaConsoleWarning',
|
2021-02-16 10:10:00 -05:00
|
|
|
'Read-IcingaFileContent',
|
|
|
|
|
'Invoke-IcingaInternalServiceCall',
|
|
|
|
|
'Get-IcingaFrameworkApiChecks',
|
|
|
|
|
'Get-IcingaBackgroundDaemons',
|
|
|
|
|
'Enable-IcingaUntrustedCertificateValidation',
|
|
|
|
|
'Write-IcingaEventMessage',
|
|
|
|
|
'Exit-IcingaExecutePlugin',
|
|
|
|
|
'Exit-IcingaPluginNotInstalled',
|
|
|
|
|
'Exit-IcingaThrowException',
|
2021-05-04 11:31:57 -04:00
|
|
|
'Set-IcingaTLSVersion',
|
2021-02-16 10:10:00 -05:00
|
|
|
'Disable-IcingaProgressPreference',
|
|
|
|
|
'New-IcingaNewLine',
|
|
|
|
|
'Write-IcingaConsolePlain',
|
2021-02-19 04:09:42 -05:00
|
|
|
'Test-IcingaFunction',
|
|
|
|
|
'Write-IcingaConsoleHeader',
|
2021-03-04 05:27:23 -05:00
|
|
|
'Test-IcingaFrameworkConsoleOutput',
|
2021-05-03 13:10:36 -04:00
|
|
|
'ConvertTo-IcingaSecureString',
|
|
|
|
|
'ConvertTo-JsonUTF8Bytes',
|
|
|
|
|
'ConvertFrom-JsonUTF8'
|
2020-08-04 06:39:25 -04:00
|
|
|
)
|
2020-11-04 03:20:19 -05:00
|
|
|
CmdletsToExport = @('*')
|
2019-11-03 09:54:01 -05:00
|
|
|
VariablesToExport = '*'
|
2020-08-04 09:13:04 -04:00
|
|
|
AliasesToExport = @( 'icinga' )
|
|
|
|
|
PrivateData = @{
|
|
|
|
|
PSData = @{
|
|
|
|
|
Tags = @( 'icinga', 'icinga2', 'IcingaPowerShellFramework', 'IcingaPowerShell', 'IcingaforWindows', 'IcingaWindows')
|
|
|
|
|
LicenseUri = 'https://github.com/Icinga/icinga-powershell-framework/blob/master/LICENSE'
|
|
|
|
|
ProjectUri = 'https://github.com/Icinga/icinga-powershell-framework'
|
2019-11-03 09:54:01 -05:00
|
|
|
ReleaseNotes = 'https://github.com/Icinga/icinga-powershell-framework/releases'
|
|
|
|
|
};
|
2021-06-02 07:39:26 -04:00
|
|
|
Version = 'v1.6.0';
|
2021-06-01 06:07:36 -04:00
|
|
|
Name = 'Icinga for Windows';
|
|
|
|
|
Type = 'framework';
|
|
|
|
|
Function = '';
|
|
|
|
|
Endpoint = '';
|
2019-11-03 09:54:01 -05:00
|
|
|
}
|
2020-08-04 09:13:04 -04:00
|
|
|
HelpInfoURI = 'https://github.com/Icinga/icinga-powershell-framework'
|
2019-11-03 09:54:01 -05:00
|
|
|
}
|