Model/SiteJobTriggers.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 RenewalJob
No description available.

.PARAMETER ContactElectionJob
No description available.

.PARAMETER StorageThresholdJob
No description available.

.PARAMETER StatusScanJob
No description available.

.PARAMETER AutoLockJob
No description available.

.PARAMETER RecertificationJob
No description available.

.PARAMETER AutomaticImportJob
No description available.

.OUTPUTS

SiteJobTriggers<PSCustomObject>
#>


function New-SiteJobTriggers {
    [CmdletBinding()]
    Param (
        [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${RenewalJob},
        [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${ContactElectionJob},
        [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${StorageThresholdJob},
        [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${StatusScanJob},
        [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${AutoLockJob},
        [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${RecertificationJob},
        [Parameter(Position = 6, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${AutomaticImportJob}
    )

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

        $PSO = [PSCustomObject]@{
            "renewalJob" = ${RenewalJob}
            "contactElectionJob" = ${ContactElectionJob}
            "storageThresholdJob" = ${StorageThresholdJob}
            "statusScanJob" = ${StatusScanJob}
            "autoLockJob" = ${AutoLockJob}
            "recertificationJob" = ${RecertificationJob}
            "automaticImportJob" = ${AutomaticImportJob}
        }

        return $PSO
    }
}