Public/Get-Host.ps1
<#
.DESCRIPTION Wrapper for Nutanix API version 0.3. .NOTES Author: Timothy Rasiah #> function Get-Host { [CmdletBinding()] param ( $uuid ) $data = @{ "kind" = "host" } if (-not $uuid) { $response = Send-Request -method "POST" -endpoint "/hosts/list" -data $data return $response.entities } $response = Send-Request -method "GET" -endpoint "/hosts/$($uuid)" return $response } |