Model/CreateMachineAccountSubtypeV1Request.ps1
|
# # Identity Security Cloud API - Machine Accounts # 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 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 CreateMachineAccountSubtypeV1Request<PSCustomObject> #> function Initialize-CreateMachineAccountSubtypeV1Request { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${TechnicalName}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${DisplayName}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Type} ) Process { 'Creating PSCustomObject: PSSailpoint.MachineAccounts => CreateMachineAccountSubtypeV1Request' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug 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]@{ "technicalName" = ${TechnicalName} "displayName" = ${DisplayName} "description" = ${Description} "type" = ${Type} } return $PSO } } <# .SYNOPSIS Convert from JSON to CreateMachineAccountSubtypeV1Request<PSCustomObject> .DESCRIPTION Convert from JSON to CreateMachineAccountSubtypeV1Request<PSCustomObject> .PARAMETER Json Json object .OUTPUTS CreateMachineAccountSubtypeV1Request<PSCustomObject> #> function ConvertFrom-JsonToCreateMachineAccountSubtypeV1Request { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.MachineAccounts => CreateMachineAccountSubtypeV1Request' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in CreateMachineAccountSubtypeV1Request $AllProperties = ("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 'technicalName' missing." } 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]@{ "technicalName" = ${TechnicalName} "displayName" = ${DisplayName} "description" = ${Description} "type" = ${Type} } return $PSO } } |