├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .vscode └── settings.json ├── AsBuiltReport.psd1 ├── AsBuiltReport.psm1 ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── Src └── Public ├── New-AsBuiltReport.ps1 ├── Reports ├── FlashArray │ ├── FlashArray.json │ └── FlashArray.ps1 ├── NSX │ ├── CHANGELOG.md │ ├── NSX.ps1 │ └── README.md ├── Nutanix │ ├── Nutanix.json │ └── Nutanix.ps1 ├── UCS │ ├── UCS.json │ └── UCS.ps1 └── vSphere │ ├── CHANGELOG.md │ ├── README.md │ ├── Samples │ ├── Sample vSphere As-Built Report.html │ ├── Sample_vSphere_Report_1.png │ └── Sample_vSphere_Report_2.png │ ├── vSphere.json │ └── vSphere.ps1 └── Styles ├── Cisco.ps1 ├── Nutanix.ps1 ├── PureStorage.ps1 └── VMware.ps1 /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | AsBuiltConfig.json 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AsBuiltReport.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/AsBuiltReport.psd1 -------------------------------------------------------------------------------- /AsBuiltReport.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/AsBuiltReport.psm1 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/README.md -------------------------------------------------------------------------------- /Src/Public/New-AsBuiltReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/New-AsBuiltReport.ps1 -------------------------------------------------------------------------------- /Src/Public/Reports/FlashArray/FlashArray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/FlashArray/FlashArray.json -------------------------------------------------------------------------------- /Src/Public/Reports/FlashArray/FlashArray.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/FlashArray/FlashArray.ps1 -------------------------------------------------------------------------------- /Src/Public/Reports/NSX/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/NSX/CHANGELOG.md -------------------------------------------------------------------------------- /Src/Public/Reports/NSX/NSX.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/NSX/NSX.ps1 -------------------------------------------------------------------------------- /Src/Public/Reports/NSX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/NSX/README.md -------------------------------------------------------------------------------- /Src/Public/Reports/Nutanix/Nutanix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/Nutanix/Nutanix.json -------------------------------------------------------------------------------- /Src/Public/Reports/Nutanix/Nutanix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/Nutanix/Nutanix.ps1 -------------------------------------------------------------------------------- /Src/Public/Reports/UCS/UCS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/UCS/UCS.json -------------------------------------------------------------------------------- /Src/Public/Reports/UCS/UCS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/UCS/UCS.ps1 -------------------------------------------------------------------------------- /Src/Public/Reports/vSphere/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/vSphere/CHANGELOG.md -------------------------------------------------------------------------------- /Src/Public/Reports/vSphere/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/vSphere/README.md -------------------------------------------------------------------------------- /Src/Public/Reports/vSphere/Samples/Sample vSphere As-Built Report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/vSphere/Samples/Sample vSphere As-Built Report.html -------------------------------------------------------------------------------- /Src/Public/Reports/vSphere/Samples/Sample_vSphere_Report_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/vSphere/Samples/Sample_vSphere_Report_1.png -------------------------------------------------------------------------------- /Src/Public/Reports/vSphere/Samples/Sample_vSphere_Report_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/vSphere/Samples/Sample_vSphere_Report_2.png -------------------------------------------------------------------------------- /Src/Public/Reports/vSphere/vSphere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/vSphere/vSphere.json -------------------------------------------------------------------------------- /Src/Public/Reports/vSphere/vSphere.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Reports/vSphere/vSphere.ps1 -------------------------------------------------------------------------------- /Src/Public/Styles/Cisco.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Styles/Cisco.ps1 -------------------------------------------------------------------------------- /Src/Public/Styles/Nutanix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Styles/Nutanix.ps1 -------------------------------------------------------------------------------- /Src/Public/Styles/PureStorage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Styles/PureStorage.ps1 -------------------------------------------------------------------------------- /Src/Public/Styles/VMware.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tpcarman/As-Built-Report/HEAD/Src/Public/Styles/VMware.ps1 --------------------------------------------------------------------------------