classes/secrets/TssSecretDetailState.class.ps1
class TssSecretDetailState { [string[]] $Actions [string] $CheckedOutUserDisplayName [int] $CheckedOutUserId [int] $CheckOutIntervalMinutes [int] $CheckOutMinutesRemaining [int] $FolderId [string] $FolderName [int] $Id [boolean] $IsActive [boolean] $IsCheckedOut [boolean] $IsCheckedOutByCurrentUser [boolean] $PasswordChangePending [string] $Role [string] $SecretName [ValidateSet('None','RequiresApproval','RequiresCheckout','RequiresComment','RequiresDoubleLockPassword','CreateDoubleLockPassword','DoubleLockNoAccess','CannotView','RequiresUndelete','RequiresCheckoutPendingRPC','RequiresCheckoutAndComment')] [string] $SecretState [System.String[]] GetActions() { if ($this.Actions) { $sortedActions = $this.Actions | Sort-Object return $sortedActions } else { return "No Actions found" } } [System.Boolean] TestAction([string]$Action) { if ($this.Actions -contains $Action) { return $true } else { return $false } } [System.Boolean] TestState([string]$State) { if ($this.SecretState -eq $State) { return $true } else { return $false } } } |