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

Release 4.23.0 #1294

Merged
merged 3 commits into from
Mar 30, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/Microsoft.Graph/Generated/model/Authentication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public partial class Authentication : Entity

/// <summary>
/// Gets or sets fido2methods.
/// Represents the FIDO2 security keys registered to a user for authentication.
/// </summary>
[JsonPropertyName("fido2Methods")]
public IAuthenticationFido2MethodsCollectionPage Fido2Methods { get; set; }
Expand All @@ -35,6 +36,7 @@ public partial class Authentication : Entity

/// <summary>
/// Gets or sets methods.
/// Represents all authentication methods registered to a user.
/// </summary>
[JsonPropertyName("methods")]
public IAuthenticationMethodsCollectionPage Methods { get; set; }
Expand All @@ -48,6 +50,7 @@ public partial class Authentication : Entity

/// <summary>
/// Gets or sets microsoft authenticator methods.
/// The details of the Microsoft Authenticator app registered to a user for authentication.
/// </summary>
[JsonPropertyName("microsoftAuthenticatorMethods")]
public IAuthenticationMicrosoftAuthenticatorMethodsCollectionPage MicrosoftAuthenticatorMethods { get; set; }
Expand All @@ -61,6 +64,7 @@ public partial class Authentication : Entity

/// <summary>
/// Gets or sets windows hello for business methods.
/// Represents the Windows Hello for Business authentication method registered to a user for authentication.
/// </summary>
[JsonPropertyName("windowsHelloForBusinessMethods")]
public IAuthenticationWindowsHelloForBusinessMethodsCollectionPage WindowsHelloForBusinessMethods { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,10 @@ public enum ConditionalAccessDevicePlatform
/// </summary>
UnknownFutureValue = 6,

/// <summary>
/// Linux
/// </summary>
Linux = 7,

}
}
2 changes: 1 addition & 1 deletion src/Microsoft.Graph/Generated/model/DocumentSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public partial class DocumentSet

/// <summary>
/// Gets or sets shouldPrefixNameToFile.
/// Add the name of the document set to each file name.
/// Indicates whether to add the name of the document set to each file name.
/// </summary>
[JsonPropertyName("shouldPrefixNameToFile")]
public bool? ShouldPrefixNameToFile { get; set; }
Expand Down
1 change: 1 addition & 0 deletions src/Microsoft.Graph/Generated/model/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1005,6 +1005,7 @@ public User()

/// <summary>
/// Gets or sets authentication.
/// The authentication methods that are supported for the user.
/// </summary>
[JsonPropertyName("authentication")]
public Authentication Authentication { get; set; }
Expand Down
4 changes: 2 additions & 2 deletions src/Microsoft.Graph/Microsoft.Graph.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<VersionPrefix>4.22.0</VersionPrefix>
<VersionPrefix>4.23.0</VersionPrefix>
<!-- VersionPrefix minor version should not be set when the change comes from the generator. It will be updated automatically. -->
<!-- VersionPrefix minor version must be manually set when making manual changes to code. -->
<!-- VersionPrefix major and patch versions must be manually set. -->
<VersionSuffix></VersionSuffix>
<PackageReleaseNotes>
- Latest metadata updates from 22nd March 2022 snapshot
- Latest metadata updates from 29th March 2022 snapshot
</PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
Expand Down