Model/CategoryType.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 Contact=0, License=1, Organization=2, </br> .OUTPUTS CategoryType<PSCustomObject> #> function New-CategoryType { [CmdletBinding()] Param ( ) Process { 'Creating object: Cloud.Governance.Client => CategoryType' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ } return $PSO } } |