forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMicrosoft.Azure.Management.NetApp.csproj
40 lines (37 loc) · 2.16 KB
/
Microsoft.Azure.Management.NetApp.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<!-- Please do not move/edit code below this line -->
<Import Project="$([MSBuild]::GetPathOfFileAbove('AzSdk.reference.props'))" />
<!-- Please do not move/edit code below this line -->
<PropertyGroup>
<PackageId>Microsoft.Azure.Management.NetApp</PackageId>
<Description>Provides NetApp storage management capabilities for Microsoft Azure.</Description>
<AssemblyTitle>Microsoft Azure NetApp Management</AssemblyTitle>
<AssemblyName>Microsoft.Azure.Management.NetApp</AssemblyName>
<Version>1.0.0</Version>
<PackageTags>MicrosoftAzure Management;NetApp</PackageTags>
<PackageReleaseNotes>
<![CDATA[
Version 1.0.0 relates to NetApp Files (ANF) RP R4 (Gated) GA
- first non-preview version
- Correction to error mapping
- filesystem id no longer required for snapshot creation
General :
Azure NetApp Files provides the capability to create multiple file system volumes through Microsoft Azure.
Volumes reside within an account pool, a container representing the total data allocation available. A typical usage might be:
Create an account and pool:
var accountResource = CreateAccount(netAppMgmtClient, accountName);
var poolResource = netAppMgmtClient.Pools.CreateOrUpdate(pool, resourceGroup, accountName, poolName);
Create the volume (a mount target for this is automatically generated and returned)
var volumeResource = netAppMgmtClient.Volumes.CreateOrUpdate(volume, resourceGroup, accountName, poolName, volumeName);
Create a snapshot of the volume
var snapshotResource = netAppMgmtClient.Snapshots.Create(snapshot, resourceGroup, accountName, poolName, volumeName, snapshotName);
]]>
</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>$(SdkTargetFx)</TargetFrameworks>
</PropertyGroup>
<!-- Please do not move/edit code below this line -->
<Import Condition=" Exists('$([MSBuild]::GetPathOfFileAbove(AzSdk.RP.props))') " Project="$([MSBuild]::GetPathOfFileAbove('AzSdk.RP.props'))" />
<!-- Please do not move/edit code above this line -->
</Project>