functions/New-AzState.ps1
####################### # Function definition # ####################### function New-AzState { ############################################### # Configure PSScriptAnalyzer rule suppression # ############################################### # The following SuppressMessageAttribute entries are used to surpress # PSScriptAnalyzer tests against known exceptions as per: # https://github.com/powershell/psscriptanalyzer#suppressing-rules [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseShouldProcessForStateChangingFunctions', '', Justification = 'Only creating new object with custom type')] # May refactor to support ShouldProcess [CmdletBinding()] param ( [Parameter()] [String]$Id, [Parameter()] [String]$Type ) if ($Id -and $Type) { $AzState = New-Object -TypeName AzState -ArgumentList $Id $Type } elseif ($Id) { $AzState = New-Object -TypeName AzState -ArgumentList $Id } else { $AzState = New-Object -TypeName AzState } return $AzState } |