Model/CustomMetadataUserMetadataSettings.ps1
# # Cloud Governance Api # Contact: support@avepoint.com # <# CustomMetadataUserMetadataSettings<PSCustomObject> #> function New-CustomMetadataUserMetadataSettings { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Value}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${PeoplePickerProfile}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${AllowBusinessUserToInputSingleValue} = $false, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${AllowReferenceAsRoleInApprovalProcess} = $false ) Process { 'Creating PSCustomObject: Cloud.Governance.Client => CustomMetadataUserMetadataSettings' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "Value" = ${Value} "PeoplePickerProfile" = ${PeoplePickerProfile} "AllowBusinessUserToInputSingleValue" = ${AllowBusinessUserToInputSingleValue} "AllowReferenceAsRoleInApprovalProcess" = ${AllowReferenceAsRoleInApprovalProcess} } return $PSO } } <# CustomMetadataUserMetadataSettings<PSCustomObject> #> function ConvertFrom-JsonToCustomMetadataUserMetadataSettings { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: Cloud.Governance.Client => CustomMetadataUserMetadataSettings' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in CustomMetadataUserMetadataSettings $AllProperties = $("Value", "PeoplePickerProfile", "AllowBusinessUserToInputSingleValue", "AllowReferenceAsRoleInApprovalProcess") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } if (!([bool]($JsonParameters.PSobject.Properties.name -match "Value"))) { #optional property not found $Value = $null } else { $Value = $JsonParameters.PSobject.Properties["Value"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "PeoplePickerProfile"))) { #optional property not found $PeoplePickerProfile = $null } else { $PeoplePickerProfile = $JsonParameters.PSobject.Properties["PeoplePickerProfile"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "AllowBusinessUserToInputSingleValue"))) { #optional property not found $AllowBusinessUserToInputSingleValue = $null } else { $AllowBusinessUserToInputSingleValue = $JsonParameters.PSobject.Properties["AllowBusinessUserToInputSingleValue"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "AllowReferenceAsRoleInApprovalProcess"))) { #optional property not found $AllowReferenceAsRoleInApprovalProcess = $null } else { $AllowReferenceAsRoleInApprovalProcess = $JsonParameters.PSobject.Properties["AllowReferenceAsRoleInApprovalProcess"].value } $PSO = [PSCustomObject]@{ "Value" = ${Value} "PeoplePickerProfile" = ${PeoplePickerProfile} "AllowBusinessUserToInputSingleValue" = ${AllowBusinessUserToInputSingleValue} "AllowReferenceAsRoleInApprovalProcess" = ${AllowReferenceAsRoleInApprovalProcess} } return $PSO } } |