functions/subscription/Get-CloudiQSubscriptionAddon.ps1
function Get-CloudiQSubscriptionAddon { <# .SYNOPSIS Get the available subscription addon offers. .DESCRIPTION Using the parameter SubscriptionId, you can see the subscription addons that are available for that particular subscription. In the future, it will return a collection of subscription addon offers that are available for all the subscriptions you have available. .PARAMETER SubscriptionId The ID for the subscription that you want to check current addons for. .INPUTS None, or parameters. .OUTPUTS Outputs a PSCustomObject. .EXAMPLE #> [CmdletBinding()] param ( [Parameter(Position = 0, ValueFromPipeline = $true, Mandatory = $true)] [string] $SubscriptionId ) $callParam = @{ Uri = ("subscriptions/$SubscriptionId/addon-offers") } $APICall = Invoke-CloudiQApiRequest @callParam | Select-Object -ExpandProperty Items $APICall | ForEach-Object { [PSCustomObject]@{ Name = $_.Product.ItemName Id = $_.Product.Id Publisher = $_.Publisher.Name PartNumber = $_.Product.PartNumber PublisherProductId = $_.Product.PublisherProductId } } } |