diff --git a/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/front_door_management_client_enums.py b/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/front_door_management_client_enums.py index b2cea7051432..84c635ac2f6f 100644 --- a/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/front_door_management_client_enums.py +++ b/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/front_door_management_client_enums.py @@ -197,6 +197,7 @@ class MatchVariable(str, Enum): request_header = "RequestHeader" request_body = "RequestBody" cookies = "Cookies" + socket_addr = "SocketAddr" class Operator(str, Enum): diff --git a/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/match_condition.py b/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/match_condition.py index bbd75b247d3e..1b44b3e1c91d 100644 --- a/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/match_condition.py +++ b/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/match_condition.py @@ -19,7 +19,8 @@ class MatchCondition(Model): :param match_variable: Required. Request variable to compare with. Possible values include: 'RemoteAddr', 'RequestMethod', 'QueryString', - 'PostArgs', 'RequestUri', 'RequestHeader', 'RequestBody', 'Cookies' + 'PostArgs', 'RequestUri', 'RequestHeader', 'RequestBody', 'Cookies', + 'SocketAddr' :type match_variable: str or ~azure.mgmt.frontdoor.models.MatchVariable :param selector: Match against a specific key from the QueryString, PostArgs, RequestHeader or Cookies variables. Default is null. diff --git a/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/match_condition_py3.py b/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/match_condition_py3.py index 18d040a78eb5..ea65422bff52 100644 --- a/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/match_condition_py3.py +++ b/sdk/network/azure-mgmt-frontdoor/azure/mgmt/frontdoor/models/match_condition_py3.py @@ -19,7 +19,8 @@ class MatchCondition(Model): :param match_variable: Required. Request variable to compare with. Possible values include: 'RemoteAddr', 'RequestMethod', 'QueryString', - 'PostArgs', 'RequestUri', 'RequestHeader', 'RequestBody', 'Cookies' + 'PostArgs', 'RequestUri', 'RequestHeader', 'RequestBody', 'Cookies', + 'SocketAddr' :type match_variable: str or ~azure.mgmt.frontdoor.models.MatchVariable :param selector: Match against a specific key from the QueryString, PostArgs, RequestHeader or Cookies variables. Default is null.