Syntax
Get-CIVApp [[-Name] <String[]>] [-Server <CIServer[]>] [-Org <Org[]>] [-OrgNetwork <OrgNetwork[]>] [-OrgVdc <OrgVdc[]>] [-Owner <CIUser[]>] [-Status <CIVAppStatus[]>] [<CommonParameters>]Alias
Get-PIVAppRelated Commands
Online versionDetailed Description
This cmdlet retrieves virtual appliances in the cloud. You cannot use the ID parameter with the other cmdlet parameters.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
Name | String[] | Specifies the names of the vApps you want to retrieve. | false | false | |
Id | String[] | Specifies the IDs of the vApps you want to retrieve. | true | false | |
Org | Org[] | Specifies the organizations for which you want to retrieve vApps. | false | true (ByValue) | |
OrgNetwork | OrgNetwork[] | Specifies the organization networks for which you want to retrieve vApps. | false | true (ByValue) | |
OrgVdc | OrgVdc[] | Specifies the organization VDCs for which you want to retrieve vApps. | false | true (ByValue) | |
Owner | CIUser[] | Specifies the owners of the cloud vApps you want to retrieve. | false | true (ByValue) | |
Server | CIServer[] | Specifies the cloud servers on which you want to run the cmdlet. If no value is given to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-CIServer. | false | false | |
Status | CIVAppStatus[] | Specifies the status of the vApps you want to retrieve. | false | false |
Return Type
Zero or more CIVApp objectsNotes
Examples
-------------- Example 1 --------------
Get-CIVApp
Gets all visible VApps for the current user.
-------------- Example 2 --------------
Get-CIVApp -Name "MyVApp1"
Gets a single VApp named "MyVApp1".
-------------- Example 3 --------------
Get-CIVApp -ID $CloudVAppId
Gets a VApp with a given ID.
-------------- Example 4 --------------
$myOrg = Get-Org -Name "Organization1" Get-CIVApp -Org $myOrg
Gets all visible VApps within an organization.
-------------- Example 5 --------------
Get-OrgNetwork -Name "OrgNetwork1" | Get-CIVApp
Gets all visible VApps within an organization's network.
-------------- Example 6 --------------
Get-OrgVdc -Name "OrgVdc1" | Get-CIVApp
Gets all visible VApps within an organization virtual datacenter using a pipeline syntax.
-------------- Example 7 --------------
Get-CIUser -Name "CloudUserOrg1Admin1" | Get-CIVApp
Gets VApp by its owner using a pipeline syntax.
-------------- Example 8 --------------
Get-CIVApp -Status "PoweredOn"
Gets all VApps by their state.