Model/ManagedClient.ps1
# # Identity Security Cloud V3 API # 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: 3.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION Managed Client .PARAMETER ApiGatewayBaseUrl No description available. .PARAMETER Cookbook No description available. .PARAMETER CcId Previous CC ID to be used in data migration. (This field will be deleted after CC migration!) .PARAMETER ClientId The client ID used in API management .PARAMETER ClusterId Cluster ID that the ManagedClient is linked to .PARAMETER Description ManagedClient description .PARAMETER Name ManagedClient name .PARAMETER Type Type of the ManagedClient (VA, CCG) .PARAMETER Secret Client's apiKey .PARAMETER CreatedAt The date/time this ManagedClient was created .PARAMETER UpdatedAt The date/time this ManagedClient was last updated .OUTPUTS ManagedClient<PSCustomObject> #> function Initialize-ManagedClient { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${ApiGatewayBaseUrl}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Cookbook}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[Int64]] ${CcId}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${ClientId}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${ClusterId}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description} = "", [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name} = "VA-$clientId", [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Type}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Secret}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${CreatedAt}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${UpdatedAt} ) Process { 'Creating PSCustomObject: PSSailpoint.V3 => ManagedClient' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$ClientId) { throw "invalid value for 'ClientId', 'ClientId' cannot be null." } if (!$ClusterId) { throw "invalid value for 'ClusterId', 'ClusterId' cannot be null." } if (!$Description) { throw "invalid value for 'Description', 'Description' cannot be null." } if (!$Type) { throw "invalid value for 'Type', 'Type' cannot be null." } $PSO = [PSCustomObject]@{ "apiGatewayBaseUrl" = ${ApiGatewayBaseUrl} "cookbook" = ${Cookbook} "ccId" = ${CcId} "clientId" = ${ClientId} "clusterId" = ${ClusterId} "description" = ${Description} "name" = ${Name} "type" = ${Type} "secret" = ${Secret} "createdAt" = ${CreatedAt} "updatedAt" = ${UpdatedAt} } return $PSO } } <# .SYNOPSIS Convert from JSON to ManagedClient<PSCustomObject> .DESCRIPTION Convert from JSON to ManagedClient<PSCustomObject> .PARAMETER Json Json object .OUTPUTS ManagedClient<PSCustomObject> #> function ConvertFrom-JsonToManagedClient { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.V3 => ManagedClient' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in ManagedClient $AllProperties = ("id", "alertKey", "apiGatewayBaseUrl", "cookbook", "ccId", "clientId", "clusterId", "description", "ipAddress", "lastSeen", "name", "sinceLastSeen", "status", "type", "clusterType", "vaDownloadUrl", "vaVersion", "secret", "createdAt", "updatedAt", "provisionStatus") 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 'clientId' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "clientId"))) { throw "Error! JSON cannot be serialized due to the required property 'clientId' missing." } else { $ClientId = $JsonParameters.PSobject.Properties["clientId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "clusterId"))) { throw "Error! JSON cannot be serialized due to the required property 'clusterId' missing." } else { $ClusterId = $JsonParameters.PSobject.Properties["clusterId"].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"))) { throw "Error! JSON cannot be serialized due to the required property 'type' missing." } else { $Type = $JsonParameters.PSobject.Properties["type"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "id"))) { #optional property not found $Id = $null } else { $Id = $JsonParameters.PSobject.Properties["id"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "alertKey"))) { #optional property not found $AlertKey = $null } else { $AlertKey = $JsonParameters.PSobject.Properties["alertKey"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "apiGatewayBaseUrl"))) { #optional property not found $ApiGatewayBaseUrl = $null } else { $ApiGatewayBaseUrl = $JsonParameters.PSobject.Properties["apiGatewayBaseUrl"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "cookbook"))) { #optional property not found $Cookbook = $null } else { $Cookbook = $JsonParameters.PSobject.Properties["cookbook"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "ccId"))) { #optional property not found $CcId = $null } else { $CcId = $JsonParameters.PSobject.Properties["ccId"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "ipAddress"))) { #optional property not found $IpAddress = $null } else { $IpAddress = $JsonParameters.PSobject.Properties["ipAddress"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "lastSeen"))) { #optional property not found $LastSeen = $null } else { $LastSeen = $JsonParameters.PSobject.Properties["lastSeen"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "name"))) { #optional property not found $Name = $null } else { $Name = $JsonParameters.PSobject.Properties["name"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "sinceLastSeen"))) { #optional property not found $SinceLastSeen = $null } else { $SinceLastSeen = $JsonParameters.PSobject.Properties["sinceLastSeen"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "status"))) { #optional property not found $Status = $null } else { $Status = $JsonParameters.PSobject.Properties["status"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "clusterType"))) { #optional property not found $ClusterType = $null } else { $ClusterType = $JsonParameters.PSobject.Properties["clusterType"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "vaDownloadUrl"))) { #optional property not found $VaDownloadUrl = $null } else { $VaDownloadUrl = $JsonParameters.PSobject.Properties["vaDownloadUrl"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "vaVersion"))) { #optional property not found $VaVersion = $null } else { $VaVersion = $JsonParameters.PSobject.Properties["vaVersion"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "secret"))) { #optional property not found $Secret = $null } else { $Secret = $JsonParameters.PSobject.Properties["secret"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "createdAt"))) { #optional property not found $CreatedAt = $null } else { $CreatedAt = $JsonParameters.PSobject.Properties["createdAt"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "updatedAt"))) { #optional property not found $UpdatedAt = $null } else { $UpdatedAt = $JsonParameters.PSobject.Properties["updatedAt"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "provisionStatus"))) { #optional property not found $ProvisionStatus = $null } else { $ProvisionStatus = $JsonParameters.PSobject.Properties["provisionStatus"].value } $PSO = [PSCustomObject]@{ "id" = ${Id} "alertKey" = ${AlertKey} "apiGatewayBaseUrl" = ${ApiGatewayBaseUrl} "cookbook" = ${Cookbook} "ccId" = ${CcId} "clientId" = ${ClientId} "clusterId" = ${ClusterId} "description" = ${Description} "ipAddress" = ${IpAddress} "lastSeen" = ${LastSeen} "name" = ${Name} "sinceLastSeen" = ${SinceLastSeen} "status" = ${Status} "type" = ${Type} "clusterType" = ${ClusterType} "vaDownloadUrl" = ${VaDownloadUrl} "vaVersion" = ${VaVersion} "secret" = ${Secret} "createdAt" = ${CreatedAt} "updatedAt" = ${UpdatedAt} "provisionStatus" = ${ProvisionStatus} } return $PSO } } |