Set-WMNamespace

This cmdlet modifies the configuration of a workload namespace. The cmdlet requires a connection to a vCenter Server using the Connect-VIServer cmdlet.

Syntax

-Namespace  <WMNamespace[]>
[-Description  <String>]
[-RunAsync]
[-Server  <VIServer[]>]
[CommonParameters]

Parameters

Required Parameter Name Type Position Features Description
required
Namespace
WMNamespace[] named
  • pipeline
  • Specifies the set of namespaces on which you want to to apply the change of the configuration.
    optional
    Description
    String named Specifies the new value of the description for the specified workload namespace.
    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
    VIServer[] named Specifies the vCenter Server systems 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-VIServer cmdlet.

    Output

    VMware.VimAutomation.WorkloadManagement.Types.V1.WMNamespace

    Examples


    Example 1

    PS C:\> Set-WMNamespace "MyNamespace" -Description "The new description text"

    Sets the description of the workload namespace "MyNamespace" to "The new description text".

    Example 2

    PS C:\> Get-WMNamespace "Target*" | Set-WMNamespace -Description "The new description text"

    Sets the description of all workload namespaces that have a name matching the "Target*" pattern to "The new description text".

    Example 3

    PS C:\> Set-WMNamespace "MyNamespace" -Description ""

    Sets the description of the workload namespace "MyNamespace" to be blank.

    Related Commands

    Feedback

    Was this page helpful?