Skip to content

Commit 2982f87

Browse files
authored
Merge pull request #10 from AsBuiltReport/dev
1.1.0 public release
2 parents d0ca000 + 77e791c commit 2982f87

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+3087
-1181
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 35 deletions
This file was deleted.
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
name: Bug Report
2+
description: File a bug report
3+
labels: ["bug"]
4+
assignees:
5+
- rebelinux
6+
body:
7+
- type: textarea
8+
id: bug-description
9+
attributes:
10+
label: Bug description
11+
description: >-
12+
Please provide a clear and concise description of the bug.
13+
validations:
14+
required: true
15+
- type: input
16+
id: command-line-input
17+
attributes:
18+
label: Command-line input
19+
description: >-
20+
Please provide the command line input you are using to run AsBuiltReport. Please ensure that you obscure any sensitive information.
21+
placeholder: New-AsBuiltReport -Report VMware.Horizon -Target xxxxxxx -Format Word,HTML -OutputFolderPath .\Documents\ -AsBuiltConfigFilePath .\AsBuiltReport\AsBuiltReport.json -ReportConfigFilePath .\AsBuiltReport\AsBuiltReport.VMware.Horizon.json -EnableHealthCheck -Verbose
22+
validations:
23+
required: true
24+
- type: textarea
25+
id: steps-to-reproduce
26+
attributes:
27+
label: Steps to reproduce
28+
description: >-
29+
Please provide a detailed list of steps to reproduce the bug.
30+
placeholder: |-
31+
1. ....
32+
2. ....
33+
3. ....
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: expected-behaviour
38+
attributes:
39+
label: Expected behaviour
40+
description: >-
41+
Please provide a clear and concise description of what you expected to happen.
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: screenshots
46+
attributes:
47+
label: Screenshots
48+
description: >-
49+
Please attach any screenshots to help explain the problem. Please ensure that you obscure any sensitive information.
50+
placeholder: |-
51+
Drag and drop screenshots here.
52+
- type: textarea
53+
id: operating-system
54+
attributes:
55+
label: Operating System
56+
description: Please provide information about the operating system are you using.
57+
placeholder: macOS Big Sur, Windows 10, Ubuntu 20.04 LTS
58+
validations:
59+
required: true
60+
- type: textarea
61+
id: powershell-version
62+
attributes:
63+
label: PowerShell Version
64+
description: Please provide information about the PowerShell version you are using. Please provide the output from the following PowerShell command `$PSVersionTable`.
65+
placeholder: $PSVersionTable
66+
validations:
67+
required: true
68+
- type: textarea
69+
id: powershell-modules
70+
attributes:
71+
label: PowerShell Modules
72+
description: Please provide information about the PowerShell modules are you using. Please provide the output from the following PowerShell command `Get-Module -ListAvailable @("AsBuiltReport.Core";"AsBuiltReport.VMware.Horizon";"PScribo") | Select Name, Version`
73+
placeholder: Get-Module -ListAvailable @("AsBuiltReport.Core";"AsBuiltReport.VMware.Horizon";"PScribo") | Select Name, Version
74+
validations:
75+
required: true
76+
- type: textarea
77+
id: additional-context
78+
attributes:
79+
label: Additional Context
80+
description: This field is optional. You may provide additional context for the bug you wish to report. You may wish to include links to any related [issues](https://github.com/AsBuiltReport/AsBuiltReport.VMware.Horizon/issues) or other relevant information.
81+
- type: checkboxes
82+
id: checklist
83+
attributes:
84+
label: Before submitting
85+
description: >-
86+
Please ensure your bug report fulfills all of the following requirements.
87+
If you are unsure of what a specific requirement means, please follow the links to learn about it and understand why it is necessary before submitting.
88+
options:
89+
- label: >-
90+
I have read and followed the [bug reporting guidelines](https://www.asbuiltreport.com/about/contributing/#reporting-issues-and-bugs).
91+
required: true
92+
- label: >-
93+
I have read [the documentation](https://www.asbuiltreport.com/user-guide/new-asbuiltconfig),
94+
and referred to the [known issues](https://www.asbuiltreport.com/user-guide/known-issues/) before submitting this bug report.
95+
required: true
96+
- label: >-
97+
I have checked for previously opened & closed [issues](https://github.com/AsBuiltReport/AsBuiltReport.VMware.Horizon/issues) before submitting this bug report.
98+
required: true
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Change Request
2+
description: Request a new change or an improvement
3+
labels: ["change request"]
4+
assignees:
5+
- rebelinux
6+
body:
7+
- type: textarea
8+
id: description
9+
attributes:
10+
label: Description
11+
description: >-
12+
Please provide a detailed description of your idea so that the project maintainers and contributors can fully understand what change, feature, or improvement you are proposing.
13+
validations:
14+
required: true
15+
- type: textarea
16+
id: additional-context
17+
attributes:
18+
label: Additional Context
19+
description: This field is optional. You may provide additional context for the idea you wish to propose. You may wish to include links to any related [issues](https://github.com/AsBuiltReport/AsBuiltReport.VMware.Horizon/issues) or other relevant information.
20+
- type: checkboxes
21+
id: checklist
22+
attributes:
23+
label: Before submitting
24+
description: >-
25+
Please ensure your change request fulfills all of the following requirements.
26+
If you are unsure of what a specific requirement means, please follow the links to learn about it and understand why it is necessary before submitting.
27+
options:
28+
- label: >-
29+
I have read [the documentation](https://www.asbuiltreport.com/user-guide/new-asbuiltconfig),
30+
and referred to the [known issues](https://www.asbuiltreport.com/user-guide/known-issues/) before submitting this change request.
31+
required: true
32+
- label: >-
33+
I have checked for previously opened & closed [issues](https://github.com/AsBuiltReport/AsBuiltReport.VMware.Horizon/issues) before submitting this change request.
34+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

AsBuiltReport.VMware.Horizon.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@
2121
"Desktop": 1,
2222
"Applications": 1,
2323
"Farms": 1,
24-
"Machines": {
25-
"vCenterVM": 1,
26-
"RDSHosts": 1
27-
},
28-
"PersistentDisks": 1,
29-
"ThinApps": 0,
24+
"Machines": 1,
3025
"GlobalEntitlements": 1
3126
},
3227
"Settings": {
@@ -35,7 +30,6 @@
3530
"vCenter": 1,
3631
"ESXiHosts": 1,
3732
"DataStores": 1,
38-
"Composers": 1,
3933
"ADDomains": 1
4034
},
4135
"UAG":{
@@ -61,15 +55,22 @@
6155
"AdministratorsandGroups": 1,
6256
"RolePrivileges": 1,
6357
"RolePermissions": 1,
64-
"AccessGroup": 1
58+
"AccessGroup": 1,
59+
"FederationAccessGroup": 1
60+
},
61+
"CloudPodArch": {
62+
"CloudPodArch": 1
63+
},
64+
"Sites": {
65+
"Sites": 1
6566
},
6667
"EventConfiguration": {
6768
"EventDatabase": 1,
6869
"Syslog": 1,
6970
"EventstoFileSystem": 1
7071
},
7172
"GlobalPolicies": {
72-
"GlobalPolicies": 0
73+
"GlobalPolicies": 1
7374
}
7475
}
7576
},

AsBuiltReport.VMware.Horizon.psd1

0 Bytes
Binary file not shown.

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# :arrows_clockwise: VMware Horizon As Built Report Changelog
22

3+
## [1.1.0] - 2023-12-19
4+
5+
### Added
6+
7+
- Updated Report to work with Horizon 2309
8+
- Added Features for Certificates and Replication status
9+
- Improved functionaliy and layout.
10+
311
## [0.2.0] - 2022-08-17
412

513
### Added

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- ********** DO NOT EDIT THESE LINKS ********** -->
22
<p align="center">
33
<a href="https://www.asbuiltreport.com/" alt="AsBuiltReport"></a>
4-
<img src='https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport/master/AsBuiltReport.png' width="8%" height="8%" /></a>
4+
<img src='https://github.com/AsBuiltReport.png' width="8%" height="8%" /></a>
55
</p>
66
<p align="center">
77
<a href="https://www.powershellgallery.com/packages/AsBuiltReport.VMware.Horizon/" alt="PowerShell Gallery Version">
@@ -68,14 +68,6 @@ PowerShell 5.1 or PowerShell 7, and the following PowerShell modules are require
6868
- [VMware PowerCLI Module](https://www.powershellgallery.com/packages/VMware.PowerCLI/)
6969
- [AsBuiltReport.VMware.Horizon Module](https://www.powershellgallery.com/packages/AsBuiltReport.VMware.Horizon/)
7070

71-
### Linux & macOS
72-
73-
* .NET Core is required for cover page image support on Linux and macOS operating systems.
74-
* [Installing .NET Core for macOS](https://docs.microsoft.com/en-us/dotnet/core/install/macos)
75-
* [Installing .NET Core for Linux](https://docs.microsoft.com/en-us/dotnet/core/install/linux)
76-
77-
❗ If you are unable to install .NET Core, you must set `ShowCoverPageImage` to `False` in the report JSON configuration file.
78-
7971
### :closed_lock_with_key: Required Privileges
8072

8173
- A VMware Horizon As Built Report can be generated with Administrators(Read only) privileges.
@@ -130,7 +122,7 @@ The **Report** schema provides configuration of the VMware Horizon report inform
130122
| Sub-Schema | Setting | Default | Description |
131123
|---------------------|--------------|--------------------------------|--------------------------------------------------------------|
132124
| Name | User defined | VMware Horizon As Built Report | The name of the As Built Report |
133-
| Version | User defined | 1.0 | The report version |
125+
| Version | User defined | 1.1 | The report version |
134126
| Status | User defined | Released | The report release status |
135127
| ShowCoverPageImage | true / false | true | Toggle to enable/disable the display of the cover page image |
136128
| ShowTableOfContents | true / false | true | Toggle to enable/disable table of contents |
@@ -166,7 +158,7 @@ The table below outlines the default and maximum InfoLevel settings for each Inv
166158

167159
| Sub-Schema | Default Setting | Maximum Setting |
168160
|--------------|:---------------:|:---------------:|
169-
| Desktop | 1 | 2 |
161+
| Desktop | 1 | 3 |
170162
| Applications | 1 | 2 |
171163
| Farms | 1 | 2 |
172164
| Machines | 1 | 1 |
@@ -190,6 +182,8 @@ The table below outlines the default and maximum InfoLevel settings for each Set
190182
| RolePrivileges | 1 | 1 |
191183
| RolePermissions | 1 | 1 |
192184
| AccessGroup | 1 | 2 |
185+
| Cloud Pod | 1 | 2 |
186+
| Sites | 1 | 2 |
193187
| EventDatabase | 1 | 1 |
194188
| Syslog | 1 | 1 |
195189
| EventstoFileSystem | 1 | 1 |

0 commit comments

Comments
 (0)