@@ -3748,7 +3748,7 @@ class ApplicationGatewayOnDemandProbe(_serialization.Model):
37483748 :ivar host: Host name to send the probe to.
37493749 :vartype host: str
37503750 :ivar path: Relative path of probe. Valid path starts from '/'. Probe is sent to
3751- :code:`<Protocol>`://:code:`<host>`::code:`<port>`:code:`<path>`.
3751+ :code:`<Protocol>`://\\ :code:`<host>`:\\ :code:`<port>`\\ :code:`<path>`.
37523752 :vartype path: str
37533753 :ivar timeout: The probe timeout in seconds. Probe marked as failed if valid response is not
37543754 received with this timeout period. Acceptable values are from 1 second to 86400 seconds.
@@ -3797,7 +3797,7 @@ def __init__(
37973797 :keyword host: Host name to send the probe to.
37983798 :paramtype host: str
37993799 :keyword path: Relative path of probe. Valid path starts from '/'. Probe is sent to
3800- :code:`<Protocol>`://:code:`<host>`::code:`<port>`:code:`<path>`.
3800+ :code:`<Protocol>`://\\ :code:`<host>`:\\ :code:`<port>`\\ :code:`<path>`.
38013801 :paramtype path: str
38023802 :keyword timeout: The probe timeout in seconds. Probe marked as failed if valid response is not
38033803 received with this timeout period. Acceptable values are from 1 second to 86400 seconds.
@@ -4301,7 +4301,7 @@ class ApplicationGatewayProbe(SubResource):
43014301 :ivar host: Host name to send the probe to.
43024302 :vartype host: str
43034303 :ivar path: Relative path of probe. Valid path starts from '/'. Probe is sent to
4304- :code:`<Protocol>`://:code:`<host>`::code:`<port>`:code:`<path>`.
4304+ :code:`<Protocol>`://\\ :code:`<host>`:\\ :code:`<port>`\\ :code:`<path>`.
43054305 :vartype path: str
43064306 :ivar interval: The probing interval in seconds. This is the time interval between two
43074307 consecutive probes. Acceptable values are from 1 second to 86400 seconds.
@@ -4391,7 +4391,7 @@ def __init__(
43914391 :keyword host: Host name to send the probe to.
43924392 :paramtype host: str
43934393 :keyword path: Relative path of probe. Valid path starts from '/'. Probe is sent to
4394- :code:`<Protocol>`://:code:`<host>`::code:`<port>`:code:`<path>`.
4394+ :code:`<Protocol>`://\\ :code:`<host>`:\\ :code:`<port>`\\ :code:`<path>`.
43954395 :paramtype path: str
43964396 :keyword interval: The probing interval in seconds. This is the time interval between two
43974397 consecutive probes. Acceptable values are from 1 second to 86400 seconds.
@@ -24702,7 +24702,7 @@ class NetworkInterfaceIPConfiguration(SubResource):
2470224702 :ivar load_balancer_inbound_nat_rules: A list of references of LoadBalancerInboundNatRules.
2470324703 :vartype load_balancer_inbound_nat_rules: list[~azure.mgmt.network.models.InboundNatRule]
2470424704 :ivar private_ip_address: Private IP address of the IP configuration. It can be a single IP
24705- address or a CIDR block in the format :code:`<address>`/:code:`<prefix-length>`.
24705+ address or a CIDR block in the format :code:`<address>`/\\ :code:`<prefix-length>`.
2470624706 :vartype private_ip_address: str
2470724707 :ivar private_ip_address_prefix_length: The private IP address prefix length. If specified and
2470824708 the allocation method is dynamic, the service will allocate a CIDR block instead of a single IP
@@ -24822,7 +24822,7 @@ def __init__(
2482224822 :keyword load_balancer_inbound_nat_rules: A list of references of LoadBalancerInboundNatRules.
2482324823 :paramtype load_balancer_inbound_nat_rules: list[~azure.mgmt.network.models.InboundNatRule]
2482424824 :keyword private_ip_address: Private IP address of the IP configuration. It can be a single IP
24825- address or a CIDR block in the format :code:`<address>`/:code:`<prefix-length>`.
24825+ address or a CIDR block in the format :code:`<address>`/\\ :code:`<prefix-length>`.
2482624826 :paramtype private_ip_address: str
2482724827 :keyword private_ip_address_prefix_length: The private IP address prefix length. If specified
2482824828 and the allocation method is dynamic, the service will allocate a CIDR block instead of a
@@ -35043,8 +35043,6 @@ class StaticRoutesConfig(_serialization.Model):
3504335043 """Configuration for static routes on this HubVnetConnectionConfiguration for static routes on
3504435044 this HubVnetConnection.
3504535045
35046- Variables are only populated by the server, and will be ignored when sending a request.
35047-
3504835046 :ivar propagate_static_routes: Boolean indicating whether static routes on this connection are
3504935047 automatically propagate to route tables which this connection propagates to.
3505035048 :vartype propagate_static_routes: bool
@@ -35054,10 +35052,6 @@ class StaticRoutesConfig(_serialization.Model):
3505435052 ~azure.mgmt.network.models.VnetLocalRouteOverrideCriteria
3505535053 """
3505635054
35057- _validation = {
35058- "propagate_static_routes": {"readonly": True},
35059- }
35060-
3506135055 _attribute_map = {
3506235056 "propagate_static_routes": {"key": "propagateStaticRoutes", "type": "bool"},
3506335057 "vnet_local_route_override_criteria": {"key": "vnetLocalRouteOverrideCriteria", "type": "str"},
@@ -35066,17 +35060,21 @@ class StaticRoutesConfig(_serialization.Model):
3506635060 def __init__(
3506735061 self,
3506835062 *,
35063+ propagate_static_routes: Optional[bool] = None,
3506935064 vnet_local_route_override_criteria: Optional[Union[str, "_models.VnetLocalRouteOverrideCriteria"]] = None,
3507035065 **kwargs: Any
3507135066 ) -> None:
3507235067 """
35068+ :keyword propagate_static_routes: Boolean indicating whether static routes on this connection
35069+ are automatically propagate to route tables which this connection propagates to.
35070+ :paramtype propagate_static_routes: bool
3507335071 :keyword vnet_local_route_override_criteria: Parameter determining whether NVA in spoke vnet is
3507435072 bypassed for traffic with destination in spoke. Known values are: "Contains" and "Equal".
3507535073 :paramtype vnet_local_route_override_criteria: str or
3507635074 ~azure.mgmt.network.models.VnetLocalRouteOverrideCriteria
3507735075 """
3507835076 super().__init__(**kwargs)
35079- self.propagate_static_routes = None
35077+ self.propagate_static_routes = propagate_static_routes
3508035078 self.vnet_local_route_override_criteria = vnet_local_route_override_criteria
3508135079
3508235080
0 commit comments