beta/src/PSSailpointBeta/Model/EventBridgeConfig.ps1
# # IdentityNow Beta API # Use these APIs to interact with the IdentityNow platform to achieve repeatable, automated processes with greater scalability. These APIs are in beta and are subject to change. 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.1.0-beta # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER AwsAccount AWS Account Number (12-digit number) that has the EventBridge Partner Event Source Resource. .PARAMETER AwsRegion AWS Region that has the EventBridge Partner Event Source Resource. See https://docs.aws.amazon.com/general/latest/gr/rande.html for a full list of available values. .OUTPUTS EventBridgeConfig<PSCustomObject> #> function Initialize-BetaEventBridgeConfig { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${AwsAccount}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${AwsRegion} ) Process { 'Creating PSCustomObject: PSSailpointBeta => BetaEventBridgeConfig' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if ($null -eq $AwsAccount) { throw "invalid value for 'AwsAccount', 'AwsAccount' cannot be null." } if ($null -eq $AwsRegion) { throw "invalid value for 'AwsRegion', 'AwsRegion' cannot be null." } $PSO = [PSCustomObject]@{ "awsAccount" = ${AwsAccount} "awsRegion" = ${AwsRegion} } return $PSO } } <# .SYNOPSIS Convert from JSON to EventBridgeConfig<PSCustomObject> .DESCRIPTION Convert from JSON to EventBridgeConfig<PSCustomObject> .PARAMETER Json Json object .OUTPUTS EventBridgeConfig<PSCustomObject> #> function ConvertFrom-BetaJsonToEventBridgeConfig { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpointBeta => BetaEventBridgeConfig' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in BetaEventBridgeConfig $AllProperties = ("awsAccount", "awsRegion") 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 'awsAccount' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "awsAccount"))) { throw "Error! JSON cannot be serialized due to the required property 'awsAccount' missing." } else { $AwsAccount = $JsonParameters.PSobject.Properties["awsAccount"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "awsRegion"))) { throw "Error! JSON cannot be serialized due to the required property 'awsRegion' missing." } else { $AwsRegion = $JsonParameters.PSobject.Properties["awsRegion"].value } $PSO = [PSCustomObject]@{ "awsAccount" = ${AwsAccount} "awsRegion" = ${AwsRegion} } return $PSO } } |