Syntax
Get-CIView [-CIObject] <CIObject[]> [-Server <CIServer[]>] [<CommonParameters>]Related Commands
Online VersionDetailed Description
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.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
CIObject | CIObject[] | Specifies cloud objects to retrieve their views. | true | True (ByValue) | |
Id | String[] | Specifies the IDs of the view object you want to retrieve.
Note: When a list of values is specified for the Id parameter, the returned objects would have an ID that matches exactly one of the string values in that list. | true | False | |
SearchResult | CISearchResult[] | Specifies a CISearchResult object to get the corresponding view. | true | 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 | |
ViewLevel | CIViewLevel | Specifies a Cloud object representation to be retrieved by object ID. Cloud objects may have an Extension, Admin or User representation that can be retrieved when passing an object ID. Providing a ViewLevel parameter explicitly requests the exact abstraction you want to retrieve. | false | False |
Return Type
Zero or more View objectsNotes
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.