Skip to content

Commit 212626b

Browse files
author
SDKAuto
committed
CodeGen from PR 34447 in Azure/azure-rest-api-specs
Merge 88abac1fd52a1352db75d4aa8e3e30aaa50c9d04 into e2006c1b75927db9d566a4d38bd256103b5b5c12
1 parent d588700 commit 212626b

18 files changed

+92
-50
lines changed

sdk/frontdoor/Azure.ResourceManager.FrontDoor/api/Azure.ResourceManager.FrontDoor.net8.0.cs

+3
Original file line numberDiff line numberDiff line change
@@ -1277,6 +1277,7 @@ protected virtual void JsonModelWriteCore(System.Text.Json.Utf8JsonWriter writer
12771277
public partial class FrontDoorWebApplicationFirewallPolicySettings : System.ClientModel.Primitives.IJsonModel<Azure.ResourceManager.FrontDoor.Models.FrontDoorWebApplicationFirewallPolicySettings>, System.ClientModel.Primitives.IPersistableModel<Azure.ResourceManager.FrontDoor.Models.FrontDoorWebApplicationFirewallPolicySettings>
12781278
{
12791279
public FrontDoorWebApplicationFirewallPolicySettings() { }
1280+
public int? CaptchaExpirationInMinutes { get { throw null; } set { } }
12801281
public string CustomBlockResponseBody { get { throw null; } set { } }
12811282
public int? CustomBlockResponseStatusCode { get { throw null; } set { } }
12821283
public Azure.ResourceManager.FrontDoor.Models.PolicyEnabledState? EnabledState { get { throw null; } set { } }
@@ -1753,6 +1754,7 @@ protected override void JsonModelWriteCore(System.Text.Json.Utf8JsonWriter write
17531754
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType Allow { get { throw null; } }
17541755
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType AnomalyScoring { get { throw null; } }
17551756
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType Block { get { throw null; } }
1757+
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType Captcha { get { throw null; } }
17561758
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType JSChallenge { get { throw null; } }
17571759
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType Log { get { throw null; } }
17581760
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType Redirect { get { throw null; } }
@@ -2081,6 +2083,7 @@ protected virtual void JsonModelWriteCore(System.Text.Json.Utf8JsonWriter writer
20812083
public static Azure.ResourceManager.FrontDoor.Models.WebApplicationRuleMatchOperator LessThan { get { throw null; } }
20822084
public static Azure.ResourceManager.FrontDoor.Models.WebApplicationRuleMatchOperator LessThanOrEqual { get { throw null; } }
20832085
public static Azure.ResourceManager.FrontDoor.Models.WebApplicationRuleMatchOperator RegEX { get { throw null; } }
2086+
public static Azure.ResourceManager.FrontDoor.Models.WebApplicationRuleMatchOperator ServiceTagMatch { get { throw null; } }
20842087
public bool Equals(Azure.ResourceManager.FrontDoor.Models.WebApplicationRuleMatchOperator other) { throw null; }
20852088
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
20862089
public override bool Equals(object obj) { throw null; }

sdk/frontdoor/Azure.ResourceManager.FrontDoor/api/Azure.ResourceManager.FrontDoor.netstandard2.0.cs

+3
Original file line numberDiff line numberDiff line change
@@ -1277,6 +1277,7 @@ protected virtual void JsonModelWriteCore(System.Text.Json.Utf8JsonWriter writer
12771277
public partial class FrontDoorWebApplicationFirewallPolicySettings : System.ClientModel.Primitives.IJsonModel<Azure.ResourceManager.FrontDoor.Models.FrontDoorWebApplicationFirewallPolicySettings>, System.ClientModel.Primitives.IPersistableModel<Azure.ResourceManager.FrontDoor.Models.FrontDoorWebApplicationFirewallPolicySettings>
12781278
{
12791279
public FrontDoorWebApplicationFirewallPolicySettings() { }
1280+
public int? CaptchaExpirationInMinutes { get { throw null; } set { } }
12801281
public string CustomBlockResponseBody { get { throw null; } set { } }
12811282
public int? CustomBlockResponseStatusCode { get { throw null; } set { } }
12821283
public Azure.ResourceManager.FrontDoor.Models.PolicyEnabledState? EnabledState { get { throw null; } set { } }
@@ -1753,6 +1754,7 @@ protected override void JsonModelWriteCore(System.Text.Json.Utf8JsonWriter write
17531754
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType Allow { get { throw null; } }
17541755
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType AnomalyScoring { get { throw null; } }
17551756
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType Block { get { throw null; } }
1757+
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType Captcha { get { throw null; } }
17561758
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType JSChallenge { get { throw null; } }
17571759
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType Log { get { throw null; } }
17581760
public static Azure.ResourceManager.FrontDoor.Models.RuleMatchActionType Redirect { get { throw null; } }
@@ -2081,6 +2083,7 @@ protected virtual void JsonModelWriteCore(System.Text.Json.Utf8JsonWriter writer
20812083
public static Azure.ResourceManager.FrontDoor.Models.WebApplicationRuleMatchOperator LessThan { get { throw null; } }
20822084
public static Azure.ResourceManager.FrontDoor.Models.WebApplicationRuleMatchOperator LessThanOrEqual { get { throw null; } }
20832085
public static Azure.ResourceManager.FrontDoor.Models.WebApplicationRuleMatchOperator RegEX { get { throw null; } }
2086+
public static Azure.ResourceManager.FrontDoor.Models.WebApplicationRuleMatchOperator ServiceTagMatch { get { throw null; } }
20842087
public bool Equals(Azure.ResourceManager.FrontDoor.Models.WebApplicationRuleMatchOperator other) { throw null; }
20852088
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
20862089
public override bool Equals(object obj) { throw null; }

sdk/frontdoor/Azure.ResourceManager.FrontDoor/src/Generated/Extensions/FrontDoorExtensions.cs

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/frontdoor/Azure.ResourceManager.FrontDoor/src/Generated/Extensions/MockableFrontDoorResourceGroupResource.cs

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/frontdoor/Azure.ResourceManager.FrontDoor/src/Generated/Extensions/MockableFrontDoorSubscriptionResource.cs

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/frontdoor/Azure.ResourceManager.FrontDoor/src/Generated/FrontDoorWebApplicationFirewallPolicyCollection.cs

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/frontdoor/Azure.ResourceManager.FrontDoor/src/Generated/FrontDoorWebApplicationFirewallPolicyResource.cs

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/frontdoor/Azure.ResourceManager.FrontDoor/src/Generated/Models/FrontDoorWebApplicationFirewallPolicySettings.Serialization.cs

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)