diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGateway.cs b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGateway.cs
index b89614fe7d1c..ca14e17c8409 100644
--- a/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGateway.cs
+++ b/src/SDKs/Network/Management.Network/Generated/Models/VirtualNetworkGateway.cs
@@ -63,11 +63,6 @@ public VirtualNetworkGateway()
/// configurations.
/// Virtual network gateway's BGP speaker
/// settings.
- /// The radius server address property of
- /// the VirtualNetworkGateway resource for vpn client
- /// connection.
- /// The radius secret property of the
- /// VirtualNetworkGateway resource for vpn client connection.
/// The resource GUID property of the
/// VirtualNetworkGateway resource.
/// The provisioning state of the
@@ -75,7 +70,7 @@ public VirtualNetworkGateway()
/// 'Deleting', and 'Failed'.
/// Gets a unique read-only string that changes
/// whenever the resource is updated.
- public VirtualNetworkGateway(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), IList ipConfigurations = default(IList), string gatewayType = default(string), string vpnType = default(string), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string radiusServer = default(string), string radiusSecret = default(string), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string))
+ public VirtualNetworkGateway(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), IList ipConfigurations = default(IList), string gatewayType = default(string), string vpnType = default(string), bool? enableBgp = default(bool?), bool? activeActive = default(bool?), SubResource gatewayDefaultSite = default(SubResource), VirtualNetworkGatewaySku sku = default(VirtualNetworkGatewaySku), VpnClientConfiguration vpnClientConfiguration = default(VpnClientConfiguration), BgpSettings bgpSettings = default(BgpSettings), string resourceGuid = default(string), string provisioningState = default(string), string etag = default(string))
: base(id, name, type, location, tags)
{
IpConfigurations = ipConfigurations;
@@ -87,8 +82,6 @@ public VirtualNetworkGateway()
Sku = sku;
VpnClientConfiguration = vpnClientConfiguration;
BgpSettings = bgpSettings;
- RadiusServer = radiusServer;
- RadiusSecret = radiusSecret;
ResourceGuid = resourceGuid;
ProvisioningState = provisioningState;
Etag = etag;
@@ -163,20 +156,6 @@ public VirtualNetworkGateway()
[JsonProperty(PropertyName = "properties.bgpSettings")]
public BgpSettings BgpSettings { get; set; }
- ///
- /// Gets or sets the radius server address property of the
- /// VirtualNetworkGateway resource for vpn client connection.
- ///
- [JsonProperty(PropertyName = "properties.radiusServer")]
- public string RadiusServer { get; set; }
-
- ///
- /// Gets or sets the radius secret property of the
- /// VirtualNetworkGateway resource for vpn client connection.
- ///
- [JsonProperty(PropertyName = "properties.radiusSecret")]
- public string RadiusSecret { get; set; }
-
///
/// Gets or sets the resource GUID property of the
/// VirtualNetworkGateway resource.
diff --git a/src/SDKs/Network/Management.Network/Generated/Models/VpnClientConfiguration.cs b/src/SDKs/Network/Management.Network/Generated/Models/VpnClientConfiguration.cs
index 683b63d49a2b..50cbe81871c2 100644
--- a/src/SDKs/Network/Management.Network/Generated/Models/VpnClientConfiguration.cs
+++ b/src/SDKs/Network/Management.Network/Generated/Models/VpnClientConfiguration.cs
@@ -42,12 +42,19 @@ public VpnClientConfiguration()
/// Virtual network gateway.
/// VpnClientProtocols for Virtual
/// network gateway.
- public VpnClientConfiguration(AddressSpace vpnClientAddressPool = default(AddressSpace), IList vpnClientRootCertificates = default(IList), IList vpnClientRevokedCertificates = default(IList), IList vpnClientProtocols = default(IList))
+ /// The radius server address
+ /// property of the VirtualNetworkGateway resource for vpn client
+ /// connection.
+ /// The radius secret property of the
+ /// VirtualNetworkGateway resource for vpn client connection.
+ public VpnClientConfiguration(AddressSpace vpnClientAddressPool = default(AddressSpace), IList vpnClientRootCertificates = default(IList), IList vpnClientRevokedCertificates = default(IList), IList vpnClientProtocols = default(IList), string radiusServerAddress = default(string), string radiusServerSecret = default(string))
{
VpnClientAddressPool = vpnClientAddressPool;
VpnClientRootCertificates = vpnClientRootCertificates;
VpnClientRevokedCertificates = vpnClientRevokedCertificates;
VpnClientProtocols = vpnClientProtocols;
+ RadiusServerAddress = radiusServerAddress;
+ RadiusServerSecret = radiusServerSecret;
CustomInit();
}
@@ -82,5 +89,19 @@ public VpnClientConfiguration()
[JsonProperty(PropertyName = "vpnClientProtocols")]
public IList VpnClientProtocols { get; set; }
+ ///
+ /// Gets or sets the radius server address property of the
+ /// VirtualNetworkGateway resource for vpn client connection.
+ ///
+ [JsonProperty(PropertyName = "radiusServerAddress")]
+ public string RadiusServerAddress { get; set; }
+
+ ///
+ /// Gets or sets the radius secret property of the
+ /// VirtualNetworkGateway resource for vpn client connection.
+ ///
+ [JsonProperty(PropertyName = "radiusServerSecret")]
+ public string RadiusServerSecret { get; set; }
+
}
}