Model/ChangeWebContactByUrlSetting.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 SiteId No description available. .PARAMETER SiteUrl No description available. .PARAMETER WebId No description available. .PARAMETER WebUrl No description available. .PARAMETER PrimaryContact No description available. .PARAMETER SecondaryContact No description available. .OUTPUTS ChangeWebContactByUrlSetting<PSCustomObject> #> function New-ChangeWebContactByUrlSetting { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${SiteId}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${SiteUrl}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${WebId}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [String] ${WebUrl}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${PrimaryContact}, [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${SecondaryContact} ) Process { 'Creating object: Cloud.Governance.Client => ChangeWebContactByUrlSetting' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "siteId" = ${SiteId} "siteUrl" = ${SiteUrl} "webId" = ${WebId} "webUrl" = ${WebUrl} "primaryContact" = ${PrimaryContact} "secondaryContact" = ${SecondaryContact} } return $PSO } } |