Skip to content

Commit 67901f4

Browse files
authored
Network: remove validation rules for properties of ApplicationGatewayFirewallExclusion (#1357)
1 parent 7f68e50 commit 67901f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure-mgmt-network/src/main/java/com/microsoft/azure/management/network/ApplicationGatewayFirewallExclusion.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@ public class ApplicationGatewayFirewallExclusion {
1717
/**
1818
* The variable to be excluded.
1919
*/
20-
@JsonProperty(value = "matchVariable", required = true)
20+
@JsonProperty(value = "matchVariable")
2121
private String matchVariable;
2222

2323
/**
2424
* When matchVariable is a collection, operate on the selector to specify
2525
* which elements in the collection this exclusion applies to.
2626
*/
27-
@JsonProperty(value = "selectorMatchOperator", required = true)
27+
@JsonProperty(value = "selectorMatchOperator")
2828
private String selectorMatchOperator;
2929

3030
/**
3131
* When matchVariable is a collection, operator used to specify which
3232
* elements in the collection this exclusion applies to.
3333
*/
34-
@JsonProperty(value = "selector", required = true)
34+
@JsonProperty(value = "selector")
3535
private String selector;
3636

3737
/**

0 commit comments

Comments
 (0)