Skip to content

Commit

Permalink
Generated from c129d5d0236058b60b71ac6eb485a85c93a41c66 (#2739)
Browse files Browse the repository at this point in the history
network: add https probe
  • Loading branch information
AutorestCI authored Jun 13, 2018
1 parent 90ef4d4 commit 936396d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ class ProbeProtocol(str, Enum):

http = "Http"
tcp = "Tcp"
https = "Https"


class NetworkOperationStatus(str, Enum):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ class Probe(SubResource):
:vartype load_balancing_rules:
list[~azure.mgmt.network.v2018_02_01.models.SubResource]
:param protocol: Required. The protocol of the end point. Possible values
are: 'Http' or 'Tcp'. If 'Tcp' is specified, a received ACK is required
for the probe to be successful. If 'Http' is specified, a 200 OK response
from the specifies URI is required for the probe to be successful.
Possible values include: 'Http', 'Tcp'
are: 'Http', 'Tcp' or 'Https'. If 'Tcp' is specified, a received ACK is
required for the probe to be successful. If 'Http' or 'Https' is
specified, a 200 OK response from the specifies URI is required for the
probe to be successful. Possible values include: 'Http', 'Tcp', 'Https'
:type protocol: str or
~azure.mgmt.network.v2018_02_01.models.ProbeProtocol
:param port: Required. The port for communicating the probe. Possible
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ class Probe(SubResource):
:vartype load_balancing_rules:
list[~azure.mgmt.network.v2018_02_01.models.SubResource]
:param protocol: Required. The protocol of the end point. Possible values
are: 'Http' or 'Tcp'. If 'Tcp' is specified, a received ACK is required
for the probe to be successful. If 'Http' is specified, a 200 OK response
from the specifies URI is required for the probe to be successful.
Possible values include: 'Http', 'Tcp'
are: 'Http', 'Tcp' or 'Https'. If 'Tcp' is specified, a received ACK is
required for the probe to be successful. If 'Http' or 'Https' is
specified, a 200 OK response from the specifies URI is required for the
probe to be successful. Possible values include: 'Http', 'Tcp', 'Https'
:type protocol: str or
~azure.mgmt.network.v2018_02_01.models.ProbeProtocol
:param port: Required. The port for communicating the probe. Possible
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ class ProbeProtocol(str, Enum):

http = "Http"
tcp = "Tcp"
https = "Https"


class NetworkOperationStatus(str, Enum):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ class Probe(SubResource):
:vartype load_balancing_rules:
list[~azure.mgmt.network.v2018_04_01.models.SubResource]
:param protocol: Required. The protocol of the end point. Possible values
are: 'Http' or 'Tcp'. If 'Tcp' is specified, a received ACK is required
for the probe to be successful. If 'Http' is specified, a 200 OK response
from the specifies URI is required for the probe to be successful.
Possible values include: 'Http', 'Tcp'
are: 'Http', 'Tcp', or 'Https'. If 'Tcp' is specified, a received ACK is
required for the probe to be successful. If 'Http' or 'Https' is
specified, a 200 OK response from the specifies URI is required for the
probe to be successful. Possible values include: 'Http', 'Tcp', 'Https'
:type protocol: str or
~azure.mgmt.network.v2018_04_01.models.ProbeProtocol
:param port: Required. The port for communicating the probe. Possible
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ class Probe(SubResource):
:vartype load_balancing_rules:
list[~azure.mgmt.network.v2018_04_01.models.SubResource]
:param protocol: Required. The protocol of the end point. Possible values
are: 'Http' or 'Tcp'. If 'Tcp' is specified, a received ACK is required
for the probe to be successful. If 'Http' is specified, a 200 OK response
from the specifies URI is required for the probe to be successful.
Possible values include: 'Http', 'Tcp'
are: 'Http', 'Tcp', or 'Https'. If 'Tcp' is specified, a received ACK is
required for the probe to be successful. If 'Http' or 'Https' is
specified, a 200 OK response from the specifies URI is required for the
probe to be successful. Possible values include: 'Http', 'Tcp', 'Https'
:type protocol: str or
~azure.mgmt.network.v2018_04_01.models.ProbeProtocol
:param port: Required. The port for communicating the probe. Possible
Expand Down

0 comments on commit 936396d

Please sign in to comment.