Set-CIVAppTemplate

This cmdlet modifies the configuration of the specified vApp template.

Syntax

-VAppTemplate  <CIVAppTemplate[]>
[-Description  <String>]
[-Name  <String>]
[-Server  <CIServer[]>]
[CommonParameters]

Parameters

Required Parameter Name Type Position Features Description
required
VAppTemplate
CIVAppTemplate[] named
  • pipeline
  • Specifies the vApp template you want to modify.
    optional
    Description
    String named Specifies a new description for the vApp template you want to modify.
    optional
    Name
    String named Specifies a new name for the vApp template you want to modify.
    optional
    Server
    CIServer[] named Specifies the cloud 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-CIServer cmdlet.

    -VAppTemplate  <CIVAppTemplate[]>
    [-Server  <CIServer[]>]
    [-StorageLease  <TimeSpan>]
    [CommonParameters]

    Parameters

    Required Parameter Name Type Position Features Description
    required
    VAppTemplate
    CIVAppTemplate[] named
  • pipeline
  • Specifies the vApp template you want to modify.
    optional
    Server
    CIServer[] named Specifies the cloud 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-CIServer cmdlet.
    optional
    StorageLease
    TimeSpan named Specifies the maximum amount of time for the vApp to remain stopped before vCloud Director automatically marks it as expired, or deletes it, depending on the organization policy. To specify that the lease is unlimited, pass $null.

    Output

    VMware.VimAutomation.Cloud.Types.V1.CIVAppTemplate

    Examples


    Example 1

    $timeSpan = New-Object System.Timespan 1,2,3 #one hour, two minutes, three seconds
    Set-CIVAppTemplate -VAppTemplate 'MyVAppTemplate' -StorageLease $timeSpan

    Modifies the storage lease for the specified vApp template to one hour, two minutes, and three seconds.

    Example 2

    Get-CIVAppTemplate -Name 'MyVAppTemplate' | Set-CIVAppTemplate -Name 'MyNewVAppTemplateName' -Description 'The name and description of this vApp template have been modified.'

    Modifies the name and description of the specified vApp template.

    Related Commands

    Feedback

    Was this page helpful?