-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicinga-powershell-hyperv.psd1
46 lines (45 loc) · 1.88 KB
/
icinga-powershell-hyperv.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
44
45
46
@{
ModuleVersion = '1.4.0'
GUID = '65edfa4d-09fc-4640-baee-037705b9d573'
Author = 'Yonas Habteab, Lord Hepipud'
CompanyName = 'Icinga GmbH'
Copyright = '(c) 2023 Icinga GmbH | GPL v2.0'
Description = 'A collection of Hyper-V plugins, which serve to monitor Hyper-V systems'
PowerShellVersion = '4.0'
RequiredModules = @(
@{ModuleName = 'icinga-powershell-framework'; ModuleVersion = '1.12.0' },
@{ModuleName = 'icinga-powershell-plugins'; ModuleVersion = '1.10.0' }
)
NestedModules = @(
'.\compiled\icinga-powershell-hyperv.ifw_compilation.psm1'
)
FunctionsToExport = @(
'Import-IcingaPowerShellComponentHyperV',
'Invoke-IcingaCheckHyperVDuplicateVM',
'Invoke-IcingaCheckHyperVHealth',
'Invoke-IcingaCheckHyperVOverCommitment',
'Invoke-IcingaCheckHyperVSnapshot',
'Invoke-IcingaCheckHyperVVirtualSwitches',
'Invoke-IcingaCheckHyperVVMHealth',
'Invoke-IcingaCheckHyperVVMM'
)
CmdletsToExport = @(
)
VariablesToExport = @(
'HypervProviderEnums'
)
PrivateData = @{
PSData = @{
Tags = @('icinga', 'icinga2', 'icingawindows', 'hyper-v', 'hyperv', 'hypervplugins', 'windowsplugins', 'icingaforwindows')
LicenseUri = 'https://github.com/Icinga/icinga-powershell-hyperv/blob/master/LICENSE'
ProjectUri = 'https://github.com/Icinga/icinga-powershell-hyperv'
ReleaseNotes = 'https://github.com/Icinga/icinga-powershell-hyperv/releases'
};
Version = 'v1.4.0'
Name = 'Windows Hyper-V';
Type = 'plugins';
Function = '';
Endpoint = '';
}
HelpInfoURI = 'https://github.com/Icinga/icinga-powershell-hyperv'
}