Skip to content
Closed
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 @@ -7714,8 +7714,6 @@ class ExpressRouteConnection(SubResource):
:type routing_weight: int
:param enable_internet_security: Enable internet security.
:type enable_internet_security: bool
:param express_route_gateway_bypass: Enable FastPath to vWan Firewall hub.
:type express_route_gateway_bypass: bool
:param routing_configuration: The Routing Configuration indicating the
associated and propagated route tables on this connection.
:type routing_configuration:
Expand All @@ -7737,7 +7735,6 @@ class ExpressRouteConnection(SubResource):
'authorization_key': {'key': 'properties.authorizationKey', 'type': 'str'},
'routing_weight': {'key': 'properties.routingWeight', 'type': 'int'},
'enable_internet_security': {'key': 'properties.enableInternetSecurity', 'type': 'bool'},
'express_route_gateway_bypass': {'key': 'properties.expressRouteGatewayBypass', 'type': 'bool'},
'routing_configuration': {'key': 'properties.routingConfiguration', 'type': 'RoutingConfiguration'},
'name': {'key': 'name', 'type': 'str'},
}
Expand All @@ -7749,7 +7746,6 @@ def __init__(self, **kwargs):
self.authorization_key = kwargs.get('authorization_key', None)
self.routing_weight = kwargs.get('routing_weight', None)
self.enable_internet_security = kwargs.get('enable_internet_security', None)
self.express_route_gateway_bypass = kwargs.get('express_route_gateway_bypass', None)
self.routing_configuration = kwargs.get('routing_configuration', None)
self.name = kwargs.get('name', None)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7714,8 +7714,6 @@ class ExpressRouteConnection(SubResource):
:type routing_weight: int
:param enable_internet_security: Enable internet security.
:type enable_internet_security: bool
:param express_route_gateway_bypass: Enable FastPath to vWan Firewall hub.
:type express_route_gateway_bypass: bool
:param routing_configuration: The Routing Configuration indicating the
associated and propagated route tables on this connection.
:type routing_configuration:
Expand All @@ -7737,19 +7735,17 @@ class ExpressRouteConnection(SubResource):
'authorization_key': {'key': 'properties.authorizationKey', 'type': 'str'},
'routing_weight': {'key': 'properties.routingWeight', 'type': 'int'},
'enable_internet_security': {'key': 'properties.enableInternetSecurity', 'type': 'bool'},
'express_route_gateway_bypass': {'key': 'properties.expressRouteGatewayBypass', 'type': 'bool'},
'routing_configuration': {'key': 'properties.routingConfiguration', 'type': 'RoutingConfiguration'},
'name': {'key': 'name', 'type': 'str'},
}

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:
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:
super(ExpressRouteConnection, self).__init__(id=id, **kwargs)
self.provisioning_state = None
self.express_route_circuit_peering = express_route_circuit_peering
self.authorization_key = authorization_key
self.routing_weight = routing_weight
self.enable_internet_security = enable_internet_security
self.express_route_gateway_bypass = express_route_gateway_bypass
self.routing_configuration = routing_configuration
self.name = name

Expand Down