beta/src/PSSailpoint.Beta/Model/MultiHostIntegrationsCreate.ps1
# # Identity Security Cloud Beta API # Use these APIs to interact with the Identity Security Cloud 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 Multi-Host Integration's human-readable name. .PARAMETER Description Multi-Host Integration's human-readable description. .PARAMETER Owner No description available. .PARAMETER Cluster No description available. .PARAMETER Connector Connector script name. .PARAMETER ConnectorAttributes Multi-Host Integration specific configuration. User can add any number of additional attributes. e.g. maxSourcesPerAggGroup, maxAllowedSources etc. .PARAMETER ManagementWorkgroup No description available. .PARAMETER Created Date-time when the source was created .PARAMETER Modified Date-time when the source was last modified. .OUTPUTS MultiHostIntegrationsCreate<PSCustomObject> #> function Initialize-BetaMultiHostIntegrationsCreate { [CmdletBinding()] Param ( [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Name}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Description}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Owner}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Cluster}, [Parameter(ValueFromPipelineByPropertyName = $true)] [String] ${Connector}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Collections.Hashtable] ${ConnectorAttributes}, [Parameter(ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${ManagementWorkgroup}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${Created}, [Parameter(ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${Modified} ) Process { 'Creating PSCustomObject: PSSailpoint.Beta => BetaMultiHostIntegrationsCreate' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if (!$Name) { throw "invalid value for 'Name', 'Name' cannot be null." } if (!$Description) { throw "invalid value for 'Description', 'Description' cannot be null." } if (!$Owner) { throw "invalid value for 'Owner', 'Owner' cannot be null." } if (!$Connector) { throw "invalid value for 'Connector', 'Connector' cannot be null." } $PSO = [PSCustomObject]@{ "name" = ${Name} "description" = ${Description} "owner" = ${Owner} "cluster" = ${Cluster} "connector" = ${Connector} "connectorAttributes" = ${ConnectorAttributes} "managementWorkgroup" = ${ManagementWorkgroup} "created" = ${Created} "modified" = ${Modified} } return $PSO } } <# .SYNOPSIS Convert from JSON to MultiHostIntegrationsCreate<PSCustomObject> .DESCRIPTION Convert from JSON to MultiHostIntegrationsCreate<PSCustomObject> .PARAMETER Json Json object .OUTPUTS MultiHostIntegrationsCreate<PSCustomObject> #> function ConvertFrom-BetaJsonToMultiHostIntegrationsCreate { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint.Beta => BetaMultiHostIntegrationsCreate' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in BetaMultiHostIntegrationsCreate $AllProperties = ("name", "description", "owner", "cluster", "connector", "connectorAttributes", "managementWorkgroup", "created", "modified") 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 "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 "owner"))) { throw "Error! JSON cannot be serialized due to the required property 'owner' missing." } else { $Owner = $JsonParameters.PSobject.Properties["owner"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "connector"))) { throw "Error! JSON cannot be serialized due to the required property 'connector' missing." } else { $Connector = $JsonParameters.PSobject.Properties["connector"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "cluster"))) { #optional property not found $Cluster = $null } else { $Cluster = $JsonParameters.PSobject.Properties["cluster"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "connectorAttributes"))) { #optional property not found $ConnectorAttributes = $null } else { $ConnectorAttributes = $JsonParameters.PSobject.Properties["connectorAttributes"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "managementWorkgroup"))) { #optional property not found $ManagementWorkgroup = $null } else { $ManagementWorkgroup = $JsonParameters.PSobject.Properties["managementWorkgroup"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "created"))) { #optional property not found $Created = $null } else { $Created = $JsonParameters.PSobject.Properties["created"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "modified"))) { #optional property not found $Modified = $null } else { $Modified = $JsonParameters.PSobject.Properties["modified"].value } $PSO = [PSCustomObject]@{ "name" = ${Name} "description" = ${Description} "owner" = ${Owner} "cluster" = ${Cluster} "connector" = ${Connector} "connectorAttributes" = ${ConnectorAttributes} "managementWorkgroup" = ${ManagementWorkgroup} "created" = ${Created} "modified" = ${Modified} } return $PSO } } |