Model/RecertificationReportProperties.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 ObjectId No description available. .PARAMETER ObjectName No description available. .PARAMETER IsAllowedReassign No description available. .PARAMETER ReportGeneratedTime No description available. .PARAMETER RequestSummary No description available. .OUTPUTS RecertificationReportProperties<PSCustomObject> #> function New-RecertificationReportProperties { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ObjectId}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${ObjectName}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${IsAllowedReassign}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${ReportGeneratedTime}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [String] ${RequestSummary} ) Process { 'Creating object: Cloud.Governance.Client => RecertificationReportProperties' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "objectId" = ${ObjectId} "objectName" = ${ObjectName} "isAllowedReassign" = ${IsAllowedReassign} "reportGeneratedTime" = ${ReportGeneratedTime} "requestSummary" = ${RequestSummary} } return $PSO } } |