Fixing spacing
This commit is contained in:
@@ -8,12 +8,12 @@
|
|||||||
Blog: www.virtuallyghetto.com
|
Blog: www.virtuallyghetto.com
|
||||||
Twitter: @lamw
|
Twitter: @lamw
|
||||||
===========================================================================
|
===========================================================================
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
This function retrieves some basic information from VAMI interface (5480)
|
This function retrieves some basic information from VAMI interface (5480)
|
||||||
for a VCSA node which can be an Embedded VCSA, External PSC or External VCSA.
|
for a VCSA node which can be an Embedded VCSA, External PSC or External VCSA.
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Function to return basic VAMI summary info
|
Function to return basic VAMI summary info
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
|
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
|
||||||
Get-VAMISummary
|
Get-VAMISummary
|
||||||
#>
|
#>
|
||||||
@@ -32,7 +32,6 @@
|
|||||||
InstallTime = $results.install_time;
|
InstallTime = $results.install_time;
|
||||||
Uptime = $uptime
|
Uptime = $uptime
|
||||||
}
|
}
|
||||||
|
|
||||||
$summaryResult
|
$summaryResult
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -46,12 +45,12 @@ Function Get-VAMIHealth {
|
|||||||
Blog: www.virtuallyghetto.com
|
Blog: www.virtuallyghetto.com
|
||||||
Twitter: @lamw
|
Twitter: @lamw
|
||||||
===========================================================================
|
===========================================================================
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
This function retrieves health information from VAMI interface (5480)
|
This function retrieves health information from VAMI interface (5480)
|
||||||
for a VCSA node which can be an Embedded VCSA, External PSC or External VCSA.
|
for a VCSA node which can be an Embedded VCSA, External PSC or External VCSA.
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Function to return VAMI health
|
Function to return VAMI health
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
|
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
|
||||||
Get-VAMIHealth
|
Get-VAMIHealth
|
||||||
#>
|
#>
|
||||||
@@ -82,7 +81,6 @@ Function Get-VAMIHealth {
|
|||||||
HealthVCDB = $healthVCDB;
|
HealthVCDB = $healthVCDB;
|
||||||
HealthSoftware = $healthSoftwareUpdates
|
HealthSoftware = $healthSoftwareUpdates
|
||||||
}
|
}
|
||||||
|
|
||||||
$healthResult
|
$healthResult
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -96,12 +94,12 @@ Function Get-VAMIAccess {
|
|||||||
Blog: www.virtuallyghetto.com
|
Blog: www.virtuallyghetto.com
|
||||||
Twitter: @lamw
|
Twitter: @lamw
|
||||||
===========================================================================
|
===========================================================================
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
This function retrieves access information from VAMI interface (5480)
|
This function retrieves access information from VAMI interface (5480)
|
||||||
for a VCSA node which can be an Embedded VCSA, External PSC or External VCSA.
|
for a VCSA node which can be an Embedded VCSA, External PSC or External VCSA.
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Function to return VAMI access interfaces (Console,DCUI,Bash Shell & SSH)
|
Function to return VAMI access interfaces (Console,DCUI,Bash Shell & SSH)
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
|
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
|
||||||
Get-VAMIAccess
|
Get-VAMIAccess
|
||||||
#>
|
#>
|
||||||
@@ -116,7 +114,6 @@ Function Get-VAMIAccess {
|
|||||||
BashShell = $shellAccess.enabled;
|
BashShell = $shellAccess.enabled;
|
||||||
SSH = $sshAccess
|
SSH = $sshAccess
|
||||||
}
|
}
|
||||||
|
|
||||||
$accessResult
|
$accessResult
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -130,12 +127,12 @@ Function Get-VAMITime {
|
|||||||
Blog: www.virtuallyghetto.com
|
Blog: www.virtuallyghetto.com
|
||||||
Twitter: @lamw
|
Twitter: @lamw
|
||||||
===========================================================================
|
===========================================================================
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
This function retrieves the time and NTP info from VAMI interface (5480)
|
This function retrieves the time and NTP info from VAMI interface (5480)
|
||||||
for a VCSA node which can be an Embedded VCSA, External PSC or External VCSA.
|
for a VCSA node which can be an Embedded VCSA, External PSC or External VCSA.
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Function to return current Time and NTP information
|
Function to return current Time and NTP information
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
|
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
|
||||||
Get-VAMITime
|
Get-VAMITime
|
||||||
#>
|
#>
|
||||||
@@ -159,7 +156,6 @@ Function Get-VAMITime {
|
|||||||
$timeResult.NTPServers = $ntpServers.servers
|
$timeResult.NTPServers = $ntpServers.servers
|
||||||
$timeResult.NTPStatus = $ntpServers.status
|
$timeResult.NTPStatus = $ntpServers.status
|
||||||
}
|
}
|
||||||
|
|
||||||
$timeResult
|
$timeResult
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -173,12 +169,12 @@ Function Get-VAMINetwork {
|
|||||||
Blog: www.virtuallyghetto.com
|
Blog: www.virtuallyghetto.com
|
||||||
Twitter: @lamw
|
Twitter: @lamw
|
||||||
===========================================================================
|
===========================================================================
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
This function retrieves network information from VAMI interface (5480)
|
This function retrieves network information from VAMI interface (5480)
|
||||||
for a VCSA node which can be an Embedded VCSA, External PSC or External VCSA.
|
for a VCSA node which can be an Embedded VCSA, External PSC or External VCSA.
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
Function to return networking information including details for each interface
|
Function to return networking information including details for each interface
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
|
Connect-CisServer -Server 192.168.1.51 -User administrator@vsphere.local -Password VMware1!
|
||||||
Get-VAMINetwork
|
Get-VAMINetwork
|
||||||
#>
|
#>
|
||||||
|
|||||||
Reference in New Issue
Block a user