@@ -7714,8 +7714,6 @@ class ExpressRouteConnection(SubResource):
77147714 :type routing_weight: int
77157715 :param enable_internet_security: Enable internet security.
77167716 :type enable_internet_security: bool
7717- :param express_route_gateway_bypass: Enable FastPath to vWan Firewall hub.
7718- :type express_route_gateway_bypass: bool
77197717 :param routing_configuration: The Routing Configuration indicating the
77207718 associated and propagated route tables on this connection.
77217719 :type routing_configuration:
@@ -7737,19 +7735,17 @@ class ExpressRouteConnection(SubResource):
77377735 'authorization_key': {'key': 'properties.authorizationKey', 'type': 'str'},
77387736 'routing_weight': {'key': 'properties.routingWeight', 'type': 'int'},
77397737 'enable_internet_security': {'key': 'properties.enableInternetSecurity', 'type': 'bool'},
7740- 'express_route_gateway_bypass': {'key': 'properties.expressRouteGatewayBypass', 'type': 'bool'},
77417738 'routing_configuration': {'key': 'properties.routingConfiguration', 'type': 'RoutingConfiguration'},
77427739 'name': {'key': 'name', 'type': 'str'},
77437740 }
77447741
7745- def __init__(self, *, express_route_circuit_peering, name: str, id: str=None, authorization_key: str=None, routing_weight: int=None, enable_internet_security: bool=None, express_route_gateway_bypass: bool=None, routing_configuration=None, **kwargs) -> None:
7742+ def __init__(self, *, express_route_circuit_peering, name: str, id: str=None, authorization_key: str=None, routing_weight: int=None, enable_internet_security: bool=None, routing_configuration=None, **kwargs) -> None:
77467743 super(ExpressRouteConnection, self).__init__(id=id, **kwargs)
77477744 self.provisioning_state = None
77487745 self.express_route_circuit_peering = express_route_circuit_peering
77497746 self.authorization_key = authorization_key
77507747 self.routing_weight = routing_weight
77517748 self.enable_internet_security = enable_internet_security
7752- self.express_route_gateway_bypass = express_route_gateway_bypass
77537749 self.routing_configuration = routing_configuration
77547750 self.name = name
77557751
0 commit comments