Posh-IBCLI.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
47
48
49
50
51
52
53
54
55
56
57
58
59
@{

RootModule = 'Posh-IBCLI.psm1'
ModuleVersion = '1.3.0'
GUID = '2585edfb-b7d2-4857-9b13-a73633b56a86'
Author = 'Ryan Bolger'
Copyright = '(c) 2019 Ryan Bolger. All rights reserved.'
Description = 'PowerShell module that makes it easier to automate Infoblox NIOS CLI commands via SSH.'
PowerShellVersion = '3.0'

RequiredModules = @('Posh-SSH')

FormatsToProcess = 'Posh-IBCLI.Format.ps1xml'

FunctionsToExport = @(
    'Connect-IBCLI'
    'Disconnect-IBCLI'
    'Get-IBCLIApacheCert'
    'Get-IBCLIHardwareID'
    'Get-IBCLILicenses'
    'Get-IBCLINetwork'
    'Get-IBCLIStatus'
    'Invoke-IBCLICommand'
    'Invoke-IBCLISetMembership'
    'Invoke-IBCLISetPromoteMaster'
    'Set-IBCLIApacheCert'
)

CmdletsToExport = @()
VariablesToExport = @()
AliasesToExport = @()

PrivateData = @{

    PSData = @{

        # Tags applied to this module. These help with module discovery in online galleries.
        Tags = 'Infoblox','IPAM'

        # A URL to the license for this module.
        LicenseUri = 'https://github.com/rmbolger/Posh-IBCLI/blob/master/LICENSE'

        # A URL to the main website for this project.
        ProjectUri = 'https://github.com/rmbolger/Posh-IBCLI'

        # A URL to an icon representing this module.
        # IconUri = ''

        # ReleaseNotes of this module
        ReleaseNotes = @'
* Added `Get-IBCLIApacheCert` and `Set-IBCLIApacheCert` to allow manipulation of the web UI certificate on a grid member. These require a CLI command that exists in NIOS 8.4+ and will throw an error on earlier versions.
'@


    } # End of PSData hashtable

} # End of PrivateData hashtable

}