Model/ListTemplate.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 Title
No description available.

.PARAMETER Description
No description available.

.PARAMETER Type
No description available.

.PARAMETER BaseType
No description available.

.PARAMETER Name
No description available.

.PARAMETER IsCustomTemplate
No description available.

.OUTPUTS

ListTemplate<PSCustomObject>
#>


function New-ListTemplate {
    [CmdletBinding()]
    Param (
        [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)]
        [String]
        ${Title},
        [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)]
        [String]
        ${Description},
        [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${Type},
        [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${BaseType},
        [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)]
        [String]
        ${Name},
        [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)]
        [System.Nullable[Boolean]]
        ${IsCustomTemplate}
    )

    Process {
        'Creating object: Cloud.Governance.Client => ListTemplate' | Write-Debug
        $PSBoundParameters | Out-DebugParameter | Write-Debug

        $PSO = [PSCustomObject]@{
            "title" = ${Title}
            "description" = ${Description}
            "type" = ${Type}
            "baseType" = ${BaseType}
            "name" = ${Name}
            "isCustomTemplate" = ${IsCustomTemplate}
        }

        return $PSO
    }
}