full_path
stringlengths
31
232
filename
stringlengths
4
167
content
stringlengths
0
48.3M
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Private/NewDynamicParam.ps1
NewDynamicParam.ps1
Function NewDynamicParam { <# .SYNOPSIS Helper function to simplify creating dynamic parameters .DESCRIPTION Helper function to simplify creating dynamic parameters Example use cases: Include parameters only if your environment dictates it Include parameters...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/Disconnect-vRAServer.ps1
Disconnect-vRAServer.ps1
function Disconnect-vRAServer { <# .SYNOPSIS Disconnect from a vRA server .DESCRIPTION Disconnect from a vRA server by removing the authorization token and the global vRAConnection variable from PowerShell .EXAMPLE Disconnect-vRAServer .EXAMPLE Disconnect-vRAServer -Confirm:$fa...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/Invoke-vRARestMethod.ps1
Invoke-vRARestMethod.ps1
function Invoke-vRARestMethod { <# .SYNOPSIS Wrapper for Invoke-RestMethod with vRA specifics .DESCRIPTION Wrapper for Invoke-RestMethod with vRA specifics .PARAMETER Method REST Method: GET, POST, PUT or DELETE .PARAMETER URI API URI, e.g. /identity/api/tenants .PARAMETER Body ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/Connect-vRAServer.ps1
Connect-vRAServer.ps1
function Connect-vRAServer { <# .SYNOPSIS Connect to a vRA Server .DESCRIPTION Connect to a vRA Server and generate a connection object with Servername, Token etc .PARAMETER Server vRA Server to connect to .PARAMETER Tenant Tenant to connect to .PARAMETER Username Username to...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/advanced-designer-service/Get-vRAServiceBlueprint.ps1
Get-vRAServiceBlueprint.ps1
function Get-vRAServiceBlueprint { <# .SYNOPSIS Retrieve vRA ASD Blueprints .DESCRIPTION Retrieve vRA ASD Blueprints .PARAMETER Id Specify the ID of an ASD Blueprint .PARAMETER Name Specify the Name of an ASD Blueprint .PARAMETER Limit The number of entries returned p...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/content-management-service/Get-vRAContentData.ps1
Get-vRAContentData.ps1
function Get-vRAContentData { <# .SYNOPSIS Get the raw data associated with vRA content .DESCRIPTION Get the raw data associated with vRA content .PARAMETER Id The id of the content .PARAMETER SecureValueFormat How secure data will be represented in the export .INPUTS Sys...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/content-management-service/Export-vRAPackage.ps1
Export-vRAPackage.ps1
function Export-vRAPackage { <# .SYNOPSIS Export a vRA Package .DESCRIPTION Export a vRA Package .PARAMETER Id Specify the ID of a Package .PARAMETER Name Specify the Name of a Package .PARAMETER Path The resulting path. If this parameter is not passed the action will...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/content-management-service/Get-vRAPackage.ps1
Get-vRAPackage.ps1
function Get-vRAPackage { <# .SYNOPSIS Retrieve vRA Packages .DESCRIPTION Retrieve vRA Packages .PARAMETER Id Specify the ID of a Package .PARAMETER Name Specify the Name of a Package .PARAMETER Limit The number of entries returned per page from the API. This has a de...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/content-management-service/Get-vRAContentType.ps1
Get-vRAContentType.ps1
function Get-vRAContentType { <# .SYNOPSIS Get a list of available vRA content types .DESCRIPTION Get a list of available vRA content types .PARAMETER Id The id of the content type .PARAMETER Name The name of the content type .PARAMETER Limit The number of entries returne...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/content-management-service/Remove-vRAPackage.ps1
Remove-vRAPackage.ps1
function Remove-vRAPackage { <# .SYNOPSIS Remove a vRA Content Package .DESCRIPTION Remove a vRA Content Package .PARAMETER Id Content Package Id .PARAMETER Name Content Package Name .INPUTS System.String. .OUTPUTS None .EXAMPLE Remove-vRAPackage -Id "f8...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/content-management-service/Import-vRAPackage.ps1
Import-vRAPackage.ps1
function Import-vRAPackage { <# .SYNOPSIS Imports a vRA Content Package .DESCRIPTION Imports a vRA Content Package .PARAMETER File The content package file .PARAMETER DontValidatePackage Skip Package Validation. Not recommended by the API documentation .INPUTS System.St...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/content-management-service/New-vRAPackage.ps1
New-vRAPackage.ps1
function New-vRAPackage { <# .SYNOPSIS Create a vRA Content Package .DESCRIPTION Create a vRA Package .PARAMETER Name Content Package Name .PARAMETER Description Content Package Description .PARAMETER Id A list of content Ids to include in the Package .PARAME...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/content-management-service/Get-vRABlueprint.ps1
Get-vRABlueprint.ps1
function Get-vRABlueprint { <# .SYNOPSIS Retrieve vRA Blueprints .DESCRIPTION Retrieve vRA Blueprints .PARAMETER Id Specify the ID of a Blueprint .PARAMETER Name Specify the Name of a Blueprint .PARAMETER Limit The number of entries returned per page from the API. Thi...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/content-management-service/Get-vRAPackageContent.ps1
Get-vRAPackageContent.ps1
function Get-vRAPackageContent { <# .SYNOPSIS Get content items for a given package .DESCRIPTION Get content items for a given package .PARAMETER Id Specify the ID of a Package .PARAMETER Limit The number of entries returned per page from the API. This has a default value of 1...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/content-management-service/Test-vRAPackage.ps1
Test-vRAPackage.ps1
function Test-vRAPackage { <# .SYNOPSIS Validates a vRA Content Package .DESCRIPTION Validates a vRA Content Package .PARAMETER File The content package file .INPUTS System.String .OUTPUTS System.Management.Automation.PSObject .EXAMPLE Test-vRAPackage -File C:\...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/content-management-service/Get-vRAContent.ps1
Get-vRAContent.ps1
function Get-vRAContent { <# .SYNOPSIS Get available vRA content .DESCRIPTION Get available vRA content .PARAMETER Id The Id of the content .PARAMETER Name The name of the content .PARAMETER Limit The number of entries returned per page from the API. This has a default va...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/properties-service/Remove-vRAPropertyDefinition.ps1
Remove-vRAPropertyDefinition.ps1
function Remove-vRAPropertyDefinition { <# .SYNOPSIS Removes a Property Definiton from the specified tenant .DESCRIPTION Uses the REST API to delete a property definiton based on the Id supplied. If the Tenant is supplied it will delete the property for that tenant only. .PARAMETER Id The ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/properties-service/Get-vRAPropertyDefinition.ps1
Get-vRAPropertyDefinition.ps1
function Get-vRAPropertyDefinition { <# .SYNOPSIS Get a property that the user is allowed to review. .DESCRIPTION API for property definitions that a system administrator can interact with. It allows the user to interact with property definitions that the user is permitted to review. .PAR...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/properties-service/New-vRAPropertyDefinition.ps1
New-vRAPropertyDefinition.ps1
function New-vRAPropertyDefinition { <# .SYNOPSIS Create a custom Property Definition .DESCRIPTION Create a custom Property Definition .PARAMETER Name The unique name (ID) of the Property .PARAMETER Label The text to display in forms for the Property .PARAMETER Descriptio...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Get-vRAExternalNetworkProfile.ps1
Get-vRAExternalNetworkProfile.ps1
function Get-vRAExternalNetworkProfile { <# .SYNOPSIS Get vRA external network profiles .DESCRIPTION Get vRA external network profiles .PARAMETER Id The id of the external network profile .PARAMETER Name The name of the external network profile .PARAMETER Limit The nu...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Get-vRANATNetworkProfile.ps1
Get-vRANATNetworkProfile.ps1
function Get-vRANATNetworkProfile { <# .SYNOPSIS Get vRA NAT network profiles .DESCRIPTION Get vRA NAT network profiles .PARAMETER Id The id of the NAT network profile .PARAMETER Name The name of the NAT network profile .PARAMETER Limit The number of entries returned ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/New-vRANetworkProfileIPRangeDefinition.ps1
New-vRANetworkProfileIPRangeDefinition.ps1
function New-vRANetworkProfileIPRangeDefinition { <# .SYNOPSIS Creates a new network profile ip range definition .DESCRIPTION Creates a new network profile ip range definition .PARAMETER Name The name of the network profile ip range .PARAMETER Description A description of the ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Remove-vRANATNetworkProfile.ps1
Remove-vRANATNetworkProfile.ps1
function Remove-vRANATNetworkProfile { <# .SYNOPSIS Remove a NAT network profile .DESCRIPTION Remove a NAT network profile .PARAMETER Id The id of the NAT network profile .PARAMETER Name The name of the NAT network profile .INPUTS System.String .EXAMPLE Get-v...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Remove-vRARoutedNetworkProfile.ps1
Remove-vRARoutedNetworkProfile.ps1
function Remove-vRARoutedNetworkProfile { <# .SYNOPSIS Remove a routed network profile .DESCRIPTION Remove a routed network profile .PARAMETER Id The id of the routed network profile .PARAMETER Name The name of the routed network profile .INPUTS System.String .EX...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Get-vRANetworkProfileIPRangeSummary.ps1
Get-vRANetworkProfileIPRangeSummary.ps1
function Get-vRANetworkProfileIPRangeSummary { <# .SYNOPSIS Returns a list of range summaries within the network profile. .DESCRIPTION Returns a list of range summaries within the network profile. .PARAMETER NetworkProfileId The id of the network profile .PARAMETER Limit The number of...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Set-vRAExternalNetworkProfile.ps1
Set-vRAExternalNetworkProfile.ps1
function Set-vRAExternalNetworkProfile { <# .SYNOPSIS Set a vRA external network profile .DESCRIPTION Set a vRA external network profiles .PARAMETER Id The network profile id .PARAMETER Name The network profile name .PARAMETER Description The network profile d...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/New-vRARoutedNetworkProfile.ps1
New-vRARoutedNetworkProfile.ps1
function New-vRARoutedNetworkProfile { <# .SYNOPSIS Create a vRA routed network profile .DESCRIPTION Create a vRA routed network profiles .PARAMETER Name The network profile Name .PARAMETER Description The network profile Description .PARAMETER SubnetMask The subn...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Set-vRARoutedNetworkProfile.ps1
Set-vRARoutedNetworkProfile.ps1
function Set-vRARoutedNetworkProfile { <# .SYNOPSIS Set a vRA network profile .DESCRIPTION Set a vRA network profiles .PARAMETER Id The network profile id .PARAMETER Name The network profile name .PARAMETER Description The network profile description .PAR...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Set-vRANATNetworkProfile.ps1
Set-vRANATNetworkProfile.ps1
function Set-vRANATNetworkProfile { <# .SYNOPSIS Set a vRA network profile .DESCRIPTION Set a vRA network profiles .PARAMETER Id The network profile id .PARAMETER Name The network profile name .PARAMETER Description The network profile description .PARAME...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Remove-vRAExternalNetworkProfile.ps1
Remove-vRAExternalNetworkProfile.ps1
function Remove-vRAExternalNetworkProfile { <# .SYNOPSIS Remove an external network profile .DESCRIPTION Remove an external network profile .PARAMETER Id The id of the external network profile .PARAMETER Name The name of the external network profile .INPUTS System.Str...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Get-vRARoutedNetworkProfile.ps1
Get-vRARoutedNetworkProfile.ps1
function Get-vRARoutedNetworkProfile { <# .SYNOPSIS Get vRA routed network profiles .DESCRIPTION Get vRA routed network profile .PARAMETER Id The id of the routed network profile .PARAMETER Name The name of the routed network profile .PARAMETER Limit The number of ent...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/New-vRAExternalNetworkProfile.ps1
New-vRAExternalNetworkProfile.ps1
function New-vRAExternalNetworkProfile { <# .SYNOPSIS Create a vRA external network profile .DESCRIPTION Create a vRA external network profile .PARAMETER Name The network profile Name .PARAMETER Description The network profile Description .PARAMETER SubnetMask The...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Get-vRANetworkProfileIPAddressList.ps1
Get-vRANetworkProfileIPAddressList.ps1
function Get-vRANetworkProfileIPAddressList { <# .SYNOPSIS Get a list of IP addresses available within the network profile .DESCRIPTION Get a list of IP addresses available within the network profile .PARAMETER NetworkProfileId The id of the network profile .PARAMETER Limit Th...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/New-vRANATNetworkProfile.ps1
New-vRANATNetworkProfile.ps1
function New-vRANATNetworkProfile { <# .SYNOPSIS Create a vRA nat network profile .DESCRIPTION Create a vRA nat network profile .PARAMETER Name The network profile Name .PARAMETER Description The network profile Description .PARAMETER SubnetMask The subnet mask of...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/iaas-proxy-provider/Get-vRASourceMachine.ps1
Get-vRASourceMachine.ps1
function Get-vRASourceMachine { <# .SYNOPSIS Return a list of source machines .DESCRIPTION Return a list of source machines. A source machine represents an entity that is visible to the endpoint. .PARAMETER Id The id of the Source Machine .PARAMETER Name The name of the Source...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Set-vRAEntitlement.ps1
Set-vRAEntitlement.ps1
function Set-vRAEntitlement { <# .SYNOPSIS Update an existing entitlement .DESCRIPTION Update an existing entitlement .PARAMETER Id The id of the entitlement .PARAMETER Name The name of the entitlement .PARAMETER Description A description of the entitlement .PARAMETER Pr...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRAService.ps1
Get-vRAService.ps1
function Get-vRAService { <# .SYNOPSIS Retrieve vRA services that the user is has access to .DESCRIPTION A service represents a customer-facing/user friendly set of activities. In the context of this Service Catalog, these activities are the catalog items and resource actions. A service must ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/New-vRAService.ps1
New-vRAService.ps1
function New-vRAService { <# .SYNOPSIS Create a vRA Service for the current tenant .DESCRIPTION Create a vRA Service for the current tenant Currently unsupported interactive actions: * HoursStartTime * HoursEndTime * ChangeWindowDayOfWeek * ChangeWindowStartTime * ChangeWi...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRAEntitledCatalogItem.ps1
Get-vRAEntitledCatalogItem.ps1
function Get-vRAEntitledCatalogItem { <# .SYNOPSIS Get a catalog item that the user is entitled to see .DESCRIPTION Get catalog items that are entitled to. Consumer Entitled CatalogItem(s) are basically catalog items: - in an active state. - the current user has the right to consume. - ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRACatalogItemRequestTemplate.ps1
Get-vRACatalogItemRequestTemplate.ps1
function Get-vRACatalogItemRequestTemplate { <# .SYNOPSIS Get the request template of a catalog item that the user is entitled to see .DESCRIPTION Get the request template of a catalog item that the user is entitled to see and return a JSON payload to reuse in a request .PARAMETER Id T...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Export-vRAIcon.ps1
Export-vRAIcon.ps1
function Export-vRAIcon { <# .SYNOPSIS Export a vRA Icon .DESCRIPTION Export a vRA Icon .PARAMETER Id Specify the ID of an Icon .PARAMETER File Specify the file to output the icon to .INPUTS System.String .OUTPUTS System.IO.FileInfo .EXAMPLE Export-v...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRACatalogPrincipal.ps1
Get-vRACatalogPrincipal.ps1
function Get-vRACatalogPrincipal { <# .SYNOPSIS Finds catalog principals .DESCRIPTION Internal function to find users or groups and return them as the api type catalogPrincipal. DOCS: catalog-service/api/docs/ns0_catalogPrincipal.html [pscustomobject] is returned with lowercase prop...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Set-vRAService.ps1
Set-vRAService.ps1
function Set-vRAService { <# .SYNOPSIS Set a vRA Service .DESCRIPTION Set a vRA Service Currently unsupported interactive actions: * HoursStartTime * HoursEndTime * ChangeWindowDayOfWeek * ChangeWindowStartTime * ChangeWindowEndTime .PARAMETER Id The id of the se...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Remove-vRAService.ps1
Remove-vRAService.ps1
function Remove-vRAService { <# .SYNOPSIS Remove a vRA Service .DESCRIPTION Remove a vRA Service .PARAMETER Id The id of the service .INPUTS System.String .OUTPUTS None .EXAMPLE Remove-vRAService -Id "d00d3631-997c-40f7-90e8-7ccbc153c20c" .EXAMPLE ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRAResourceType.ps1
Get-vRAResourceType.ps1
function Get-vRAResourceType { <# .SYNOPSIS Get a resource type .DESCRIPTION A Resource type is a type assigned to resources. The types are defined by the provider types. It allows similar resources to be grouped together. .PARAMETER Id The id of the resource type .PARAME...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRARequest.ps1
Get-vRARequest.ps1
function Get-vRARequest { <# .SYNOPSIS Get information about vRA requests .DESCRIPTION Get information about vRA requests. These are the same services that you will see via the service tab .PARAMETER Id The Id of the request to query .PARAMETER RequestNumber The reqest nu...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Request-vRACatalogItem.ps1
Request-vRACatalogItem.ps1
function Request-vRACatalogItem { <# .SYNOPSIS Request a vRA catalog item .DESCRIPTION Request a vRA catalog item with a given request template payload. If the wait switch is passed the cmdlet will wait until the request has completed. If successful informaiton about the new resource ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRAIcon.ps1
Get-vRAIcon.ps1
function Get-vRAIcon { <# .SYNOPSIS Retrieve a vRA Icon .DESCRIPTION Retrieve a vRA Icon .PARAMETER Id Specify the ID of an Icon .INPUTS System.String .OUTPUTS System.Management.Automation.PSObject. .EXAMPLE Get-vRAIcon -Id "cafe_default_icon_genericAllServic...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRAResource.ps1
Get-vRAResource.ps1
function Get-vRAResource { <# .SYNOPSIS Get a deployed resource .DESCRIPTION A deployment represents a collection of deployed artifacts that have been provisioned by a provider. .PARAMETER Id The id of the resource .PARAMETER Name The Name of the resource .PARAMETER Type ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRAResourceOperation.ps1
Get-vRAResourceOperation.ps1
function Get-vRAResourceOperation { <# .SYNOPSIS Get a resource operation .DESCRIPTION A resource operation represents a Day-2 operation that can be performed on a resource. Resource operations are registered in the Service Catalog and target a specific resource type. These operations can be ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/New-vRAEntitlement.ps1
New-vRAEntitlement.ps1
function New-vRAEntitlement { <# .SYNOPSIS Create a new entitlement .DESCRIPTION Create a new entitlement .PARAMETER Name The name of the entitlement .PARAMETER Description A description of the entitlement .PARAMETER BusinessGroup The business group that will be associated wi...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRAResourceActionRequestTemplate.ps1
Get-vRAResourceActionRequestTemplate.ps1
function Get-vRAResourceActionRequestTemplate { <# .SYNOPSIS Get the request template of a resource action that the user is entitled to see .DESCRIPTION Get the request template of a resource action that the user is entitled to see .PARAMETER ActionId The id resource action .PARAM...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRAResourceAction.ps1
Get-vRAResourceAction.ps1
function Get-vRAResourceAction { <# .SYNOPSIS Retrieve available Resource Actions for a resource .DESCRIPTION A resourceAction is a specific type of ResourceOperation that is performed by submitting a request. .PARAMETER ResourceId The id of the resource .INPUTS System.String ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Request-vRAResourceAction.ps1
Request-vRAResourceAction.ps1
function Request-vRAResourceAction { <# .SYNOPSIS Request an available resourceAction for a catalog resource .DESCRIPTION A resourceAction is a specific type of ResourceOperation that is performed by submitting a request. Unlike ResourceExtensions, resource actions can be invoked via the Servi...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Remove-vRAIcon.ps1
Remove-vRAIcon.ps1
function Remove-vRAIcon { <# .SYNOPSIS Remove a vRA Icon .DESCRIPTION Remove a vRA Icon from the service catalog. If the icon is one of the default system icons, it will be reverted to its default state instead of being deleted. .PARAMETER Id The id of the Icon .INPUTS System.Stri...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRACatalogItem.ps1
Get-vRACatalogItem.ps1
function Get-vRACatalogItem { <# .SYNOPSIS Get a catalog item that the user is allowed to review. .DESCRIPTION API for catalog items that a system administrator can interact with. It allows the user to interact with catalog items that the user is permitted to review, even if they were not publ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Import-vRAIcon.ps1
Import-vRAIcon.ps1
function Import-vRAIcon { <# .SYNOPSIS Imports a vRA Icon .DESCRIPTION Imports a vRA Icon .PARAMETER Id Specify the ID of an Icon .PARAMETER File The Icon file .INPUTS System.String .OUTPUTS System.Management.Automation.PSObject .EXAMPLE Import-vRAIcon -I...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Set-vRACatalogItem.ps1
Set-vRACatalogItem.ps1
function Set-vRACatalogItem { <# .SYNOPSIS Update a vRA catalog item .DESCRIPTION Update a vRA catalog item .PARAMETER Id The id of the catalog item .PARAMETER Status The status of the catalog item (e.g. PUBLISHED, RETIRED, STAGING) .PARAMETER Quota The Quo...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRAEntitlement.ps1
Get-vRAEntitlement.ps1
function Get-vRAEntitlement { <# .SYNOPSIS Retrieve vRA entitlements .DESCRIPTION Retrieve vRA entitlement either by id or name. Passing no parameters will return all entitlements .PARAMETER Id The id of the entitlement .PARAMETER Name The Name of the entitlement .PAR...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/catalog-service/Get-vRAEntitledService.ps1
Get-vRAEntitledService.ps1
function Get-vRAEntitledService { <# .SYNOPSIS Retrieve vRA services that the user is entitled to see .DESCRIPTION A service represents a customer-facing/user friendly set of activities. In the context of this Service Catalog, these activities are the catalog items and resource actions. A...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/o11n-gateway-service/Invoke-vRADataCollection.ps1
Invoke-vRADataCollection.ps1
function Invoke-vRADataCollection { <# .SYNOPSIS Force a data collection run .DESCRIPTION Force a data collection run via the o11n-gateway-service provided by vRA. The command assumes that the embedded vRO is being used for extensibility and that there is only one IaaS host configured. .INPUTS...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/management-service/Get-vRAResourceMetric.ps1
Get-vRAResourceMetric.ps1
function Get-vRAResourceMetric { <# .SYNOPSIS Retrieve metrics for a deployed resource .DESCRIPTION Retrieve metrics for a deployed resource .PARAMETER Id The id of the catalog resource .PARAMETER Name The name of the catalog resource .PARAMETER Limit The number o...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/component-registry/Get-vRAApplianceServiceStatus.ps1
Get-vRAApplianceServiceStatus.ps1
function Get-vRAApplianceServiceStatus { <# .SYNOPSIS Get information about vRA services Deprecated. Use Get-vRAComponentRegistryServiceStatus instead. .DESCRIPTION Get information about vRA services. These are the same services that you will see via the service tab Deprecated. Use G...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/component-registry/Get-vRAComponentRegistryServiceEndpoint.ps1
Get-vRAComponentRegistryServiceEndpoint.ps1
function Get-vRAComponentRegistryServiceEndpoint { <# .SYNOPSIS Retrieve a list of endpoints for a service .DESCRIPTION Retrieve a list of endpoints for a service .PARAMETER Id The Id of the service. Specifying the Id of the service will retrieve detailed information. .INPUTS System.S...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/component-registry/Get-vRAComponentRegistryServiceStatus.ps1
Get-vRAComponentRegistryServiceStatus.ps1
function Get-vRAComponentRegistryServiceStatus { <# .SYNOPSIS Get component registry service status .DESCRIPTION Get component registry service status .PARAMETER Id The Id of the service .PARAMETER Name The name of the service .PARAMETER Limit The number of entries re...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/component-registry/Get-vRAComponentRegistryService.ps1
Get-vRAComponentRegistryService.ps1
function Get-vRAComponentRegistryService { <# .SYNOPSIS Get information about vRA services .DESCRIPTION Get information about vRA services. .PARAMETER Id The Id of the service. Specifying the Id of the service will retrieve detailed information. .PARAMETER Name The name of the...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Get-vRATenantDirectoryStatus.ps1
Get-vRATenantDirectoryStatus.ps1
function Get-vRATenantDirectoryStatus { <# .SYNOPSIS Retrieve vRA Tenant Directory Status .DESCRIPTION Retrieve vRA Tenant Directory Status .PARAMETER Id Specify the ID of a Tenant .PARAMETER Domain Specify the Domain of a Tenant Directory .INPUTS System.String ....
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Add-vRAPrincipalToTenantRole.ps1
Add-vRAPrincipalToTenantRole.ps1
function Add-vRAPrincipalToTenantRole { <# .SYNOPSIS Add a vRA Principal to a Tenant Role .DESCRIPTION Add a vRA Principal to a Tenant Role .PARAMETER TenantId Specify the Tenant Id .PARAMETER PrincipalId Specify the Principal Id .PARAMETER RoleId Specify the Role Id ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Get-vRAGroupPrincipal.ps1
Get-vRAGroupPrincipal.ps1
function Get-vRAGroupPrincipal { <# .SYNOPSIS Finds groups. .DESCRIPTION Finds groups in one of the identity providers configured for the tenant. .PARAMETER Id The Id of the group .PARAMETER Tenant The tenant of the group .PARAMETER Limit The number of entries...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/New-vRAGroupPrincipal.ps1
New-vRAGroupPrincipal.ps1
function New-vRAGroupPrincipal { <# .SYNOPSIS Create a vRA custom group .DESCRIPTION Create a vRA Principal (user) .PARAMETER Tenant The tenant of the group .PARAMETER Name Group name .PARAMETER Description A description for the group .PARAMETER JSON ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Get-vRATenantDirectory.ps1
Get-vRATenantDirectory.ps1
function Get-vRATenantDirectory { <# .SYNOPSIS Retrieve vRA Tenant Directories .DESCRIPTION Retrieve vRA Tenant Directories .PARAMETER Id Specify the ID of a Tenant .PARAMETER Limit The number of entries returned per page from the API. This has a default value of 100. .IN...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Get-vRABusinessGroup.ps1
Get-vRABusinessGroup.ps1
function Get-vRABusinessGroup { <# .SYNOPSIS Retrieve vRA Business Groups .DESCRIPTION Retrieve vRA Business Groups .PARAMETER TenantId Specify the ID of a Tenant .PARAMETER Name Specify the Name of a Business Group .PARAMETER Limit The number of entries returned per ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Get-vRAUserPrincipal.ps1
Get-vRAUserPrincipal.ps1
function Get-vRAUserPrincipal { <# .SYNOPSIS Finds regular users .DESCRIPTION Finds regular users in one of the identity providers configured for the tenant. .PARAMETER Id The Id of the user .PARAMETER Tenant The tenant of the user .PARAMETER LocalUsersOnly On...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Remove-vRATenant.ps1
Remove-vRATenant.ps1
function Remove-vRATenant { <# .SYNOPSIS Remove a vRA Tenant .DESCRIPTION Remove a vRA Tenant .PARAMETER Id Tenant ID .INPUTS System.String. .OUTPUTS None .EXAMPLE Remove-vRATenant -Id Tenant02 .EXAMPLE Get-vRATenant -Id Tenant02 | Remove-vRATena...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Remove-vRAGroupPrincipal.ps1
Remove-vRAGroupPrincipal.ps1
function Remove-vRAGroupPrincipal { <# .SYNOPSIS Remove a vRA custom group .DESCRIPTION Remove a vRA custom group .PARAMETER Id The principal id of the custom group .PARAMETER Tenant The tenant of the group .INPUTS System.String. .OUTPUTS None .EXAMP...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Remove-vRABusinessGroup.ps1
Remove-vRABusinessGroup.ps1
function Remove-vRABusinessGroup { <# .SYNOPSIS Remove a vRA Business Group .DESCRIPTION Remove a vRA Business Group .PARAMETER TenantId Tenant Id .PARAMETER Id Business Group Id .PARAMETER Name Business Group Name .INPUTS System.String. .OUTPUTS Non...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Remove-vRATenantDirectory.ps1
Remove-vRATenantDirectory.ps1
function Remove-vRATenantDirectory { <# .SYNOPSIS Remove a vRA Tenant Directory .DESCRIPTION Remove a vRA Tenant Directory .PARAMETER Id Tenant Id .PARAMETER Domain Tenant Directory Domain .INPUTS System.String. .OUTPUTS None .EXAMPLE Remove-vRATenan...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/New-vRATenantDirectory.ps1
New-vRATenantDirectory.ps1
function New-vRATenantDirectory { <# .SYNOPSIS Create a vRA Tenant Directory .DESCRIPTION Create a vRA Tenant Directory .PARAMETER ID Tenant ID .PARAMETER Name Tenant Directory Name .PARAMETER Description Tenant Directory Description .PARAMETER Alias Tena...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Set-vRAStorageReservationPolicy.ps1
Set-vRAStorageReservationPolicy.ps1
function Set-vRAStorageReservationPolicy { <# .SYNOPSIS Update a vRA Storage Reservation Policy .DESCRIPTION Update a vRA Storage Reservation Policy .PARAMETER Id Storage Reservation Policy Id .PARAMETER Name Storage Reservation Policy Name .PARAMETER NewName Storage ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Set-vRABusinessGroup.ps1
Set-vRABusinessGroup.ps1
function Set-vRABusinessGroup { <# .SYNOPSIS Update a vRA Business Group .DESCRIPTION Update a vRA Business Group .PARAMETER TenantId Tenant ID .PARAMETER Id Business Group ID .PARAMETER Name Business Group Name .PARAMETER Description Business Group D...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Set-vRATenantDirectory.ps1
Set-vRATenantDirectory.ps1
function Set-vRATenantDirectory { <# .SYNOPSIS Update a vRA Tenant Directory .DESCRIPTION Update a vRA Tenant Directory .PARAMETER ID Tenant ID .PARAMETER Name Tenant Directory Name .PARAMETER Description A description for the directory .PARAMETER Alias T...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Get-vRATenantRole.ps1
Get-vRATenantRole.ps1
function Get-vRATenantRole { <# .SYNOPSIS Retrieve vRA Tenant Role .DESCRIPTION Retrieve vRA Tenant Role .PARAMETER TenantId Specify the Tenant Id .PARAMETER PrincipalId Specify the Principal Id .PARAMETER Limit The number of entries returned per page from the API. Th...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Set-vRATenant.ps1
Set-vRATenant.ps1
function Set-vRATenant { <# .SYNOPSIS Update a vRA Tenant .DESCRIPTION Update a vRA Tenant .PARAMETER Name Tenant Name .PARAMETER Description Tenant Description .PARAMETER ContactEmail Tenant Contact Email .PARAMETER ID Tenant ID .PARAMETER JSON ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Get-vRAVersion.ps1
Get-vRAVersion.ps1
function Get-vRAVersion { <# .SYNOPSIS Retrieve vRA version information .DESCRIPTION Retrieve vRA version information .OUTPUTS System.Management.Automation.PSObject. .EXAMPLE Get-vRAVersion #> [CmdletBinding()][OutputType('System.Management.Automation.PSObject')] Param (...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Get-vRAUserPrincipalGroupMembership.ps1
Get-vRAUserPrincipalGroupMembership.ps1
function Get-vRAUserPrincipalGroupMembership { <# .SYNOPSIS Retrieve a list of groups that a user is a member of .DESCRIPTION Retrieve a list of groups that a user is a member of .PARAMETER Id The Id of the user .PARAMETER Tenant The tenant of the user .PARAMETER ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Set-vRAUserPrincipal.ps1
Set-vRAUserPrincipal.ps1
function Set-vRAUserPrincipal { <# .SYNOPSIS Update a vRA local user principal .DESCRIPTION Update a vRA Principal (user) .PARAMETER Id The principal id of the user .PARAMETER Tenant The tenant of the user .PARAMETER FirstName First Name .PARAMETER LastName ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Remove-vRAPrincipalFromTenantRole.ps1
Remove-vRAPrincipalFromTenantRole.ps1
function Remove-vRAPrincipalFromTenantRole { <# .SYNOPSIS Remove a vRA Principal from a Tenant Role .DESCRIPTION Remove a vRA Principal from a Tenant Role .PARAMETER TenantId Specify the Tenant Id .PARAMETER PrincipalId Specify the Principal Id .PARAMETER RoleId Speci...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/New-vRABusinessGroup.ps1
New-vRABusinessGroup.ps1
function New-vRABusinessGroup { <# .SYNOPSIS Create a vRA Business Group .DESCRIPTION Create a vRA Business Group .PARAMETER TenantId Tenant ID .PARAMETER Name Business Group Name .PARAMETER Description Business Group Description .PARAMETER BusinessGroupManag...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/New-vRATenant.ps1
New-vRATenant.ps1
function New-vRATenant { <# .SYNOPSIS Create a vRA Tenant .DESCRIPTION Create a vRA Tenant .PARAMETER Name Tenant Name .PARAMETER Description Tenant Description .PARAMETER URLName Tenant URL Name .PARAMETER ContactEmail Tenant Contact Email .PARA...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Get-vRATenant.ps1
Get-vRATenant.ps1
function Get-vRATenant { <# .SYNOPSIS Retrieve vRA Tenants .DESCRIPTION Retrieve vRA Tenants. Make sure to have permission to access all Tenant information .PARAMETER Id Specify the ID of a Tenant .PARAMETER Limit The number of entries returned per page from the API. This has ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Remove-vRAUserPrincipal.ps1
Remove-vRAUserPrincipal.ps1
function Remove-vRAUserPrincipal { <# .SYNOPSIS Remove a vRA local user principal .DESCRIPTION Remove a vRA local user principal .PARAMETER Id The principal id of the user .PARAMETER Tenant The tenant of the user .INPUTS System.String. .OUTPUTS None ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/Get-vRAAuthorizationRole.ps1
Get-vRAAuthorizationRole.ps1
function Get-vRAAuthorizationRole { <# .SYNOPSIS Retrieve vRA Authorization Role .DESCRIPTION Retrieve vRA Authorization Role .PARAMETER Id Specify the Id of a Role .PARAMETER Limit The number of entries returned per page from the API. This has a default value of 100. .IN...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/identity/New-vRAUserPrincipal.ps1
New-vRAUserPrincipal.ps1
function New-vRAUserPrincipal { <# .SYNOPSIS Create a vRA local user principal .DESCRIPTION Create a vRA Principal (user) .PARAMETER Tenant The tenant of the user .PARAMETER PrincipalId Principal id in user@company.com format .PARAMETER FirstName First Name ....
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/reservation-service/Add-vRAReservationNetwork.ps1
Add-vRAReservationNetwork.ps1
function Add-vRAReservationNetwork { <# .SYNOPSIS Add a network to an existing vRA reservation .DESCRIPTION This cmdlet enables the user to add a new network to a reservation. Only one new network path can be added at a time. If a duplicate network path is detected, the API will throw an error. ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/reservation-service/New-vRAReservationStorageDefinition.ps1
New-vRAReservationStorageDefinition.ps1
function New-vRAReservationStorageDefinition { <# .SYNOPSIS Creates a new storage definition for a reservation .DESCRIPTION Creates a new storage definition for a reservation. This cmdlet is used to create a custom complex storage object. One or more of these can be added to an array and passed...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/reservation-service/New-vRAReservationNetworkDefinition.ps1
New-vRAReservationNetworkDefinition.ps1
function New-vRAReservationNetworkDefinition { <# .SYNOPSIS Creates a new network definition for a reservation. .DESCRIPTION Creates a new network definition for a reservation. This cmdlet is used to create a custom complex network object. One or more of these can be added to an array and passe...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/reservation-service/New-vRAStorageReservationPolicy.ps1
New-vRAStorageReservationPolicy.ps1
function New-vRAStorageReservationPolicy { <# .SYNOPSIS Create a vRA Storage Reservation Policy .DESCRIPTION Create a vRA Storage Reservation Policy .PARAMETER Name Storage Reservation Policy Name .PARAMETER Description Storage Reservation Policy Description .PARAMETE...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/reservation-service/Get-vRAReservationComputeResourceMemory.ps1
Get-vRAReservationComputeResourceMemory.ps1
function Get-vRAReservationComputeResourceMemory { <# .SYNOPSIS Get available memory for a compute resource .DESCRIPTION Get available memory for a compute resource .PARAMETER Type The reservation type .PARAMETER ComputeResourceId The id of the compute resource .INPUTS Sy...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/reservation-service/Set-vRAReservationNetwork.ps1
Set-vRAReservationNetwork.ps1
function Set-vRAReservationNetwork { <# .SYNOPSIS Set vRA reservation network properties .DESCRIPTION Set vRA reservation network properties. This function enables you to: - Add a new network path to a reservation - Add a new network path to a reservation and assign a network profile ...
PowerShellCorpus/PowerShellGallery/PowervRA/2.2.0/Functions/Public/reservation-service/New-vRAReservationPolicy.ps1
New-vRAReservationPolicy.ps1
function New-vRAReservationPolicy { <# .SYNOPSIS Create a vRA Reservation Policy .DESCRIPTION Create a vRA Reservation Policy .PARAMETER Name Reservation Policy Name .PARAMETER Description Reservation Policy Description .PARAMETER JSON Body text to send in JSON fo...