├── .github └── workflows │ └── pester.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Posh-IBWAPI ├── Posh-IBWAPI.Format.ps1xml ├── Posh-IBWAPI.psd1 ├── Posh-IBWAPI.psm1 ├── Private │ ├── Export-IBConfig.ps1 │ ├── Format-Columns.ps1 │ ├── Get-EnvProfile.ps1 │ ├── Get-IBSession.ps1 │ ├── Get-ReadFieldsForType.ps1 │ ├── Get-VaultConfig.ps1 │ ├── Get-VaultProfiles.ps1 │ ├── HighestVer.ps1 │ ├── Import-IBConfig.ps1 │ ├── Import-IBCred.ps1 │ ├── InitTLS.ps1 │ ├── Initialize-CallVars.ps1 │ ├── MockWrappers.ps1 │ ├── New-MultipartFileContent.ps1 │ ├── Register-ArgCompleters.ps1 │ ├── Set-IBSession.ps1 │ ├── Split-Str.ps1 │ ├── Test-NonEmptyString.ps1 │ ├── Test-ValidProfile.ps1 │ └── Test-VersionString.ps1 ├── Public │ ├── Get-IBConfig.ps1 │ ├── Get-IBObject.ps1 │ ├── Get-IBSchema.ps1 │ ├── Invoke-IBFunction.ps1 │ ├── Invoke-IBWAPI.ps1 │ ├── New-IBObject.ps1 │ ├── Receive-IBFile.ps1 │ ├── Remove-IBConfig.ps1 │ ├── Remove-IBObject.ps1 │ ├── Send-IBFile.ps1 │ ├── Set-IBConfig.ps1 │ └── Set-IBObject.ps1 └── en-US │ ├── Posh-IBWAPI-help.xml │ └── about_Posh-IBWAPI.help.txt ├── README.md ├── Tests ├── Export-IBConfig.Tests.ps1 ├── Get-IBConfig.Tests.ps1 ├── Get-IBObject.Tests.ps1 ├── Import-IBConfig.Tests.ps1 ├── Import-IBCred.Tests.ps1 ├── Initialize-CallVars.Tests.ps1 ├── Remove-IBConfig.Tests.ps1 └── Set-IBConfig.Tests.ps1 ├── docs ├── .deploy_notes ├── .pages ├── FAQ.md ├── Functions │ ├── Get-IBConfig.md │ ├── Get-IBObject.md │ ├── Get-IBSchema.md │ ├── Invoke-IBFunction.md │ ├── Invoke-IBWAPI.md │ ├── New-IBObject.md │ ├── Receive-IBFile.md │ ├── Remove-IBConfig.md │ ├── Remove-IBObject.md │ ├── Send-IBFile.md │ ├── Set-IBConfig.md │ └── Set-IBObject.md ├── Guides │ ├── .pages │ ├── Definitive-REST-Examples.md │ ├── Development-Notes.md │ ├── Stateless-Mode.md │ ├── Using-Get-IBSchema.md │ ├── Using-IBFile-Functions.md │ ├── Using-SecretManagement.md │ ├── WAPI-to-NIOS-Versions.md │ └── index.md └── index.md ├── gen-maml.ps1 ├── instdev.ps1 ├── mkdocs.yml └── update-func-markdown.ps1 /.github/workflows/pester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/.github/workflows/pester.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /Posh-IBWAPI/Posh-IBWAPI.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Posh-IBWAPI.Format.ps1xml -------------------------------------------------------------------------------- /Posh-IBWAPI/Posh-IBWAPI.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Posh-IBWAPI.psd1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Posh-IBWAPI.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Posh-IBWAPI.psm1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Export-IBConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Export-IBConfig.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Format-Columns.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Format-Columns.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Get-EnvProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Get-EnvProfile.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Get-IBSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Get-IBSession.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Get-ReadFieldsForType.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Get-ReadFieldsForType.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Get-VaultConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Get-VaultConfig.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Get-VaultProfiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Get-VaultProfiles.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/HighestVer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/HighestVer.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Import-IBConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Import-IBConfig.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Import-IBCred.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Import-IBCred.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/InitTLS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/InitTLS.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Initialize-CallVars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Initialize-CallVars.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/MockWrappers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/MockWrappers.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/New-MultipartFileContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/New-MultipartFileContent.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Register-ArgCompleters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Register-ArgCompleters.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Set-IBSession.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Set-IBSession.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Split-Str.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Split-Str.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Test-NonEmptyString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Test-NonEmptyString.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Test-ValidProfile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Test-ValidProfile.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Private/Test-VersionString.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Private/Test-VersionString.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/Get-IBConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/Get-IBConfig.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/Get-IBObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/Get-IBObject.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/Get-IBSchema.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/Get-IBSchema.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/Invoke-IBFunction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/Invoke-IBFunction.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/Invoke-IBWAPI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/Invoke-IBWAPI.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/New-IBObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/New-IBObject.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/Receive-IBFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/Receive-IBFile.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/Remove-IBConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/Remove-IBConfig.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/Remove-IBObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/Remove-IBObject.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/Send-IBFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/Send-IBFile.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/Set-IBConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/Set-IBConfig.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/Public/Set-IBObject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/Public/Set-IBObject.ps1 -------------------------------------------------------------------------------- /Posh-IBWAPI/en-US/Posh-IBWAPI-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/en-US/Posh-IBWAPI-help.xml -------------------------------------------------------------------------------- /Posh-IBWAPI/en-US/about_Posh-IBWAPI.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Posh-IBWAPI/en-US/about_Posh-IBWAPI.help.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Export-IBConfig.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Tests/Export-IBConfig.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-IBConfig.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Tests/Get-IBConfig.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Get-IBObject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Tests/Get-IBObject.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Import-IBConfig.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Tests/Import-IBConfig.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Import-IBCred.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Tests/Import-IBCred.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Initialize-CallVars.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Tests/Initialize-CallVars.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Remove-IBConfig.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Tests/Remove-IBConfig.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Set-IBConfig.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/Tests/Set-IBConfig.Tests.ps1 -------------------------------------------------------------------------------- /docs/.deploy_notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/.deploy_notes -------------------------------------------------------------------------------- /docs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/.pages -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/Functions/Get-IBConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/Get-IBConfig.md -------------------------------------------------------------------------------- /docs/Functions/Get-IBObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/Get-IBObject.md -------------------------------------------------------------------------------- /docs/Functions/Get-IBSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/Get-IBSchema.md -------------------------------------------------------------------------------- /docs/Functions/Invoke-IBFunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/Invoke-IBFunction.md -------------------------------------------------------------------------------- /docs/Functions/Invoke-IBWAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/Invoke-IBWAPI.md -------------------------------------------------------------------------------- /docs/Functions/New-IBObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/New-IBObject.md -------------------------------------------------------------------------------- /docs/Functions/Receive-IBFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/Receive-IBFile.md -------------------------------------------------------------------------------- /docs/Functions/Remove-IBConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/Remove-IBConfig.md -------------------------------------------------------------------------------- /docs/Functions/Remove-IBObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/Remove-IBObject.md -------------------------------------------------------------------------------- /docs/Functions/Send-IBFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/Send-IBFile.md -------------------------------------------------------------------------------- /docs/Functions/Set-IBConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/Set-IBConfig.md -------------------------------------------------------------------------------- /docs/Functions/Set-IBObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Functions/Set-IBObject.md -------------------------------------------------------------------------------- /docs/Guides/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Guides/.pages -------------------------------------------------------------------------------- /docs/Guides/Definitive-REST-Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Guides/Definitive-REST-Examples.md -------------------------------------------------------------------------------- /docs/Guides/Development-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Guides/Development-Notes.md -------------------------------------------------------------------------------- /docs/Guides/Stateless-Mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Guides/Stateless-Mode.md -------------------------------------------------------------------------------- /docs/Guides/Using-Get-IBSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Guides/Using-Get-IBSchema.md -------------------------------------------------------------------------------- /docs/Guides/Using-IBFile-Functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Guides/Using-IBFile-Functions.md -------------------------------------------------------------------------------- /docs/Guides/Using-SecretManagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Guides/Using-SecretManagement.md -------------------------------------------------------------------------------- /docs/Guides/WAPI-to-NIOS-Versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Guides/WAPI-to-NIOS-Versions.md -------------------------------------------------------------------------------- /docs/Guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/Guides/index.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/docs/index.md -------------------------------------------------------------------------------- /gen-maml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/gen-maml.ps1 -------------------------------------------------------------------------------- /instdev.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/instdev.ps1 -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /update-func-markdown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmbolger/Posh-IBWAPI/HEAD/update-func-markdown.ps1 --------------------------------------------------------------------------------