Remove-VmcSddcHost

This cmdlet removes hosts from a VMware Cloud on AWS software-defined data center (SDDC). If no cluster is specified, the hosts are removed from the default cluster of the SDDC. If a cluster is passed, the hosts are removed from the specified cluster.

Syntax

-HostCount  <Int32>
-Sddc  <VmcSddc[]>
[-RunAsync]
[-Server  <VmcServer[]>]
[CommonParameters]

Parameters

Required Parameter Name Type Position Features Description
required
HostCount
Int32 named Specifies the number of the host that you want to remove.
required
Sddc
VmcSddc[] named
  • wildcards
  • pipeline
  • Specifies the SDDC.
    optional
    RunAsync
    SwitchParameter named Indicates that the command returns immediately without waiting for the task to complete. In this mode, the output of the cmdlet is a Task object. For more information about the RunAsync parameter, run "help About_RunAsync" in the VMware PowerCLI console.
    optional
    Server
    VmcServer[] named
  • wildcards
  • Specifies the VMware Cloud on AWS servers on which you want to run the cmdlet. If no value is provided or $null value is passed to this parameter, the command runs on the default servers. For more information about default servers, see the description of the Connect-Vmc cmdlet.

    -Cluster  <VmcSddcCluster[]>
    -HostCount  <Int32>
    [-RunAsync]
    [-Server  <VmcServer[]>]
    [CommonParameters]

    Parameters

    Required Parameter Name Type Position Features Description
    required
    Cluster
    VmcSddcCluster[] named
  • pipeline
  • Specifies the cluster.
    required
    HostCount
    Int32 named Specifies the number of the host that you want to remove.
    optional
    RunAsync
    SwitchParameter named Indicates that the command returns immediately without waiting for the task to complete. In this mode, the output of the cmdlet is a Task object. For more information about the RunAsync parameter, run "help About_RunAsync" in the VMware PowerCLI console.
    optional
    Server
    VmcServer[] named
  • wildcards
  • Specifies the VMware Cloud on AWS servers on which you want to run the cmdlet. If no value is provided or $null value is passed to this parameter, the command runs on the default servers. For more information about default servers, see the description of the Connect-Vmc cmdlet.

    Output

    Examples


    Example 1

    Remove-VmcSddcHost -Sddc $SDDC -HostCount 2

    Removes two hosts from the default cluster of the $SDDC SDDC.

    Example 2

    Remove-VmcSddcHost -Sddc $SDDC -HostCount 2 -RunAsync

    Removes asynchronously two hosts from the default cluster of the $SDDC SDDC.

    Example 3

    Remove-VmcSddcHost -Cluster $CLUSTER -HostCount 2

    Removes two hosts from the specified $CLUSTER cluster.

    Related Commands

    Feedback

    Was this page helpful?