Skip to content

Commit

Permalink
Merge pull request #3286 from gautamdsheth/bugfix/3284
Browse files Browse the repository at this point in the history
Fix #3284 - issue with service health object reference.
  • Loading branch information
gautamdsheth authored Jul 20, 2023
2 parents bb66d12 + 2592600 commit 93dd5f8
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,50 @@ public enum ServiceHealthIssueStatus
/// <summary>
/// Investigation towards the cause of the issue has been suspended
/// </summary>
InvestigationSuspended
InvestigationSuspended,
/// <summary>
/// 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).
/// </summary>
FalsePositive,
/// <summary>
/// The service is healthy and no issues have been identified.
/// </summary>
ServiceOperational,
/// <summary>
/// A potential issue was identified and more information is being gathered about what's going on and the scope of impact.
/// </summary>
Investigating,
/// <summary>
/// The action has been taken to mitigate the issue and we're verify that the service is healthy.
/// </summary>
VerifyingService,
/// <summary>
/// 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.
/// </summary>
ServiceInterruption,
/// <summary>
/// Reserved for future use.
/// </summary>
Resolved,
/// <summary>
/// Reserved for future use.
/// </summary>
MitigatedExternal,
/// <summary>
/// Reserved for future use.
/// </summary>
Mitigated,
/// <summary>
/// Reserved for future use.
/// </summary>
ResolvedExternal,
/// <summary>
/// Reserved for future use.
/// </summary>
Confirmed,
/// <summary>
/// Reserved for future use.
/// </summary>
Reported
}
}

0 comments on commit 93dd5f8

Please sign in to comment.