63 lines
3.1 KiB
PowerShell
63 lines
3.1 KiB
PowerShell
#
|
||
# Module manifest for module 'ps.ipam.core'
|
||
#
|
||
# Generated by: Nikolay Tatarinov
|
||
#
|
||
#
|
||
|
||
@{
|
||
RootModule = 'ps.ipam.psm1'
|
||
ModuleVersion = '2.0'
|
||
GUID = 'cd573493-4245-4073-a238-fab2251d78d0'
|
||
Author = 'Nikolay Tatarinov'
|
||
Copyright = '(c) 2022 Nikolay Tatarinov. All rights reserved.'
|
||
Description = 'Powershell IPAM Module'
|
||
PowerShellVersion = '5.1'
|
||
|
||
RequiredAssemblies = @(
|
||
'lib\classlib.dll'
|
||
)
|
||
|
||
TypesToProcess = @(
|
||
'types\types.ps1xml'
|
||
)
|
||
|
||
FunctionsToExport = @(
|
||
'New-Session',
|
||
'Get-Address',
|
||
'Get-FirstFreeIP',
|
||
'Get-L2Domain',
|
||
'Get-Section',
|
||
'Get-Subnet',
|
||
'Get-SubnetUsage',
|
||
'Get-Tag',
|
||
'Get-Vlan',
|
||
'Get-Vrf',
|
||
'Get-Nameserver',
|
||
'Get-Permissions',
|
||
'New-Subnet',
|
||
'New-Address',
|
||
'New-FirstFreeIP',
|
||
'Set-Address',
|
||
'Remove-Address'
|
||
)
|
||
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
|
||
AliasesToExport = @()
|
||
|
||
PrivateData = @{
|
||
|
||
PSData = @{
|
||
Tags = @('phpIPAM')
|
||
LicenseUri = 'https://git.arnike.ru/Arnike/ps.ipam/src/branch/main/LICENSE'
|
||
ProjectUri = 'https://git.arnike.ru/Arnike/ps.ipam'
|
||
#IconUri = ''
|
||
|
||
# ReleaseNotes of this module
|
||
# ReleaseNotes = ''
|
||
|
||
}
|
||
|
||
}
|
||
|
||
DefaultCommandPrefix = 'phpIPAM'
|
||
} |