Model/SetTickDataset.ps1
# # Storvix APIs # List of all APIs accessible with the AiRE filer # Version: 3.0.0 # Contact: support@storvix.eu # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION Only for datasets of type disk .PARAMETER Action No description available. .OUTPUTS SetTickDataset<PSCustomObject> #> function Initialize-SetTickDataset { [CmdletBinding()] Param ( [Parameter(Position = 0, ValueFromPipelineByPropertyName = $true)] [String] ${Action} = "thickon" ) Process { 'Creating PSCustomObject: AiRE => SetTickDataset' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ "action" = ${Action} } return $PSO } } <# .SYNOPSIS Convert from JSON to SetTickDataset<PSCustomObject> .DESCRIPTION Convert from JSON to SetTickDataset<PSCustomObject> .PARAMETER Json Json object .OUTPUTS SetTickDataset<PSCustomObject> #> function ConvertFrom-JsonToSetTickDataset { Param( [AllowEmptyString()] [string]$Json ) Process { 'Converting JSON to PSCustomObject: AiRE => SetTickDataset' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $JsonParameters = ConvertFrom-Json -InputObject $Json # check if Json contains properties not defined in SetTickDataset $AllProperties = ("action") foreach ($name in $JsonParameters.PsObject.Properties.Name) { if (!($AllProperties.Contains($name))) { throw "Error! JSON key '$name' not found in the properties: $($AllProperties)" } } if (!([bool]($JsonParameters.PSobject.Properties.name -match "action"))) { #optional property not found $Action = $null } else { $Action = $JsonParameters.PSobject.Properties["action"].value } $PSO = [PSCustomObject]@{ "action" = ${Action} } return $PSO } } |