business-applications/src/PSSailpoint.BusinessApplications/Model/BusinessApplicationSignature.ps1
|
# # Identity Security Cloud API - Business Applications # 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 A `(type, name)` rule used to automatically correlate machine identities to this Business Application. A signature matches a machine identity when the identity's `subtype` equals `type` and its `connector_attributes.spBusinessApplication` equals `name`. Each `(type, name)` pair is unique across all Business Applications in the tenant; assigning a signature already owned by another Business Application returns a 409 conflict. Modifying signatures requires the custom Business Application feature to be enabled. .PARAMETER Type Signature type, matched against the machine identity's subtype. Kept consistent with the machine identity subtype values. .PARAMETER Name Connector signature value to match against the machine identity's `spBusinessApplication` connector attribute. .OUTPUTS BusinessApplicationSignature<PSCustomObject> #> function Initialize-BusinessApplicationSignature { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("AI Agent", "Application")] [String] ${Type}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name} ) Process { 'Creating PSCustomObject: PSSailpoint.BusinessApplications => BusinessApplicationSignature' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Type) { throw "invalid value for 'Type', 'Type' cannot be null." } if (!$Name) { throw "invalid value for 'Name', 'Name' cannot be null." } $PSO = [PSCustomObject]@{ "type" = ${Type} "name" = ${Name} } return $PSO } } <# .SYNOPSIS Convert from JSON to BusinessApplicationSignature<PSCustomObject> .DESCRIPTION Convert from JSON to BusinessApplicationSignature<PSCustomObject> .PARAMETER Json Json object .OUTPUTS BusinessApplicationSignature<PSCustomObject> #> function ConvertFrom-JsonToBusinessApplicationSignature { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.BusinessApplications => BusinessApplicationSignature' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in BusinessApplicationSignature $AllProperties = ("type", "name") 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 'type' missing." } 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 "name"))) { throw "Error! JSON cannot be serialized due to the required property 'name' missing." } else { $Name = $JsonParameters.PSobject.Properties["name"].value } $PSO = [PSCustomObject]@{ "type" = ${Type} "name" = ${Name} } return $PSO } } |