diff --git a/sdk/netapp/Microsoft.Azure.Management.NetApp/src/Generated/Models/MountTarget.cs b/sdk/netapp/Microsoft.Azure.Management.NetApp/src/Generated/Models/MountTarget.cs
index 09dbdcc69947..b6bc829aed69 100644
--- a/sdk/netapp/Microsoft.Azure.Management.NetApp/src/Generated/Models/MountTarget.cs
+++ b/sdk/netapp/Microsoft.Azure.Management.NetApp/src/Generated/Models/MountTarget.cs
@@ -42,8 +42,13 @@ public MountTarget()
/// Resource tags
/// mountTargetId
/// ipAddress
+ /// subnet
+ /// startIp
+ /// endIp
+ /// gateway
+ /// netmask
/// smbServerFQDN
- public MountTarget(string location, string fileSystemId, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string mountTargetId = default(string), string ipAddress = default(string), string smbServerFqdn = default(string))
+ public MountTarget(string location, string fileSystemId, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string mountTargetId = default(string), string ipAddress = default(string), string subnet = default(string), string startIp = default(string), string endIp = default(string), string gateway = default(string), string netmask = default(string), string smbServerFqdn = default(string))
{
Location = location;
Id = id;
@@ -53,6 +58,11 @@ public MountTarget()
MountTargetId = mountTargetId;
FileSystemId = fileSystemId;
IpAddress = ipAddress;
+ Subnet = subnet;
+ StartIp = startIp;
+ EndIp = endIp;
+ Gateway = gateway;
+ Netmask = netmask;
SmbServerFqdn = smbServerFqdn;
CustomInit();
}
@@ -119,6 +129,55 @@ public MountTarget()
[JsonProperty(PropertyName = "properties.ipAddress")]
public string IpAddress { get; private set; }
+ ///
+ /// Gets or sets subnet
+ ///
+ ///
+ /// The subnet
+ ///
+ [JsonProperty(PropertyName = "properties.subnet")]
+ public string Subnet { get; set; }
+
+ ///
+ /// Gets or sets startIp
+ ///
+ ///
+ /// The start of IPv4 address range to use when creating a new mount
+ /// target
+ ///
+ [JsonProperty(PropertyName = "properties.startIp")]
+ public string StartIp { get; set; }
+
+ ///
+ /// Gets or sets endIp
+ ///
+ ///
+ /// The end of IPv4 address range to use when creating a new mount
+ /// target
+ ///
+ [JsonProperty(PropertyName = "properties.endIp")]
+ public string EndIp { get; set; }
+
+ ///
+ /// Gets or sets gateway
+ ///
+ ///
+ /// The gateway of the IPv4 address range to use when creating a new
+ /// mount target
+ ///
+ [JsonProperty(PropertyName = "properties.gateway")]
+ public string Gateway { get; set; }
+
+ ///
+ /// Gets or sets netmask
+ ///
+ ///
+ /// The netmask of the IPv4 address range to use when creating a new
+ /// mount target
+ ///
+ [JsonProperty(PropertyName = "properties.netmask")]
+ public string Netmask { get; set; }
+
///
/// Gets or sets smbServerFQDN
///
diff --git a/sdk/netapp/Microsoft.Azure.Management.NetApp/src/Generated/Models/MountTargetList.cs b/sdk/netapp/Microsoft.Azure.Management.NetApp/src/Generated/Models/MountTargetList.cs
deleted file mode 100644
index f5b5140dc23a..000000000000
--- a/sdk/netapp/Microsoft.Azure.Management.NetApp/src/Generated/Models/MountTargetList.cs
+++ /dev/null
@@ -1,53 +0,0 @@
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-// Licensed under the MIT License. See License.txt in the project root for
-// license information.
-//
-// Code generated by Microsoft (R) AutoRest Code Generator.
-// Changes may cause incorrect behavior and will be lost if the code is
-// regenerated.
-//
-
-namespace Microsoft.Azure.Management.NetApp.Models
-{
- using Newtonsoft.Json;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
-
- ///
- /// List of Mount Targets
- ///
- public partial class MountTargetList
- {
- ///
- /// Initializes a new instance of the MountTargetList class.
- ///
- public MountTargetList()
- {
- CustomInit();
- }
-
- ///
- /// Initializes a new instance of the MountTargetList class.
- ///
- /// A list of Mount targets
- public MountTargetList(IList value = default(IList))
- {
- Value = value;
- CustomInit();
- }
-
- ///
- /// An initialization method that performs custom operations like setting defaults
- ///
- partial void CustomInit();
-
- ///
- /// Gets or sets a list of Mount targets
- ///
- [JsonProperty(PropertyName = "value")]
- public IList Value { get; set; }
-
- }
-}
diff --git a/sdk/netapp/Microsoft.Azure.Management.NetApp/src/Generated/SdkInfo_NetAppManagementClient.cs b/sdk/netapp/Microsoft.Azure.Management.NetApp/src/Generated/SdkInfo_NetAppManagementClient.cs
index 21ac3ed07c61..c00a34f6e552 100644
--- a/sdk/netapp/Microsoft.Azure.Management.NetApp/src/Generated/SdkInfo_NetAppManagementClient.cs
+++ b/sdk/netapp/Microsoft.Azure.Management.NetApp/src/Generated/SdkInfo_NetAppManagementClient.cs
@@ -28,16 +28,5 @@ public static IEnumerable> ApiInfo_NetAppManagemen
}.AsEnumerable();
}
}
- // BEGIN: Code Generation Metadata Section
- public static readonly String AutoRestVersion = "2.0.4413";
- public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413";
- public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/netapp/resource-manager/readme.md --csharp --version=2.0.4413 --reflect-api-versions --csharp-sdks-folder=C:\\Users\\audunn\\source\\repos\\audunn\\azure-sdk-for-net\\sdk";
- public static readonly String GithubForkName = "Azure";
- public static readonly String GithubBranchName = "master";
- public static readonly String GithubCommidId = "4e000b4d67f586312c1ebec22db24e2a80cd7bde";
- public static readonly String CodeGenerationErrors = "";
- public static readonly String GithubRepoName = "azure-rest-api-specs";
- // END: Code Generation Metadata Section
}
}
-