Skip to content
Open
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
1 change: 1 addition & 0 deletions src/Network/Network/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
## Upcoming Release
* Updated the API version of `Microsoft.HardwareSecurityModules/cloudHsmClusters` to `2025-03-31` for Private Link Common Cmdlets
* Onboarded `Microsoft.HardwareSecurityModules/paymentHsmClusters` to Private Link Common Cmdlets
* Fixed an issue where `VerifyClientAuthMode` was not preserved during PowerShell and SDK model conversions for Application Gateway client authentication configuration

## Version 8.0.1
* Onboarded `Microsoft.HorizonDB/clusters` to Private Link Common Cmdlets
Expand Down
8 changes: 8 additions & 0 deletions src/Network/Network/Common/NetworkResourceManagerProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1453,6 +1453,10 @@ private static void Initialize()
.ForMember(
dest => dest.VerifyClientCertIssuerDn,
opt => opt.MapFrom(src => src.VerifyClientCertIssuerDN)
)
.ForMember(
dest => dest.VerifyClientAuthMode,
opt => opt.MapFrom(src => src.VerifyClientAuthMode)
);
Comment on lines +1457 to 1460
cfg.CreateMap<CNM.PSApplicationGatewayPathRule, MNM.ApplicationGatewayPathRule>();
cfg.CreateMap<CNM.PSApplicationGatewayUrlPathMap, MNM.ApplicationGatewayUrlPathMap>();
Expand Down Expand Up @@ -1558,6 +1562,10 @@ private static void Initialize()
.ForMember(
dest => dest.VerifyClientCertIssuerDN,
opt => opt.MapFrom(src => src.VerifyClientCertIssuerDn)
)
.ForMember(
dest => dest.VerifyClientAuthMode,
opt => opt.MapFrom(src => src.VerifyClientAuthMode)
);
cfg.CreateMap<MNM.ApplicationGatewayPathRule, CNM.PSApplicationGatewayPathRule>();
cfg.CreateMap<MNM.ApplicationGatewayUrlPathMap, CNM.PSApplicationGatewayUrlPathMap>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@ public class PSApplicationGatewayClientAuthConfiguration
{
public bool? VerifyClientCertIssuerDN { get; set; }
public string VerifyClientRevocation { get; set; }
public string VerifyClientAuthMode { get; set; }
}
}