Model/ConnectorRuleUpdateRequest.ps1
# # Identity Security Cloud V2024 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: v2024 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION ConnectorRuleUpdateRequest .PARAMETER Name the name of the rule .PARAMETER Description a description of the rule's purpose .PARAMETER Type the type of rule .PARAMETER Signature No description available. .PARAMETER SourceCode No description available. .PARAMETER Attributes a map of string to objects .PARAMETER Id the ID of the rule to update .OUTPUTS ConnectorRuleUpdateRequest<PSCustomObject> #> function Initialize-V2024ConnectorRuleUpdateRequest { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [ValidateSet("BuildMap", "ConnectorAfterCreate", "ConnectorAfterDelete", "ConnectorAfterModify", "ConnectorBeforeCreate", "ConnectorBeforeDelete", "ConnectorBeforeModify", "JDBCBuildMap", "JDBCOperationProvisioning", "JDBCProvision", "PeopleSoftHRMSBuildMap", "PeopleSoftHRMSOperationProvisioning", "PeopleSoftHRMSProvision", "RACFPermissionCustomization", "SAPBuildMap", "SapHrManagerRule", "SapHrOperationProvisioning", "SapHrProvision", "SuccessFactorsOperationProvisioning", "WebServiceAfterOperationRule", "WebServiceBeforeOperationRule")] [String] ${Type}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Signature}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${SourceCode}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Attributes}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Id} ) Process { 'Creating PSCustomObject: Tm.V2024 => V2024ConnectorRuleUpdateRequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Name) { throw "invalid value for 'Name', 'Name' cannot be null." } if ($Name.length -gt 128) { throw "invalid value for 'Name', the character length must be smaller than or equal to 128." } if ($Name.length -lt 1) { throw "invalid value for 'Name', the character length must be great than or equal to 1." } if (!$Type) { throw "invalid value for 'Type', 'Type' cannot be null." } if (!$SourceCode) { throw "invalid value for 'SourceCode', 'SourceCode' cannot be null." } if (!$Id) { throw "invalid value for 'Id', 'Id' cannot be null." } $PSO = [PSCustomObject]@{ "name" = ${Name} "description" = ${Description} "type" = ${Type} "signature" = ${Signature} "sourceCode" = ${SourceCode} "attributes" = ${Attributes} "id" = ${Id} } return $PSO } } <# .SYNOPSIS Convert from JSON to ConnectorRuleUpdateRequest<PSCustomObject> .DESCRIPTION Convert from JSON to ConnectorRuleUpdateRequest<PSCustomObject> .PARAMETER Json Json object .OUTPUTS ConnectorRuleUpdateRequest<PSCustomObject> #> function ConvertFrom-V2024JsonToConnectorRuleUpdateRequest { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: Tm.V2024 => V2024ConnectorRuleUpdateRequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in V2024ConnectorRuleUpdateRequest $AllProperties = ("name", "description", "type", "signature", "sourceCode", "attributes", "id") 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 'name' missing." } 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 } 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 "sourceCode"))) { throw "Error! JSON cannot be serialized due to the required property 'sourceCode' missing." } else { $SourceCode = $JsonParameters.PSobject.Properties["sourceCode"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "id"))) { throw "Error! JSON cannot be serialized due to the required property 'id' missing." } else { $Id = $JsonParameters.PSobject.Properties["id"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "description"))) { #optional property not found $Description = $null } else { $Description = $JsonParameters.PSobject.Properties["description"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "signature"))) { #optional property not found $Signature = $null } else { $Signature = $JsonParameters.PSobject.Properties["signature"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "attributes"))) { #optional property not found $Attributes = $null } else { $Attributes = $JsonParameters.PSobject.Properties["attributes"].value } $PSO = [PSCustomObject]@{ "name" = ${Name} "description" = ${Description} "type" = ${Type} "signature" = ${Signature} "sourceCode" = ${SourceCode} "attributes" = ${Attributes} "id" = ${Id} } return $PSO } } |