beta/src/PSSailpointBeta/Model/SubscriptionPostRequest.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 Name Subscription name. .PARAMETER Description Subscription description. .PARAMETER TriggerId ID of trigger subscribed to. .PARAMETER Type No description available. .PARAMETER ResponseDeadline Deadline for completing REQUEST_RESPONSE trigger invocation, represented in ISO-8601 duration format. .PARAMETER HttpConfig No description available. .PARAMETER EventBridgeConfig No description available. .PARAMETER Enabled Whether subscription should receive real-time trigger invocations or not. Test trigger invocations are always enabled regardless of this option. .PARAMETER VarFilter JSONPath filter to conditionally invoke trigger when expression evaluates to true. .OUTPUTS SubscriptionPostRequest<PSCustomObject> #> function Initialize-BetaSubscriptionPostRequest { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [String] ${TriggerId}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [ValidateSet("HTTP", "EVENTBRIDGE", "INLINE", "SCRIPT", "WORKFLOW")] [PSCustomObject] ${Type}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [String] ${ResponseDeadline} = "PT1H", [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${HttpConfig}, [Parameter(Position = 6, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${EventBridgeConfig}, [Parameter(Position = 7, ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${Enabled} = $true, [Parameter(Position = 8, ValueFromPipelineByPropertyName = $true)] [String] ${VarFilter} ) Process { 'Creating PSCustomObject: PSSailpointBeta => BetaSubscriptionPostRequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if ($null -eq $Name) { throw "invalid value for 'Name', 'Name' cannot be null." } if ($null -eq $TriggerId) { throw "invalid value for 'TriggerId', 'TriggerId' cannot be null." } if ($null -eq $Type) { throw "invalid value for 'Type', 'Type' cannot be null." } $PSO = [PSCustomObject]@{ "name" = ${Name} "description" = ${Description} "triggerId" = ${TriggerId} "type" = ${Type} "responseDeadline" = ${ResponseDeadline} "httpConfig" = ${HttpConfig} "eventBridgeConfig" = ${EventBridgeConfig} "enabled" = ${Enabled} "filter" = ${VarFilter} } return $PSO } } <# .SYNOPSIS Convert from JSON to SubscriptionPostRequest<PSCustomObject> .DESCRIPTION Convert from JSON to SubscriptionPostRequest<PSCustomObject> .PARAMETER Json Json object .OUTPUTS SubscriptionPostRequest<PSCustomObject> #> function ConvertFrom-BetaJsonToSubscriptionPostRequest { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpointBeta => BetaSubscriptionPostRequest' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in BetaSubscriptionPostRequest $AllProperties = ("name", "description", "triggerId", "type", "responseDeadline", "httpConfig", "eventBridgeConfig", "enabled", "filter") 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 "triggerId"))) { throw "Error! JSON cannot be serialized due to the required property 'triggerId' missing." } else { $TriggerId = $JsonParameters.PSobject.Properties["triggerId"].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 "description"))) { #optional property not found $Description = $null } else { $Description = $JsonParameters.PSobject.Properties["description"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "responseDeadline"))) { #optional property not found $ResponseDeadline = $null } else { $ResponseDeadline = $JsonParameters.PSobject.Properties["responseDeadline"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "httpConfig"))) { #optional property not found $HttpConfig = $null } else { $HttpConfig = $JsonParameters.PSobject.Properties["httpConfig"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "eventBridgeConfig"))) { #optional property not found $EventBridgeConfig = $null } else { $EventBridgeConfig = $JsonParameters.PSobject.Properties["eventBridgeConfig"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "enabled"))) { #optional property not found $Enabled = $null } else { $Enabled = $JsonParameters.PSobject.Properties["enabled"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "filter"))) { #optional property not found $VarFilter = $null } else { $VarFilter = $JsonParameters.PSobject.Properties["filter"].value } $PSO = [PSCustomObject]@{ "name" = ${Name} "description" = ${Description} "triggerId" = ${TriggerId} "type" = ${Type} "responseDeadline" = ${ResponseDeadline} "httpConfig" = ${HttpConfig} "eventBridgeConfig" = ${EventBridgeConfig} "enabled" = ${Enabled} "filter" = ${VarFilter} } return $PSO } } |