Binary file not shown.
@@ -320,7 +320,6 @@ Function Get-VMCSDDCVersion {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Function Get-VMCFirewallRule {
|
Function Get-VMCFirewallRule {
|
||||||
<#
|
<#
|
||||||
.NOTES
|
.NOTES
|
||||||
@@ -394,9 +393,8 @@ Function Get-VMCFirewallRule {
|
|||||||
}
|
}
|
||||||
$results
|
$results
|
||||||
}
|
}
|
||||||
|
Function Export-VMCFirewallRule {
|
||||||
Function Export-VMCFirewallRule {
|
<#
|
||||||
<#
|
|
||||||
.NOTES
|
.NOTES
|
||||||
===========================================================================
|
===========================================================================
|
||||||
Created by: William Lam
|
Created by: William Lam
|
||||||
@@ -479,10 +477,9 @@ Function Get-VMCFirewallRule {
|
|||||||
} else {
|
} else {
|
||||||
$results | ConvertTo-Json
|
$results | ConvertTo-Json
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Function Import-VMCFirewallRule {
|
||||||
Function Import-VMCFirewallRule {
|
<#
|
||||||
<#
|
|
||||||
.NOTES
|
.NOTES
|
||||||
===========================================================================
|
===========================================================================
|
||||||
Created by: William Lam
|
Created by: William Lam
|
||||||
@@ -636,10 +633,9 @@ Function Get-VMCFirewallRule {
|
|||||||
|
|
||||||
Write-host "Adding VMC Firewall Rules ..."
|
Write-host "Adding VMC Firewall Rules ..."
|
||||||
$firewallRuleAdd = $firewallService.add($orgId,$sddcId,$EdgeId,$firewallRules)
|
$firewallRuleAdd = $firewallService.add($orgId,$sddcId,$EdgeId,$firewallRules)
|
||||||
}
|
}
|
||||||
|
Function Remove-VMCFirewallRule {
|
||||||
Function Remove-VMCFirewallRule {
|
<#
|
||||||
<#
|
|
||||||
.NOTES
|
.NOTES
|
||||||
===========================================================================
|
===========================================================================
|
||||||
Created by: William Lam
|
Created by: William Lam
|
||||||
@@ -686,8 +682,7 @@ Function Get-VMCFirewallRule {
|
|||||||
$firewallService = Get-VmcService com.vmware.vmc.orgs.sddcs.networks.edges.firewall.config.rules
|
$firewallService = Get-VmcService com.vmware.vmc.orgs.sddcs.networks.edges.firewall.config.rules
|
||||||
Write-Host "Removing VMC Firewall Rule Id $RuleId ..."
|
Write-Host "Removing VMC Firewall Rule Id $RuleId ..."
|
||||||
$firewallService.delete($orgId,$sddcId,$EdgeId,$RuleId)
|
$firewallService.delete($orgId,$sddcId,$EdgeId,$RuleId)
|
||||||
}
|
}
|
||||||
|
|
||||||
Function Get-VMCLogicalNetwork {
|
Function Get-VMCLogicalNetwork {
|
||||||
<#
|
<#
|
||||||
.NOTES
|
.NOTES
|
||||||
@@ -727,9 +722,17 @@ Function Get-VMCLogicalNetwork {
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
$logicalNetworkService = Get-VmcService com.vmware.vmc.orgs.sddcs.networks.logical
|
# @LucD22 - 21/10/18 - Fix for issue #176 VMware.VMC module only lists firts 20 Logical networks
|
||||||
|
# Loop until entries (total_count) are returned
|
||||||
|
|
||||||
$logicalNetworks = ($logicalNetworkService.get_0($orgId, $sddcId)).data | Sort-Object -Property id
|
$index = [long]0
|
||||||
|
|
||||||
|
$logicalNetworks = do{
|
||||||
|
$netData = $logicalNetworkService.get_0($orgId,$sddcId,$pagesize,$index)
|
||||||
|
$netData.data | Sort-Object -Property id
|
||||||
|
$index = $index + $netdata.paging_info.page_size
|
||||||
|
}
|
||||||
|
until($index -ge $netData.paging_info.total_count)
|
||||||
|
|
||||||
if($LogicalNetworkName) {
|
if($LogicalNetworkName) {
|
||||||
$logicalNetworks = $logicalNetworks | Where-Object {$_.Name -eq $LogicalNetworkName}
|
$logicalNetworks = $logicalNetworks | Where-Object {$_.Name -eq $LogicalNetworkName}
|
||||||
@@ -751,7 +754,6 @@ Function Get-VMCLogicalNetwork {
|
|||||||
}
|
}
|
||||||
$results
|
$results
|
||||||
}
|
}
|
||||||
|
|
||||||
Function Remove-VMCLogicalNetwork {
|
Function Remove-VMCLogicalNetwork {
|
||||||
<#
|
<#
|
||||||
.NOTES
|
.NOTES
|
||||||
@@ -799,9 +801,8 @@ Function Remove-VMCLogicalNetwork {
|
|||||||
$logicalNetworkService = Get-VmcService com.vmware.vmc.orgs.sddcs.networks.logical
|
$logicalNetworkService = Get-VmcService com.vmware.vmc.orgs.sddcs.networks.logical
|
||||||
$logicalNetworkService.delete($orgId,$sddcId,$lsId)
|
$logicalNetworkService.delete($orgId,$sddcId,$lsId)
|
||||||
}
|
}
|
||||||
|
|
||||||
Function New-VMCLogicalNetwork {
|
Function New-VMCLogicalNetwork {
|
||||||
<#
|
<#
|
||||||
.NOTES
|
.NOTES
|
||||||
===========================================================================
|
===========================================================================
|
||||||
Created by: Kyle Ruddy
|
Created by: Kyle Ruddy
|
||||||
@@ -817,7 +818,7 @@ Function New-VMCLogicalNetwork {
|
|||||||
Creates a new Logical Network
|
Creates a new Logical Network
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
New-VMCLogicalNetwork -OrgName <Org Name> -SDDCName <SDDC Name> -LogicalNetworkName <LogicalNetwork Name> -SubnetMask <Subnet Mask Prefix> -Gateway <Gateway IP Address>
|
New-VMCLogicalNetwork -OrgName <Org Name> -SDDCName <SDDC Name> -LogicalNetworkName <LogicalNetwork Name> -SubnetMask <Subnet Mask Prefix> -Gateway <Gateway IP Address>
|
||||||
#>
|
#>
|
||||||
[cmdletbinding(SupportsShouldProcess = $true,ConfirmImpact='High')]
|
[cmdletbinding(SupportsShouldProcess = $true,ConfirmImpact='High')]
|
||||||
param(
|
param(
|
||||||
[Parameter(Mandatory=$true)][String]$SDDCName,
|
[Parameter(Mandatory=$true)][String]$SDDCName,
|
||||||
@@ -854,7 +855,6 @@ Function New-VMCLogicalNetwork {
|
|||||||
$logicalNetworkService.create($orgId, $sddcId, $logicalNetworkSpec)
|
$logicalNetworkService.create($orgId, $sddcId, $logicalNetworkSpec)
|
||||||
Get-VMCLogicalNetwork -OrgName $OrgName -SDDCName $SDDCName -LogicalNetworkName $LogicalNetworkName
|
Get-VMCLogicalNetwork -OrgName $OrgName -SDDCName $SDDCName -LogicalNetworkName $LogicalNetworkName
|
||||||
}
|
}
|
||||||
|
|
||||||
Function Get-VMCSDDCSummary {
|
Function Get-VMCSDDCSummary {
|
||||||
<#
|
<#
|
||||||
.NOTES
|
.NOTES
|
||||||
@@ -899,7 +899,6 @@ Function Get-VMCSDDCSummary {
|
|||||||
$results
|
$results
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Function Get-VMCPublicIP {
|
Function Get-VMCPublicIP {
|
||||||
<#
|
<#
|
||||||
.NOTES
|
.NOTES
|
||||||
@@ -933,9 +932,8 @@ Function Get-VMCPublicIP {
|
|||||||
$publicIPs | select public_ip, name, allocation_id
|
$publicIPs | select public_ip, name, allocation_id
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Function New-VMCPublicIP {
|
||||||
Function New-VMCPublicIP {
|
<#
|
||||||
<#
|
|
||||||
.NOTES
|
.NOTES
|
||||||
===========================================================================
|
===========================================================================
|
||||||
Created by: William Lam
|
Created by: William Lam
|
||||||
@@ -951,7 +949,7 @@ Function Get-VMCPublicIP {
|
|||||||
This cmdlet requests a new public IP Address for a given SDDC
|
This cmdlet requests a new public IP Address for a given SDDC
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
New-VMCPublicIP -OrgName $OrgName -SDDCName $SDDCName -Description "Test for Randy"
|
New-VMCPublicIP -OrgName $OrgName -SDDCName $SDDCName -Description "Test for Randy"
|
||||||
#>
|
#>
|
||||||
Param (
|
Param (
|
||||||
[Parameter(Mandatory=$True)]$OrgName,
|
[Parameter(Mandatory=$True)]$OrgName,
|
||||||
[Parameter(Mandatory=$True)]$SDDCName,
|
[Parameter(Mandatory=$True)]$SDDCName,
|
||||||
@@ -971,10 +969,9 @@ Function Get-VMCPublicIP {
|
|||||||
Write-Host "Requesting a new public IP Address for your SDDC ..."
|
Write-Host "Requesting a new public IP Address for your SDDC ..."
|
||||||
$results = $publicIPService.create($orgId,$sddcId,$publicIPSpec)
|
$results = $publicIPService.create($orgId,$sddcId,$publicIPSpec)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Function Remove-VMCPublicIP {
|
||||||
Function Remove-VMCPublicIP {
|
<#
|
||||||
<#
|
|
||||||
.NOTES
|
.NOTES
|
||||||
===========================================================================
|
===========================================================================
|
||||||
Created by: William Lam
|
Created by: William Lam
|
||||||
@@ -990,7 +987,7 @@ Function Get-VMCPublicIP {
|
|||||||
This cmdlet removes a specific public IP Address for a given SDDC
|
This cmdlet removes a specific public IP Address for a given SDDC
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
Remove-VMCPublicIP -OrgName $OrgName -SDDCName $SDDCName -AllocationId "eipalloc-0567acf34e436c01f"
|
Remove-VMCPublicIP -OrgName $OrgName -SDDCName $SDDCName -AllocationId "eipalloc-0567acf34e436c01f"
|
||||||
#>
|
#>
|
||||||
Param (
|
Param (
|
||||||
[Parameter(Mandatory=$True)]$OrgName,
|
[Parameter(Mandatory=$True)]$OrgName,
|
||||||
[Parameter(Mandatory=$True)]$SDDCName,
|
[Parameter(Mandatory=$True)]$SDDCName,
|
||||||
@@ -1006,6 +1003,306 @@ Function Get-VMCPublicIP {
|
|||||||
Write-Host "Deleting public IP Address with ID $AllocationId ..."
|
Write-Host "Deleting public IP Address with ID $AllocationId ..."
|
||||||
$results = $publicIPService.delete($orgId,$sddcId,$AllocationId)
|
$results = $publicIPService.delete($orgId,$sddcId,$AllocationId)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Function Get-VMCEdge {
|
||||||
|
<#
|
||||||
|
.NOTES
|
||||||
|
===========================================================================
|
||||||
|
Created by: Luc Dekens
|
||||||
|
Date: 23/10/2018
|
||||||
|
Organization: Community
|
||||||
|
Blog: http://lucd.info
|
||||||
|
Twitter: @LucD22
|
||||||
|
===========================================================================
|
||||||
|
|
||||||
Export-ModuleMember -Function 'Get-VMCCommand', 'Connect-VMCVIServer', 'Get-VMCOrg', 'Get-VMCSDDC', 'Get-VMCTask', 'Get-VMCSDDCDefaultCredential', 'Get-VMCSDDCPublicIP', 'Get-VMCVMHost', 'Get-VMCSDDCVersion', 'Get-VMCFirewallRule', 'Export-VMCFirewallRule', 'Import-VMCFirewallRule', 'Remove-VMCFirewallRule', 'Get-VMCLogicalNetwork', 'Remove-VMCLogicalNetwork', 'New-VMCLogicalNetwork', 'Get-VMCSDDCSummary', 'Get-VMCPublicIP', 'New-VMCPublicIP', 'Remove-VMCPublicIP'
|
.SYNOPSIS
|
||||||
|
Returns all the VMC Edges
|
||||||
|
.DESCRIPTION
|
||||||
|
Returns all the VMC Edges
|
||||||
|
.EXAMPLE
|
||||||
|
Get-VMCEdge -OrgName $orgName -SddcName $SDDCName -EdgeType gatewayServices
|
||||||
|
#>
|
||||||
|
Param (
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$OrgName,
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$SDDCName,
|
||||||
|
[ValidateSet('gatewayServices','distributedRouter')]
|
||||||
|
[string]$EdgeType = ''
|
||||||
|
)
|
||||||
|
|
||||||
|
If (-Not $global:DefaultVMCServers) {
|
||||||
|
Write-error "No VMC Connection found, please use the Connect-VMC to connect"
|
||||||
|
}
|
||||||
|
Else {
|
||||||
|
$orgId = (Get-VMCOrg -Name $OrgName).Id
|
||||||
|
$sddcId = (Get-VMCSDDC -Name $SDDCName -Org $OrgName).Id
|
||||||
|
|
||||||
|
$edgeService = Get-VmcService -Name 'com.vmware.vmc.orgs.sddcs.networks.edges'
|
||||||
|
$index = [long]0
|
||||||
|
$edges = do{
|
||||||
|
$edgeData = $edgeService.get($orgId,$sddcId,$EdgeType,'',$index)
|
||||||
|
$edgeData.edge_page.data | Sort-Object -Property id
|
||||||
|
$index = $index + $edgeData.edge_page.paging_info.page_size
|
||||||
|
}
|
||||||
|
until($index -ge $edgeData.paging_info.total_count)
|
||||||
|
$edges | %{
|
||||||
|
[pscustomobject]@{
|
||||||
|
Name = $_.Name
|
||||||
|
Id = $_.id
|
||||||
|
Type = $_.edge_type
|
||||||
|
State = $_.state
|
||||||
|
Status = $_.edge_status
|
||||||
|
VNics = $_.number_of_connected_vnics
|
||||||
|
TenantId = $_.tenant_id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Function Get-VMCEdgeStatus {
|
||||||
|
<#
|
||||||
|
.NOTES
|
||||||
|
===========================================================================
|
||||||
|
Created by: Luc Dekens
|
||||||
|
Date: 23/10/2018
|
||||||
|
Organization: Community
|
||||||
|
Blog: http://lucd.info
|
||||||
|
Twitter: @LucD22
|
||||||
|
===========================================================================
|
||||||
|
|
||||||
|
.SYNOPSIS
|
||||||
|
Returns the status of the gateway
|
||||||
|
.DESCRIPTION
|
||||||
|
Retrieve the status of the specified management or compute gateway (NSX Edge).
|
||||||
|
.EXAMPLE
|
||||||
|
Get-VMCEdgeStatus -OrgName $orgName -SddcName $SDDCName -Edge $EdgeName
|
||||||
|
#>
|
||||||
|
Param (
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$OrgName,
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$SDDCName,
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$EdgeName
|
||||||
|
)
|
||||||
|
|
||||||
|
If (-Not $global:DefaultVMCServers) {
|
||||||
|
Write-error "No VMC Connection found, please use the Connect-VMC to connect"
|
||||||
|
}
|
||||||
|
Else {
|
||||||
|
$orgId = (Get-VMCOrg -Name $OrgName).Id
|
||||||
|
$sddcId = (Get-VMCSDDC -Name $SDDCName -Org $OrgName).Id
|
||||||
|
$edgeId = Get-VMCEdge -SDDCName $SDDCName -Org $OrgName | where{$_.Name -eq $EdgeName} | select -ExpandProperty Id
|
||||||
|
|
||||||
|
$statusService = Get-VmcService -Name 'com.vmware.vmc.orgs.sddcs.networks.edges.status'
|
||||||
|
$status = $statusService.get($orgId,$sddcId,$edgeId)
|
||||||
|
|
||||||
|
$vmStatus = $status.edge_vm_status | %{
|
||||||
|
[pscustomobject]@{
|
||||||
|
Name = $_.name
|
||||||
|
State = $_.edge_VM_status
|
||||||
|
HAState = $_.ha_state
|
||||||
|
Index = $_.index
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$featureStatus = $status.feature_statuses | %{
|
||||||
|
[pscustomobject]@{
|
||||||
|
Service = $_.service
|
||||||
|
Status = $_.status
|
||||||
|
}
|
||||||
|
}
|
||||||
|
[pscustomobject]@{
|
||||||
|
Time = [timezone]::CurrentTimeZone.ToLocalTime(([datetime]'1/1/1970').AddSeconds($status.timestamp/1000))
|
||||||
|
Status = $status.edge_status
|
||||||
|
PublishStatus = $status.publish_status
|
||||||
|
SystemStatus = $_.system_status
|
||||||
|
NicInUse = $status.ha_vnic_in_use
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Function Get-VMCEdgeNic {
|
||||||
|
<#
|
||||||
|
.NOTES
|
||||||
|
===========================================================================
|
||||||
|
Created by: Luc Dekens
|
||||||
|
Date: 23/10/2018
|
||||||
|
Organization: Community
|
||||||
|
Blog: http://lucd.info
|
||||||
|
Twitter: @LucD22
|
||||||
|
===========================================================================
|
||||||
|
|
||||||
|
.SYNOPSIS
|
||||||
|
Returns all interfaces for the gateway
|
||||||
|
.DESCRIPTION
|
||||||
|
Retrieve all interfaces for the specified management or compute gateway (NSX Edge).
|
||||||
|
.EXAMPLE
|
||||||
|
Get-VMCEdgeNic -OrgName $orgName -SddcName $SDDCName -Edge $EdgeName
|
||||||
|
#>
|
||||||
|
Param (
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$OrgName,
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$SDDCName,
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$EdgeName
|
||||||
|
)
|
||||||
|
|
||||||
|
If (-Not $global:DefaultVMCServers) {
|
||||||
|
Write-error "No VMC Connection found, please use the Connect-VMC to connect"
|
||||||
|
}
|
||||||
|
Else {
|
||||||
|
$orgId = (Get-VMCOrg -Name $OrgName).Id
|
||||||
|
$sddcId = (Get-VMCSDDC -Name $SDDCName -Org $OrgName).Id
|
||||||
|
$edgeId = Get-VMCEdge -SDDCName $SDDCName -Org $OrgName | where{$_.Name -eq $EdgeName} | select -ExpandProperty Id
|
||||||
|
|
||||||
|
$vnicService = Get-VmcService -Name 'com.vmware.vmc.orgs.sddcs.networks.edges.vnics'
|
||||||
|
$vnicService.get($orgId,$sddcId,$edgeId) | select -ExpandProperty vnics | %{
|
||||||
|
[pscustomobject]@{
|
||||||
|
Label = $_.label
|
||||||
|
Name = $_.Name
|
||||||
|
Type = $_.type
|
||||||
|
Index = $_.index
|
||||||
|
IsConnected = $_.is_connected
|
||||||
|
Portgroup = $_.portgroup_name
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Function Get-VMCEdgeNicStat {
|
||||||
|
<#
|
||||||
|
.NOTES
|
||||||
|
===========================================================================
|
||||||
|
Created by: Luc Dekens
|
||||||
|
Date: 23/10/2018
|
||||||
|
Organization: Community
|
||||||
|
Blog: http://lucd.info
|
||||||
|
Twitter: @LucD22
|
||||||
|
===========================================================================
|
||||||
|
|
||||||
|
.SYNOPSIS
|
||||||
|
Returns statistics for the gateway interfaces
|
||||||
|
.DESCRIPTION
|
||||||
|
Retrieve interface statistics for a management or compute gateway (NSX Edge).
|
||||||
|
.EXAMPLE
|
||||||
|
Get-VMCEdgeNicStat -OrgName $orgName -SddcName $SDDCName -Edge $EdgeName
|
||||||
|
#>
|
||||||
|
[CmdletBinding(DefaultParameterSetName='Default')]
|
||||||
|
Param (
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$OrgName,
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$SDDCName,
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$EdgeName
|
||||||
|
# [DateTime]$Start,
|
||||||
|
# [DateTime]$Finish
|
||||||
|
)
|
||||||
|
|
||||||
|
If (-Not $global:DefaultVMCServers) {
|
||||||
|
Write-error "No VMC Connection found, please use the Connect-VMC to connect"
|
||||||
|
}
|
||||||
|
Else {
|
||||||
|
$orgId = (Get-VMCOrg -Name $OrgName).Id
|
||||||
|
$sddcId = (Get-VMCSDDC -Name $SDDCName -Org $OrgName).Id
|
||||||
|
$edgeId = Get-VMCEdge -SDDCName $SDDCName -Org $OrgName | where{$_.Name -eq $EdgeName} | select -ExpandProperty Id
|
||||||
|
|
||||||
|
# $epoch = Get-Date 01/01/1970
|
||||||
|
#
|
||||||
|
# if($start){
|
||||||
|
# $startEpoch = (New-TimeSpan -Start $epoch -End $Start.ToUniversalTime()).TotalMilliseconds
|
||||||
|
# }
|
||||||
|
# if($Finish){
|
||||||
|
# $finishEpoch = (New-TimeSpan -Start $epoch -End $Finish.ToUniversalTime()).TotalMilliseconds
|
||||||
|
# }
|
||||||
|
|
||||||
|
$vnicStatService = Get-VmcService -Name 'com.vmware.vmc.orgs.sddcs.networks.edges.statistics.interfaces'
|
||||||
|
# $stats = $vnicStatService.get($orgId,$sddcId,$edgeId,[long]$startEpoch,[long]$finishEpoch)
|
||||||
|
$stats = $vnicStatService.get($orgId,$sddcId,$edgeId)
|
||||||
|
|
||||||
|
$stats.data_dto | Get-Member -MemberType NoteProperty | where{$_.Name -ne 'Help'} | %{$_.Name} | %{
|
||||||
|
$stats.data_dto."$_" | %{
|
||||||
|
[pscustomobject]@{
|
||||||
|
vNIC = $_.vnic
|
||||||
|
Timestamp = [timezone]::CurrentTimeZone.ToLocalTime(([datetime]'1/1/1970').AddSeconds($_.timestamp))
|
||||||
|
In = $_.in
|
||||||
|
Out = $_.out
|
||||||
|
Unit = 'Kbps'
|
||||||
|
Interval = $stats.meta_dto.interval
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Function Get-VMCEdgeUplinkStat {
|
||||||
|
<#
|
||||||
|
.NOTES
|
||||||
|
===========================================================================
|
||||||
|
Created by: Luc Dekens
|
||||||
|
Date: 23/10/2018
|
||||||
|
Organization: Community
|
||||||
|
Blog: http://lucd.info
|
||||||
|
Twitter: @LucD22
|
||||||
|
===========================================================================
|
||||||
|
|
||||||
|
.SYNOPSIS
|
||||||
|
Returns statistics for the uplink interfaces
|
||||||
|
.DESCRIPTION
|
||||||
|
Retrieve uplink interface statistics for a management or compute gateway (NSX Edge).
|
||||||
|
.EXAMPLE
|
||||||
|
Get-VMCEdgeUplinkStat -OrgName $orgName -SddcName $SDDCName -Edge $EdgeName
|
||||||
|
#>
|
||||||
|
Param (
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$OrgName,
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$SDDCName,
|
||||||
|
[Parameter(Mandatory=$True)]
|
||||||
|
[string]$EdgeName
|
||||||
|
# [DateTime]$Start,
|
||||||
|
# [DateTime]$Finish
|
||||||
|
)
|
||||||
|
|
||||||
|
If (-Not $global:DefaultVMCServers) {
|
||||||
|
Write-error "No VMC Connection found, please use the Connect-VMC to connect"
|
||||||
|
}
|
||||||
|
Else {
|
||||||
|
$orgId = (Get-VMCOrg -Name $OrgName).Id
|
||||||
|
$sddcId = (Get-VMCSDDC -Name $SDDCName -Org $OrgName).Id
|
||||||
|
$edgeId = Get-VMCEdge -SDDCName $SDDCName -Org $OrgName | where{$_.Name -eq $EdgeName} | select -ExpandProperty Id
|
||||||
|
|
||||||
|
# $epoch = Get-Date 01/01/1970
|
||||||
|
#
|
||||||
|
# if($start){
|
||||||
|
# $startEpoch = (New-TimeSpan -Start $epoch -End $Start.ToUniversalTime()).TotalMilliseconds
|
||||||
|
# }
|
||||||
|
# if($Finish){
|
||||||
|
# $finishEpoch = (New-TimeSpan -Start $epoch -End $Finish.ToUniversalTime()).TotalMilliseconds
|
||||||
|
# }
|
||||||
|
|
||||||
|
$uplinkStatService = Get-VmcService -Name 'com.vmware.vmc.orgs.sddcs.networks.edges.statistics.interfaces.uplink'
|
||||||
|
# $stats = $uplinkStatService.get($orgId,$sddcId,$edgeId,[long]$startEpoch,[long]$finishEpoch)
|
||||||
|
$stats = $uplinkStatService.get($orgId,$sddcId,$edgeId)
|
||||||
|
|
||||||
|
$stats.data_dto | Get-Member -MemberType NoteProperty | where{$_.Name -ne 'Help'} | %{$_.Name} | %{
|
||||||
|
if($stats.data_dto."$_".Count -ne 0){
|
||||||
|
$stats.data_dto."$_" | %{
|
||||||
|
[pscustomobject]@{
|
||||||
|
vNIC = $_.vnic
|
||||||
|
Timestamp = [timezone]::CurrentTimeZone.ToLocalTime(([datetime]'1/1/1970').AddSeconds($_.timestamp))
|
||||||
|
In = $_.in
|
||||||
|
Out = $_.out
|
||||||
|
Unit = 'Kbps'
|
||||||
|
Interval = $stats.meta_dto.interval
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Export-ModuleMember -Function 'Get-VMCCommand', 'Connect-VMCVIServer', 'Get-VMCOrg', 'Get-VMCSDDC',
|
||||||
|
'Get-VMCTask', 'Get-VMCSDDCDefaultCredential', 'Get-VMCSDDCPublicIP', 'Get-VMCVMHost',
|
||||||
|
'Get-VMCSDDCVersion', 'Get-VMCFirewallRule', 'Export-VMCFirewallRule', 'Import-VMCFirewallRule',
|
||||||
|
'Remove-VMCFirewallRule', 'Get-VMCLogicalNetwork', 'Remove-VMCLogicalNetwork', 'New-VMCLogicalNetwork',
|
||||||
|
'Get-VMCSDDCSummary', 'Get-VMCPublicIP', 'New-VMCPublicIP', 'Remove-VMCPublicIP',
|
||||||
|
'Get-VMCEdge', 'Get-VMCEdgeNic', 'Get-VMCEdgeStatus', 'Get-VMCEdgeNicStat', 'Get-VMCEdgeUplinkStat'
|
||||||
|
|||||||
37
Scripts/VMware_Cloud_on_AWS/XRef-VMC-Services.ps1
Normal file
37
Scripts/VMware_Cloud_on_AWS/XRef-VMC-Services.ps1
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
$refreshToken = 'your-refresh-token'
|
||||||
|
|
||||||
|
$reportPath = '.\VMC-services.xlsx'
|
||||||
|
|
||||||
|
Connect-Vmc -RefreshToken $refreshToken > $null
|
||||||
|
|
||||||
|
$columns = @{}
|
||||||
|
$services = Get-VmcService | Sort-Object -Property Name
|
||||||
|
$services | ForEach-Object -Process {
|
||||||
|
$_.Help | Get-Member -MemberType NoteProperty | where{'Constants','Documentation' -notcontains $_.Name} |
|
||||||
|
ForEach-Object -Process {
|
||||||
|
if(-not $columns.ContainsKey($_.Name)){
|
||||||
|
$columns.Add($_.Name,'')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$columns = $columns.Keys | Sort-Object
|
||||||
|
$report = @()
|
||||||
|
foreach($service in $services){
|
||||||
|
$obj = [ordered]@{
|
||||||
|
Name = $service.Name
|
||||||
|
}
|
||||||
|
$columns | ForEach-Object -Process {
|
||||||
|
$obj.Add($_,'')
|
||||||
|
}
|
||||||
|
|
||||||
|
$service.Help | Get-Member -MemberType NoteProperty | where{'Constants','Documentation' -notcontains $_.Name} |
|
||||||
|
ForEach-Object -Process {
|
||||||
|
# $obj.Item($_.Name) = "$($service.Help.$($_.Name).Documentation)"
|
||||||
|
$obj.Item($_.Name) = "X"
|
||||||
|
}
|
||||||
|
$report += New-Object PSObject -Property $obj
|
||||||
|
}
|
||||||
|
$report | Export-Excel -Path $reportPath -WorksheetName 'Services' -FreezeTopRow -BoldTopRow -AutoSize -Show
|
||||||
|
|
||||||
|
Disconnect-Vmc -Confirm:$false
|
||||||
|
|
||||||
Reference in New Issue
Block a user