functions/secret-policies/Get-TssSecretPolicyItemStub.ps1

function Get-TssSecretPolicyItemStub {
    <#
    .SYNOPSIS
    Get empty object for a specific Secret Policy Item
 
    .DESCRIPTION
    Get empty object for a specific Secret Policy Item, used with creating or updating
 
    .EXAMPLE
    $session = New-TssSession -SecretServer https://alpha -Credential $ssCred
    Get-TssSecretPolicyItemStub -TssSession $session - some test value
 
    Add minimum example for each parameter
 
    .LINK
    https://thycotic-ps.github.io/thycotic.secretserver/commands/Folder Name/Get-TssSecretPolicyItemStub
 
    .LINK
    https://github.com/thycotic-ps/thycotic.secretserver/blob/main/src/functions/Folder Name/Get-TssSecretPolicyItemStub.ps1
 
    .NOTES
    Requires TssSession object returned by New-TssSession
    #>

    [CmdletBinding()]
    [OutputType('Thycotic.PowerShell.SecretPolicies.PolicyItem')]
    param (
        # TssSession object created by New-TssSession for authentication
        [Parameter(Mandatory,ValueFromPipeline,Position = 0)]
        [Thycotic.PowerShell.Authentication.Session]
        $TssSession,

        # Secret Policy Item
        [Parameter(Mandatory)]
        [Thycotic.PowerShell.Enums.SecretPolicyItem]
        $ItemName,

        # Policy apply type
        [Thycotic.PowerShell.Enums.SecretPolicyApplyType]
        $ApplyType
    )
    begin {
        $tssParams = $PSBoundParameters
    }
    process {
        Write-Verbose "Provided command parameters: $(. $GetInvocation $PSCmdlet.MyInvocation)"
        if ($tssParams.ContainsKey('TssSession') -and $TssSession.IsValidSession()) {
            $policyStub = Get-TssSecretPolicyStub -TssSession $TssSession
            if ($policyStub) {
                $item = $policyStub.SecretPolicyItems.Where({$_.Name -eq $ItemName})
                if ($tssParams.ContainsKey('ApplyType')) {
                    $item.PolicyApplyType = $ApplyType
                }
                return $item
            }
        } else {
            Write-Warning "No valid session found"
        }
    }
}