Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ class MatchVariable(str, Enum):
request_header = "RequestHeader"
request_body = "RequestBody"
cookies = "Cookies"
socket_addr = "SocketAddr"


class Operator(str, Enum):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down