Skip to content

Commit 2a6cb1b

Browse files
author
SDKAuto
committed
CodeGen from PR 12903 in Azure/azure-rest-api-specs
Merge 32d3c3a613530f5380b9406805f7c698ea6288fe into a1ce8e031b1a6f616839d5f9bc07cbd07e0deadb
1 parent 9999d28 commit 2a6cb1b

File tree

2 files changed

+22
-18
lines changed

2 files changed

+22
-18
lines changed

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

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19733,11 +19733,13 @@ class VirtualNetworkGateway(Resource):
1973319733
:ivar inbound_dns_forwarding_endpoint: The IP address allocated by the gateway to which dns
1973419734
requests can be sent.
1973519735
:vartype inbound_dns_forwarding_endpoint: str
19736-
:param virtual_network_extended_location_resource_id: MAS FIJI customer vnet resource id.
19736+
:param v_net_extended_location_resource_id: MAS FIJI customer vnet resource id.
1973719737
VirtualNetworkGateway of type local gateway is associated with the customer vnet.
19738-
:type virtual_network_extended_location_resource_id: str
19739-
:param extended_location: The extended location of type local virtual network gateway.
19740-
:type extended_location: ~azure.mgmt.network.v2020_08_01.models.ExtendedLocation
19738+
:type v_net_extended_location_resource_id: str
19739+
:param virtual_network_extended_location: The extended location of type local virtual network
19740+
gateway.
19741+
:type virtual_network_extended_location:
19742+
~azure.mgmt.network.v2020_08_01.models.ExtendedLocation
1974119743
"""
1974219744

1974319745
_validation = {
@@ -19772,8 +19774,8 @@ class VirtualNetworkGateway(Resource):
1977219774
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
1977319775
'enable_dns_forwarding': {'key': 'properties.enableDnsForwarding', 'type': 'bool'},
1977419776
'inbound_dns_forwarding_endpoint': {'key': 'properties.inboundDnsForwardingEndpoint', 'type': 'str'},
19775-
'virtual_network_extended_location_resource_id': {'key': 'properties.virtualNetworkExtendedLocationResourceId', 'type': 'str'},
19776-
'extended_location': {'key': 'properties.extendedLocation', 'type': 'ExtendedLocation'},
19777+
'v_net_extended_location_resource_id': {'key': 'properties.vNetExtendedLocationResourceId', 'type': 'str'},
19778+
'virtual_network_extended_location': {'key': 'properties.virtualNetworkExtendedLocation', 'type': 'ExtendedLocation'},
1977719779
}
1977819780

1977919781
def __init__(
@@ -19798,8 +19800,8 @@ def __init__(
1979819800
self.provisioning_state = None
1979919801
self.enable_dns_forwarding = kwargs.get('enable_dns_forwarding', None)
1980019802
self.inbound_dns_forwarding_endpoint = None
19801-
self.virtual_network_extended_location_resource_id = kwargs.get('virtual_network_extended_location_resource_id', None)
19802-
self.extended_location = kwargs.get('extended_location', None)
19803+
self.v_net_extended_location_resource_id = kwargs.get('v_net_extended_location_resource_id', None)
19804+
self.virtual_network_extended_location = kwargs.get('virtual_network_extended_location', None)
1980319805

1980419806

1980519807
class VirtualNetworkGatewayConnection(Resource):

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

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21939,11 +21939,13 @@ class VirtualNetworkGateway(Resource):
2193921939
:ivar inbound_dns_forwarding_endpoint: The IP address allocated by the gateway to which dns
2194021940
requests can be sent.
2194121941
:vartype inbound_dns_forwarding_endpoint: str
21942-
:param virtual_network_extended_location_resource_id: MAS FIJI customer vnet resource id.
21942+
:param v_net_extended_location_resource_id: MAS FIJI customer vnet resource id.
2194321943
VirtualNetworkGateway of type local gateway is associated with the customer vnet.
21944-
:type virtual_network_extended_location_resource_id: str
21945-
:param extended_location: The extended location of type local virtual network gateway.
21946-
:type extended_location: ~azure.mgmt.network.v2020_08_01.models.ExtendedLocation
21944+
:type v_net_extended_location_resource_id: str
21945+
:param virtual_network_extended_location: The extended location of type local virtual network
21946+
gateway.
21947+
:type virtual_network_extended_location:
21948+
~azure.mgmt.network.v2020_08_01.models.ExtendedLocation
2194721949
"""
2194821950

2194921951
_validation = {
@@ -21978,8 +21980,8 @@ class VirtualNetworkGateway(Resource):
2197821980
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
2197921981
'enable_dns_forwarding': {'key': 'properties.enableDnsForwarding', 'type': 'bool'},
2198021982
'inbound_dns_forwarding_endpoint': {'key': 'properties.inboundDnsForwardingEndpoint', 'type': 'str'},
21981-
'virtual_network_extended_location_resource_id': {'key': 'properties.virtualNetworkExtendedLocationResourceId', 'type': 'str'},
21982-
'extended_location': {'key': 'properties.extendedLocation', 'type': 'ExtendedLocation'},
21983+
'v_net_extended_location_resource_id': {'key': 'properties.vNetExtendedLocationResourceId', 'type': 'str'},
21984+
'virtual_network_extended_location': {'key': 'properties.virtualNetworkExtendedLocation', 'type': 'ExtendedLocation'},
2198321985
}
2198421986

2198521987
def __init__(
@@ -22001,8 +22003,8 @@ def __init__(
2200122003
bgp_settings: Optional["BgpSettings"] = None,
2200222004
custom_routes: Optional["AddressSpace"] = None,
2200322005
enable_dns_forwarding: Optional[bool] = None,
22004-
virtual_network_extended_location_resource_id: Optional[str] = None,
22005-
extended_location: Optional["ExtendedLocation"] = None,
22006+
v_net_extended_location_resource_id: Optional[str] = None,
22007+
virtual_network_extended_location: Optional["ExtendedLocation"] = None,
2200622008
**kwargs
2200722009
):
2200822010
super(VirtualNetworkGateway, self).__init__(id=id, location=location, tags=tags, **kwargs)
@@ -22023,8 +22025,8 @@ def __init__(
2202322025
self.provisioning_state = None
2202422026
self.enable_dns_forwarding = enable_dns_forwarding
2202522027
self.inbound_dns_forwarding_endpoint = None
22026-
self.virtual_network_extended_location_resource_id = virtual_network_extended_location_resource_id
22027-
self.extended_location = extended_location
22028+
self.v_net_extended_location_resource_id = v_net_extended_location_resource_id
22029+
self.virtual_network_extended_location = virtual_network_extended_location
2202822030

2202922031

2203022032
class VirtualNetworkGatewayConnection(Resource):

0 commit comments

Comments
 (0)