Description
Creates JSON configuration files for individual As Built Reports.
Parameters
Report
Specifies the type of report configuration to create.
This is a mandatory parameter.
Path
Specifies the path to create the report JSON configuration file.
This is a mandatory parameter.
Name
Specifies the name of the report JSON configuration file. If Name is not specified, a JSON configuration file will be created with a default name AsBuiltReport.Vendor.Product.json
This is an optional parameter.
Overwrite
Specifies whether to overwrite an existing JSON configuration.
This is an optional parameter.
Examples
Creates a new report JSON for VMware vSphere in the C:\Reports folder.
New-AsBuiltReportConfig -Report VMware.vSphere -Path 'C:\Reports'
Creates a new report JSON named ‘MyCompany.Cisco.UCS’ in C:\AsBuiltReport folder.
New-AsBuiltReportConfig -Report Cisco.UcsManager -Name 'MyCompany.Cisco.UCS' -Path 'C:\AsBuiltReport'
Creates a new report JSON file for VMware NSX-v in C:\Reports folder, overwriting the existing file.
New-AsBuiltReportConfig -Report VMware.NSXv -Path 'C:\Reports' -Overwrite