Src/Private/Get-AbrOntapVserverS3Summary.ps1

function Get-AbrOntapVserverS3Summary {
    <#
    .SYNOPSIS
    Used by As Built Report to retrieve NetApp ONTAP Vserver S3 information from the Cluster Management Network
    .DESCRIPTION

    .NOTES
        Version: 0.4.0
        Author: Jonathan Colon
        Twitter: @jcolonfzenpr
        Github: rebelinux
    .EXAMPLE

    .LINK

    #>

    [CmdletBinding()]
    param (
    )

    begin {
        Write-PscriboMessage "Collecting ONTAP Vserver S3 information."
    }

    process {
        $VserverData = Get-NetAppOntapAPI -uri "/api/protocols/s3/services?"
        $VserverObj = @()
        if ($VserverData) {
            foreach ($Item in $VserverData) {
                $inObj = [ordered] @{
                    'Vserver' = $Item.Name
                    'HTTP' = ConvertTo-TextYN $Item.is_http_enabled
                    'HTTP Port' = $Item.port
                    'HTTPS' = ConvertTo-TextYN $Item.is_https_enabled
                    'HTTPS Port' = $Item.secure_port
                    'Status' = Switch ($Item.enabled) {
                        'True' { 'UP' }
                        'False' { 'Down' }
                        default { $Item.enabled }
                    }
                }
                $VserverObj += [pscustomobject]$inobj
            }

            $TableParams = @{
                Name = "Vserver S3 Service Information - $($ClusterInfo.ClusterName)"
                List = $false
                ColumnWidths = 31, 12, 15, 12, 15, 15
            }
            if ($Report.ShowTableCaptions) {
                $TableParams['Caption'] = "- $($TableParams.Name)"
            }
            $VserverObj | Table @TableParams
        }
    }

    end {}

}