Unable to get azure netapp files pool TotalThroughputMibps and UtilizedThroughputMibps using powershell

Anurag singh kuhswaha 31 Reputation points
2023-09-20T05:13:29.7233333+00:00

I am using  PowerShell to get AzureNetApp Files Pool details.

I am using Get-AzNetAppFilesPool command but in response I am not getting any value for TotalThroughputMibps and UtilizedThroughputMibps.

Azure Documentation shows the value of UtilizedThroughputMibps and Total ThroughputMibps : AzureNetApp Documentation

I am getting below keys in response:

MicrosoftTeams-image (1)

Can someone tell how can I get TotalThroughputMibps and UtilizedThroughputMibps using powershell.

Azure NetApp Files
Azure NetApp Files
An Azure service that provides enterprise-grade file shares powered by NetApp.
83 questions
PowerShell
PowerShell
A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
2,082 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Sumarigo-MSFT 43,801 Reputation points Microsoft Employee
    2023-09-25T03:08:37.14+00:00

    @Anurag singh kuhswaha Welcome to Microsoft Q&A Forum, Thank you for posting your query here!

    I assume you need to update the Powershell cmdlets , and Az.NetAppFiles

    Try the same cmdlets in cloudshell : This document details how to use Bash and PowerShell in Azure Cloud Shell from the Azure portal.

    Please make sure that you have the latest version of the Azure PowerShell module installed. You can check the version of the module by running the following command:

    Get-Module -Name Az.NetAppFiles -ListAvailable
    

    If you do not have the latest version of the module installed, you can update it by running the following command:

    Update-Module -Name Az.NetAppFiles
    

    Once you have the latest version of the module installed, you can try running the Get-AzNetAppFilesPool command again to see if the TotalThroughputMibps and UtilizedThroughputMibps properties are now being returned in the response.

    If you are still not seeing these properties in the response, it is possible that they are not available for the specific pool you are querying. Please make sure that the pool you are querying has been provisioned with a throughput capacity and that data has been written to the pool to generate utilization data.

    If the issue still persist, I would like to work closer on this issue.

    Please let us know if you have any further queries. I’m happy to assist you further.     


    Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

    0 comments No comments