Skip to content

Commit

Permalink
[NetAppFiles] Bug Fix adding EncryptionType to Get-AzNetAppFilesPool (A…
Browse files Browse the repository at this point in the history
…zure#25816)

* [NetAppFiles] Bug Fix adding EncryptionType to Get-AzNetAppFilesPool

* ChangeLog updated
  • Loading branch information
kari14 authored Aug 16, 2024
1 parent 0891055 commit 333abf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/NetAppFiles/NetAppFiles/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
* Fixed some minor issues

## Version 0.17.0
* Updated to api-version 2024-03-01
Expand Down
3 changes: 2 additions & 1 deletion src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ public static PSNetAppFilesPool ToPsNetAppFilesPool(this CapacityPool capacityPo
TotalThroughputMibps = capacityPool.TotalThroughputMibps,
UtilizedThroughputMibps = capacityPool.UtilizedThroughputMibps,
CoolAccess = capacityPool.CoolAccess,
SystemData = capacityPool.SystemData?.ToPsSystemData()
SystemData = capacityPool.SystemData?.ToPsSystemData(),
EncryptionType = capacityPool.EncryptionType
};
}

Expand Down

0 comments on commit 333abf7

Please sign in to comment.