Get-CIView Command | Vmware PowerCLI Reference

Get-CIView

This cmdlet retrieves cloud views objects. The cmdlet converts CIObject to Cloud view object. Supports getting views from CISearchResult objects returned by the Search-Cloud cmdlet. An Id property must be present in the CISearchResult objects. If an Id is specified, the result view is determined by the ViewType parameter. If ViewType is not passed, the cmdlet returns the most complete representation of the object visible to the user by using the following priority: Extension, Admin, User.

Syntax

Get-CIView
-CIObject < CIObject[] >
[-ProgressAction < ActionPreference > ]
[-Server < CIServer[] > ]
[CommonParameters]

Parameters

Required Parameter Name Type Position Features Description
required
CIObject CIObject[] named
  • pipeline
  • wildcards
Specifies cloud objects to retrieve their views.
optional ProgressAction ActionPreference named
optional Server CIServer[] named
  • wildcards
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 Connect-CIServer.

Output

VMware.VimAutomation.Cloud.Views.SchemaConvertable

Examples

Example 1

$catalog = Search-Cloud -QueryType Catalog -Name Catalog1 | Get-CIView -ViewLevel Admin

Gets a cloud catalog Admin view using the search result returned by the Search-Cloud cmdlet.

Example 2

$catalogItem = Get-CIView -Id $catalog.CatalogItems.CatalogItem[0].Href

Gets the first catalog item view using the Href property from an already retrieved catalog items collection.

Example 3

$Org = Get-Org -Name Organization1 | Get-CIView

Gets a cloud organization view from the result returned by the Get-Org cmdlet.

Example 4

$userCatalog = Get-CIView -Id $catalog.Id -ViewLevel User

Gets the User cloud representation of the catalog.

Related Commands

CIView

This cmdlet retrieves cloud views by ID.