Model/CreateLibraryGalleryLibraryUrl.ps1
# # Cloud Governance Api # Contact: support@avepoint.com # <# CreateLibraryGalleryLibraryUrl<PSCustomObject> #> function New-CreateLibraryGalleryLibraryUrl { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${ParentWebUrl}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${LibraryUrl}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${LibraryId}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${LibraryName}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${ActivityId} ) Process { 'Creating PSCustomObject: Cloud.Governance.Client => CreateLibraryGalleryLibraryUrl' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "ParentWebUrl" = ${ParentWebUrl} "LibraryUrl" = ${LibraryUrl} "LibraryId" = ${LibraryId} "LibraryName" = ${LibraryName} "ActivityId" = ${ActivityId} } return $PSO } } <# CreateLibraryGalleryLibraryUrl<PSCustomObject> #> function ConvertFrom-JsonToCreateLibraryGalleryLibraryUrl { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: Cloud.Governance.Client => CreateLibraryGalleryLibraryUrl' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in CreateLibraryGalleryLibraryUrl $AllProperties = $("ParentWebUrl", "LibraryUrl", "LibraryId", "LibraryName", "ActivityId") 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 "ParentWebUrl"))) { #optional property not found $ParentWebUrl = $null } else { $ParentWebUrl = $JsonParameters.PSobject.Properties["ParentWebUrl"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "LibraryUrl"))) { #optional property not found $LibraryUrl = $null } else { $LibraryUrl = $JsonParameters.PSobject.Properties["LibraryUrl"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "LibraryId"))) { #optional property not found $LibraryId = $null } else { $LibraryId = $JsonParameters.PSobject.Properties["LibraryId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "LibraryName"))) { #optional property not found $LibraryName = $null } else { $LibraryName = $JsonParameters.PSobject.Properties["LibraryName"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "ActivityId"))) { #optional property not found $ActivityId = $null } else { $ActivityId = $JsonParameters.PSobject.Properties["ActivityId"].value } $PSO = [PSCustomObject]@{ "ParentWebUrl" = ${ParentWebUrl} "LibraryUrl" = ${LibraryUrl} "LibraryId" = ${LibraryId} "LibraryName" = ${LibraryName} "ActivityId" = ${ActivityId} } return $PSO } } |