Model/CreateSourceSubtypeV1Request.ps1
|
# # Identity Security Cloud API - Machine Account Subtypes # Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs. # Version: v1 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER SourceId ID of the source where subtype is created. .PARAMETER TechnicalName Technical name of the subtype. .PARAMETER DisplayName Display name of the subtype. .PARAMETER Description Description of the subtype. .PARAMETER Type Type of the subtype. .OUTPUTS CreateSourceSubtypeV1Request<PSCustomObject> #> function Initialize-CreateSourceSubtypeV1Request { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${SourceId}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${TechnicalName}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${DisplayName}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Type} ) Process { 'Creating PSCustomObject: PSSailpoint.MachineAccountSubtypes => CreateSourceSubtypeV1Request' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$SourceId) { throw "invalid value for 'SourceId', 'SourceId' cannot be null." } if (!$TechnicalName) { throw "invalid value for 'TechnicalName', 'TechnicalName' cannot be null." } if (!$DisplayName) { throw "invalid value for 'DisplayName', 'DisplayName' cannot be null." } if (!$Description) { throw "invalid value for 'Description', 'Description' cannot be null." } $PSO = [PSCustomObject]@{ "sourceId" = ${SourceId} "technicalName" = ${TechnicalName} "displayName" = ${DisplayName} "description" = ${Description} "type" = ${Type} } return $PSO } } <# .SYNOPSIS Convert from JSON to CreateSourceSubtypeV1Request<PSCustomObject> .DESCRIPTION Convert from JSON to CreateSourceSubtypeV1Request<PSCustomObject> .PARAMETER Json Json object .OUTPUTS CreateSourceSubtypeV1Request<PSCustomObject> #> function ConvertFrom-JsonToCreateSourceSubtypeV1Request { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.MachineAccountSubtypes => CreateSourceSubtypeV1Request' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in CreateSourceSubtypeV1Request $AllProperties = ("sourceId", "technicalName", "displayName", "description", "type") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } If ([string]::IsNullOrEmpty($Json) -or $Json -eq "{}") { # empty json throw "Error! Empty JSON cannot be serialized due to the required property 'sourceId' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "sourceId"))) { throw "Error! JSON cannot be serialized due to the required property 'sourceId' missing." } else { $SourceId = $JsonParameters.PSobject.Properties["sourceId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "technicalName"))) { throw "Error! JSON cannot be serialized due to the required property 'technicalName' missing." } else { $TechnicalName = $JsonParameters.PSobject.Properties["technicalName"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "displayName"))) { throw "Error! JSON cannot be serialized due to the required property 'displayName' missing." } else { $DisplayName = $JsonParameters.PSobject.Properties["displayName"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "description"))) { throw "Error! JSON cannot be serialized due to the required property 'description' missing." } else { $Description = $JsonParameters.PSobject.Properties["description"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "type"))) { #optional property not found $Type = $null } else { $Type = $JsonParameters.PSobject.Properties["type"].value } $PSO = [PSCustomObject]@{ "sourceId" = ${SourceId} "technicalName" = ${TechnicalName} "displayName" = ${DisplayName} "description" = ${Description} "type" = ${Type} } return $PSO } } |