From 1ad53b9b4335e69760cff78d986f4718ab352e73 Mon Sep 17 00:00:00 2001 From: SDK Automation Date: Tue, 12 May 2020 09:28:43 +0000 Subject: [PATCH] Generated from d6236f49cf3a2e861cbb11e3d071d24a70689bd6 netapp trenton pipeline --- .../netapp/mgmt/2019-11-01/netapp/models.go | 18 +++++++++++------- .../netapp/mgmt/2019-11-01/netapp/version.go | 2 +- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/services/netapp/mgmt/2019-11-01/netapp/models.go b/services/netapp/mgmt/2019-11-01/netapp/models.go index 42a57959e6b2..3e1d5e266660 100644 --- a/services/netapp/mgmt/2019-11-01/netapp/models.go +++ b/services/netapp/mgmt/2019-11-01/netapp/models.go @@ -800,12 +800,6 @@ func (mt *MountTarget) UnmarshalJSON(body []byte) error { return nil } -// MountTargetList list of Mount Targets -type MountTargetList struct { - // Value - A list of Mount targets - Value *[]MountTarget `json:"value,omitempty"` -} - // MountTargetProperties mount target properties type MountTargetProperties struct { // MountTargetID - READ-ONLY; UUID v4 used to identify the MountTarget @@ -814,6 +808,16 @@ type MountTargetProperties struct { FileSystemID *string `json:"fileSystemId,omitempty"` // IPAddress - READ-ONLY; The mount target's IPv4 address IPAddress *string `json:"ipAddress,omitempty"` + // Subnet - The subnet + Subnet *string `json:"subnet,omitempty"` + // StartIP - The start of IPv4 address range to use when creating a new mount target + StartIP *string `json:"startIp,omitempty"` + // EndIP - The end of IPv4 address range to use when creating a new mount target + EndIP *string `json:"endIp,omitempty"` + // Gateway - The gateway of the IPv4 address range to use when creating a new mount target + Gateway *string `json:"gateway,omitempty"` + // Netmask - The netmask of the IPv4 address range to use when creating a new mount target + Netmask *string `json:"netmask,omitempty"` // SmbServerFqdn - The SMB server's Fully Qualified Domain Name, FQDN SmbServerFqdn *string `json:"smbServerFqdn,omitempty"` } @@ -1514,7 +1518,7 @@ type VolumeProperties struct { // SubnetID - The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes SubnetID *string `json:"subnetId,omitempty"` // MountTargets - List of mount targets - MountTargets interface{} `json:"mountTargets,omitempty"` + MountTargets *[]MountTarget `json:"mountTargets,omitempty"` // VolumeType - What type of volume is this VolumeType *string `json:"volumeType,omitempty"` // DataProtection - DataProtection type volumes include an object containing details of the replication diff --git a/services/netapp/mgmt/2019-11-01/netapp/version.go b/services/netapp/mgmt/2019-11-01/netapp/version.go index 2dd52af6e6aa..5965a5840a38 100644 --- a/services/netapp/mgmt/2019-11-01/netapp/version.go +++ b/services/netapp/mgmt/2019-11-01/netapp/version.go @@ -21,7 +21,7 @@ import "github.com/Azure/azure-sdk-for-go/version" // UserAgent returns the UserAgent string to use when sending http.Requests. func UserAgent() string { - return "Azure-SDK-For-Go/" + version.Number + " netapp/2019-11-01" + return "Azure-SDK-For-Go/" + Version() + " netapp/2019-11-01" } // Version returns the semantic version (see http://semver.org) of the client.