Skip to content

Commit 73f38d7

Browse files
prateek2211Prateek Sachan
andauthored
Add default predefined ssl policy field in PSApplicationGateway (#22026)
* Add default predefined ssl policy field in PSApplicationGateway * update changelog --------- Co-authored-by: Prateek Sachan <[email protected]>
1 parent af8591c commit 73f38d7

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

src/Network/Network/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
-`Network Virtual Appliance`
5757
* Allowed not to provide `Rules` in `PSApplicationGatewayFirewallPolicyManagedRuleGroupOverride`, which would return an empty `RuleID` to be passed to NRP.
5858
* Add optional parameter 'AdminState' to Express Route Virtual Network Gateway
59+
* Added read-only property `DefaultPredefinedSslPolicy` in PSApplicationGateway
5960

6061
## Version 5.7.0
6162
* Onboarded `Microsoft.HardwareSecurityModules/cloudHsmClusters` to private link cmdlets

src/Network/Network/Models/PSApplicationGateway.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ public class PSApplicationGateway : PSTopLevelResource
9797
[Ps1Xml(Target = ViewControl.Table)]
9898
public PSManagedServiceIdentity Identity { get; set; }
9999

100+
[Ps1Xml(Target = ViewControl.Table)]
101+
public string DefaultPredefinedSslPolicy { get; private set; }
102+
100103
[JsonIgnore]
101104
public string GatewayIpConfigurationsText
102105
{

src/Network/Network/help/Get-AzApplicationGateway.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ Zones : {}
5555
OperationalState : Running
5656
ProvisioningState : Succeeded
5757
Identity :
58+
DefaultPredefinedSslPolicy : AppGwSslPolicy20150501
5859
GatewayIpConfigurationsText : []
5960
AuthenticationCertificatesText : []
6061
SslCertificatesText : []
@@ -115,6 +116,7 @@ Zones : {}
115116
OperationalState : Running
116117
ProvisioningState : Succeeded
117118
Identity :
119+
DefaultPredefinedSslPolicy : AppGwSslPolicy20150501
118120
GatewayIpConfigurationsText : []
119121
AuthenticationCertificatesText : []
120122
SslCertificatesText : []
@@ -175,6 +177,7 @@ Zones : {}
175177
OperationalState : Running
176178
ProvisioningState : Succeeded
177179
Identity :
180+
DefaultPredefinedSslPolicy : AppGwSslPolicy20150501
178181
GatewayIpConfigurationsText : []
179182
AuthenticationCertificatesText : []
180183
SslCertificatesText : []
@@ -235,6 +238,7 @@ Zones : {}
235238
OperationalState : Running
236239
ProvisioningState : Succeeded
237240
Identity :
241+
DefaultPredefinedSslPolicy : AppGwSslPolicy20150501
238242
GatewayIpConfigurationsText : []
239243
AuthenticationCertificatesText : []
240244
SslCertificatesText : []

0 commit comments

Comments
 (0)