Skip to content

Commit 701e15a

Browse files
author
SDK Automation
committed
Generated from 73677f19181157fb0c154a084922a92fa6b528cd
1 parent df84a01 commit 701e15a

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

sdk/network/azure-mgmt-network/azure/mgmt/network/v2020_07_01/models/_models.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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,7 +7735,6 @@ 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
}
@@ -7749,7 +7746,6 @@ def __init__(self, **kwargs):
77497746
self.authorization_key = kwargs.get('authorization_key', None)
77507747
self.routing_weight = kwargs.get('routing_weight', None)
77517748
self.enable_internet_security = kwargs.get('enable_internet_security', None)
7752-
self.express_route_gateway_bypass = kwargs.get('express_route_gateway_bypass', None)
77537749
self.routing_configuration = kwargs.get('routing_configuration', None)
77547750
self.name = kwargs.get('name', None)
77557751

sdk/network/azure-mgmt-network/azure/mgmt/network/v2020_07_01/models/_models_py3.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)