v3/src/PSSailpoint/Model/SavedSearchDetail.ps1
# # IdentityNow V3 API # Use these APIs to interact with the IdentityNow 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: 3.0.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION No description available. .PARAMETER Public Indicates if the saved search is public. .PARAMETER Created A date-time in ISO-8601 format .PARAMETER Modified A date-time in ISO-8601 format .PARAMETER Indices The names of the Elasticsearch indices in which to search. .PARAMETER Columns The columns to be returned (specifies the order in which they will be presented) for each document type. The currently supported document types are: _accessprofile_, _accountactivity_, _account_, _aggregation_, _entitlement_, _event_, _identity_, and _role_. .PARAMETER Query The search query using Elasticsearch [Query String Query](https://www.elastic.co/guide/en/elasticsearch/reference/5.2/query-dsl-query-string-query.html#query-string) syntax from the Query DSL. .PARAMETER Fields The fields to be searched against in a multi-field query. .PARAMETER Sort The fields to be used to sort the search results. .PARAMETER Filters No description available. .OUTPUTS SavedSearchDetail<PSCustomObject> #> function Initialize-SavedSearchDetail { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [System.Nullable[Boolean]] ${Public} = $false, [Parameter(Position = 1, ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${Created}, [Parameter(Position = 2, ValueFromPipelineByPropertyName = $true)] [System.Nullable[System.DateTime]] ${Modified}, [Parameter(Position = 3, ValueFromPipelineByPropertyName = $true)] [PSCustomObject[]] ${Indices}, [Parameter(Position = 4, ValueFromPipelineByPropertyName = $true)] [System.Collections.Hashtable] ${Columns}, [Parameter(Position = 5, ValueFromPipelineByPropertyName = $true)] [String] ${Query}, [Parameter(Position = 6, ValueFromPipelineByPropertyName = $true)] [String[]] ${Fields}, [Parameter(Position = 7, ValueFromPipelineByPropertyName = $true)] [String[]] ${Sort}, [Parameter(Position = 8, ValueFromPipelineByPropertyName = $true)] [PSCustomObject] ${Filters} ) Process { 'Creating PSCustomObject: PSSailpoint => SavedSearchDetail' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug if ($null -eq $Indices) { throw "invalid value for 'Indices', 'Indices' cannot be null." } if ($null -eq $Query) { throw "invalid value for 'Query', 'Query' cannot be null." } $PSO = [PSCustomObject]@{ "public" = ${Public} "created" = ${Created} "modified" = ${Modified} "indices" = ${Indices} "columns" = ${Columns} "query" = ${Query} "fields" = ${Fields} "sort" = ${Sort} "filters" = ${Filters} } return $PSO } } <# .SYNOPSIS Convert from JSON to SavedSearchDetail<PSCustomObject> .DESCRIPTION Convert from JSON to SavedSearchDetail<PSCustomObject> .PARAMETER Json Json object .OUTPUTS SavedSearchDetail<PSCustomObject> #> function ConvertFrom-JsonToSavedSearchDetail { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: PSSailpoint => SavedSearchDetail' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in SavedSearchDetail $AllProperties = ("public", "created", "modified", "indices", "columns", "query", "fields", "sort", "filters") 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 'indices' missing." } if (!([bool]($JsonParameters.PSobject.Properties.name -match "indices"))) { throw "Error! JSON cannot be serialized due to the required property 'indices' missing." } else { $Indices = $JsonParameters.PSobject.Properties["indices"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "query"))) { throw "Error! JSON cannot be serialized due to the required property 'query' missing." } else { $Query = $JsonParameters.PSobject.Properties["query"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "public"))) { #optional property not found $Public = $null } else { $Public = $JsonParameters.PSobject.Properties["public"].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 } if (!([bool]($JsonParameters.PSobject.Properties.name -match "columns"))) { #optional property not found $Columns = $null } else { $Columns = $JsonParameters.PSobject.Properties["columns"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "fields"))) { #optional property not found $Fields = $null } else { $Fields = $JsonParameters.PSobject.Properties["fields"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "sort"))) { #optional property not found $Sort = $null } else { $Sort = $JsonParameters.PSobject.Properties["sort"].value } if (!([bool]($JsonParameters.PSobject.Properties.name -match "filters"))) { #optional property not found $Filters = $null } else { $Filters = $JsonParameters.PSobject.Properties["filters"].value } $PSO = [PSCustomObject]@{ "public" = ${Public} "created" = ${Created} "modified" = ${Modified} "indices" = ${Indices} "columns" = ${Columns} "query" = ${Query} "fields" = ${Fields} "sort" = ${Sort} "filters" = ${Filters} } return $PSO } } |