Model/ConflictResolutionSetting.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 ContainerConflictSolution
No description available.

.PARAMETER IsCheckLowerObject
No description available.

.PARAMETER IsEnableContentConflictResolution
No description available.

.PARAMETER ContentConflictSolution
No description available.

.PARAMETER AppConflictSolution
No description available.

.OUTPUTS

ConflictResolutionSetting<PSCustomObject>
#>


function New-ConflictResolutionSetting {
    [CmdletBinding()]
    Param (
        [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${ContainerConflictSolution},
        [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)]
        [System.Nullable[Boolean]]
        ${IsCheckLowerObject},
        [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)]
        [System.Nullable[Boolean]]
        ${IsEnableContentConflictResolution},
        [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${ContentConflictSolution},
        [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)]
        [PSCustomObject]
        ${AppConflictSolution}
    )

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

        $PSO = [PSCustomObject]@{
            "containerConflictSolution" = ${ContainerConflictSolution}
            "isCheckLowerObject" = ${IsCheckLowerObject}
            "isEnableContentConflictResolution" = ${IsEnableContentConflictResolution}
            "contentConflictSolution" = ${ContentConflictSolution}
            "appConflictSolution" = ${AppConflictSolution}
        }

        return $PSO
    }
}