Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing class version in AADAuthenticationMethodPolicyFido2 #4932

Merged
merged 2 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

# UNRELEASED

* AADAuthenticationMethodPolicyFido2
* Add missing class identifier to schema.
FIXES [#4900](https://github.com/microsoft/Microsoft365DSC/issues/4900)
FIXES [#4079](https://github.com/microsoft/Microsoft365DSC/issues/4079)
* IntuneAntivirusPolicyWindows10SettingCatalog
* Fixes an issue where the template reference is not set correctly.
FIXES [#4925](https://github.com/microsoft/Microsoft365DSC/issues/4925)
Expand All @@ -15,7 +19,7 @@
FIXES [#3966](https://github.com/microsoft/Microsoft365DSC/issues/3966)
* IntuneEndpointDetectionAndResponsePolicyLinux
* Initial release.
* IntuneEndointDetectionAndResponsePolicyMacOS
* IntuneEndpointDetectionAndResponsePolicyMacOS
* Initial release.
* IntuneWindowsUpdateForBusinessFeatureUpdateProfileWindows10
* Introduces new properties and updates the handling of the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class MSFT_AADAuthenticationMethodPolicyFido2ExcludeTarget
[Write, Description("The object identifier of an Azure AD group.")] String Id;
[Write, Description("The type of the authentication method target. Possible values are: group and unknownFutureValue."), ValueMap{"user","group","unknownFutureValue"}, Values{"user","group","unknownFutureValue"}] String TargetType;
};

[ClassVersion("1.0.0")]
class MSFT_AADAuthenticationMethodPolicyFido2IncludeTarget
{
[Write, Description("The object identifier of an Azure AD group.")] String Id;
Expand Down
Loading