diff --git a/CHANGELOG.md b/CHANGELOG.md
index fbb364121..2299d9ea3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Fixed `Get-PnPUserProfileProperty` cmdlet not allowing basic user profile properties to be retrieved using `-Properties` [#3247](https://github.com/pnp/powershell/pull/3247)
- Fixed `Export-PnPTermGroupToXml` cmdlet issue with exporting site collection term groups. [#3256](https://github.com/pnp/powershell/pull/3256)
- Fixed `Register-PnPAzureADApp` cmdlet issue with creation of Azure AD application. [#3265](https://github.com/pnp/powershell/pull/3265)
+- Fixed `Get-PnPServiceHealthIssue` cmdlet issue with null reference objection. [#3286](https://github.com/pnp/powershell/pull/3286)
- Fixed `New-PnPSite` cmdlet issue with team site creation when using a connection object. [#3285](https://github.com/pnp/powershell/pull/3285)
### Contributors
diff --git a/src/Commands/Model/ServiceHealth/Enums/ServiceHealthIssueStatus.cs b/src/Commands/Model/ServiceHealth/Enums/ServiceHealthIssueStatus.cs
index aa515daae..0fa0ebfe1 100644
--- a/src/Commands/Model/ServiceHealth/Enums/ServiceHealthIssueStatus.cs
+++ b/src/Commands/Model/ServiceHealth/Enums/ServiceHealthIssueStatus.cs
@@ -33,6 +33,50 @@ public enum ServiceHealthIssueStatus
///
/// Investigation towards the cause of the issue has been suspended
///
- InvestigationSuspended
+ InvestigationSuspended,
+ ///
+ /// After a detailed investigation, the service is confirmed to be healthy and operating as designed. No impact to the service was observed or the cause of the incident originated outside of the service. Incidents and advisories with this status appear in the history view until they expire (after the period of time stated in the final post for that event).
+ ///
+ FalsePositive,
+ ///
+ /// The service is healthy and no issues have been identified.
+ ///
+ ServiceOperational,
+ ///
+ /// A potential issue was identified and more information is being gathered about what's going on and the scope of impact.
+ ///
+ Investigating,
+ ///
+ /// The action has been taken to mitigate the issue and we're verify that the service is healthy.
+ ///
+ VerifyingService,
+ ///
+ /// You'll see this status if an issue is determined to affect the ability for users to access the service. In this case, the issue is significant and can be reproduced consistently.
+ ///
+ ServiceInterruption,
+ ///
+ /// Reserved for future use.
+ ///
+ Resolved,
+ ///
+ /// Reserved for future use.
+ ///
+ MitigatedExternal,
+ ///
+ /// Reserved for future use.
+ ///
+ Mitigated,
+ ///
+ /// Reserved for future use.
+ ///
+ ResolvedExternal,
+ ///
+ /// Reserved for future use.
+ ///
+ Confirmed,
+ ///
+ /// Reserved for future use.
+ ///
+ Reported
}
}
\ No newline at end of file