Model/GroupLifecycleValidateResult.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 ExtendSetting No description available. .PARAMETER ChangePolicySetting No description available. .PARAMETER ChangeQuotaSetting No description available. .PARAMETER IsValid No description available. .PARAMETER ErrorMessage No description available. .OUTPUTS GroupLifecycleValidateResult<PSCustomObject> #> function New-GroupLifecycleValidateResult { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ExtendSetting}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ChangePolicySetting}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ChangeQuotaSetting}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${IsValid}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [String] ${ErrorMessage} ) Process { 'Creating object: Cloud.Governance.Client => GroupLifecycleValidateResult' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "extendSetting" = ${ExtendSetting} "changePolicySetting" = ${ChangePolicySetting} "changeQuotaSetting" = ${ChangeQuotaSetting} "isValid" = ${IsValid} "errorMessage" = ${ErrorMessage} } return $PSO } } |