Model/TaskResult.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 Running=0, Approved=1, Rejected=2, </br>Canceled=3, TimeOut=4, Completed=5, </br>AutoActionApproved=6, Retried=7, Skipped=8, </br>Submited=9, WaitingForSubmission=10, AllStagesTimeOut=11, </br>Declined=12, WaitingForClaim=13, ElectionTaskTimeOut=14, </br>Claimed=15, AutoComplete=16, WaitingForSpecify=17, </br>PendingConfirm=19, ConfirmOverdue=20, PendingRenewal=21, </br>RenewalExpired=22, ConfirmException=23, RenewalException=24, </br>WaitingForSpecifyBothContacts=25 .OUTPUTS TaskResult<PSCustomObject> #> function New-TaskResult { [CmdletBinding()] Param ( ) Process { 'Creating object: Cloud.Governance.Client => TaskResult' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ } return $PSO } } |