Skip to content

Commit 333abf7

Browse files
authored
[NetAppFiles] Bug Fix adding EncryptionType to Get-AzNetAppFilesPool (#25816)
* [NetAppFiles] Bug Fix adding EncryptionType to Get-AzNetAppFilesPool * ChangeLog updated
1 parent 0891055 commit 333abf7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/NetAppFiles/NetAppFiles/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Fixed some minor issues
2122

2223
## Version 0.17.0
2324
* Updated to api-version 2024-03-01

src/NetAppFiles/NetAppFiles/Helpers/ModelExtensions.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ public static PSNetAppFilesPool ToPsNetAppFilesPool(this CapacityPool capacityPo
126126
TotalThroughputMibps = capacityPool.TotalThroughputMibps,
127127
UtilizedThroughputMibps = capacityPool.UtilizedThroughputMibps,
128128
CoolAccess = capacityPool.CoolAccess,
129-
SystemData = capacityPool.SystemData?.ToPsSystemData()
129+
SystemData = capacityPool.SystemData?.ToPsSystemData(),
130+
EncryptionType = capacityPool.EncryptionType
130131
};
131132
}
132133

0 commit comments

Comments
 (0)