Model/AppBrandingModel.ps1
# # Cloud Governance Api # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # Version: 1.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER DataSource No description available. .PARAMETER FileName No description available. .PARAMETER Link No description available. .OUTPUTS AppBrandingModel<PSCustomObject> #> function New-AppBrandingModel { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${DataSource}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${FileName}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [String] ${Link} ) Process { 'Creating object: Cloud.Governance.Client => AppBrandingModel' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "dataSource" = ${DataSource} "fileName" = ${FileName} "link" = ${Link} } return $PSO } } |