Model/GroupNameConstructureSettings.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 Enabled No description available. .PARAMETER AssignBy No description available. .PARAMETER Prefixs No description available. .PARAMETER Suffixs No description available. .OUTPUTS GroupNameConstructureSettings<PSCustomObject> #> function New-GroupNameConstructureSettings { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${Enabled}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${AssignBy}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Prefixs}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Suffixs} ) Process { 'Creating object: Cloud.Governance.Client => GroupNameConstructureSettings' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "enabled" = ${Enabled} "assignBy" = ${AssignBy} "prefixs" = ${Prefixs} "suffixs" = ${Suffixs} } return $PSO } } |