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