PSPortainer.psd1
# # Module manifest for module 'PSPortainer' # # Generated by: Hannes Palmquist # # Generated on: 2022-11-09 # @{ RootModule = 'PSPortainer.psm1' ModuleVersion = '0.3.1' CompatiblePSEditions = @('Desktop', 'Core') PowerShellVersion = '5.1' GUID = '343344de-6ce2-4aa4-847c-7737b0dd4f8c' Author = 'Hannes Palmquist' CompanyName = 'GetPS' Copyright = '(c) Hannes Palmquist. All rights reserved.' Description = 'Powershell Module for interaction with Portainer API' RequiredModules = @() FunctionsToExport = @('Get-PContainer','Get-PContainerProcess','Get-PContainerStatistic','New-PContainer','Rename-PContainer','Resize-PContainerTTY','Restart-PContainer','Resume-PContainer','Start-PContainer','Stop-PContainer','Suspend-PContainer','Wait-PContainer','Get-PEndpoint','Select-PEndpoint','Connect-Portainer','Disconnect-Portainer','Get-PSession','Get-PSettingsPublic','Get-PStatus') CmdletsToExport = '*' VariablesToExport = '*' AliasesToExport = '*' FormatsToProcess = @('.\include\PortainerContainer.Format.ps1xml', '.\include\PortainerContainerProcess.Format.ps1xml') PrivateData = @{ PSData = @{ # Due to a bug in PowershellGet 3.0.17-beta17 licenseuri cannot used when Publishing. # Rollback to 3.0.17-beta16 has a bug that does not allow publishing of versioned powershell modules. # These three must be commented until 3.0.17-beta18 is released. #LicenseUri = 'https://github.com/hanpq/PSPortainer/blob/main/LICENSE' #RequireLicenseAcceptance = $false Prerelease = '' Tags = @('PSEdition_Desktop', 'PSEdition_Core', 'Windows', 'Linux', 'MacOS') ProjectUri = 'https://getps.dev/modules/PSPortainer/getstarted' ReleaseNotes = '## [0.3.1] - 2022-12-08 ### Added - Added function New-PContainer ' } } } |