For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get-DSPamCheckout

Sinossi

Restituisce la password della credenziale PAM

Sintassi

GetByID

Get-DSPamCheckout -CheckoutID <guid> [-AsLegacyResponse] [<CommonParameters>]

EntryID

Get-DSPamCheckout -AccountID <guid> [-AsLegacyResponse] [<CommonParameters>]

Active

Get-DSPamCheckout -ActiveAndPending [-AsLegacyResponse] [<CommonParameters>]

Descrizione

Restituisce la password della credenziale PAM se è attualmente sottoposta a check-out e l'utente dispone dei diritti necessari.

Esempi

Esempio 1

PS C:\> $checkoutResponse = Get-DSPamCheckout -ActiveAndPending;
        $pending = $checkoutResponse | Where Status -eq "Pending";
        Invoke-DSPamCheckoutPending -Checkout $pending[0] -Approve -ApproverMessage "Accepted"

Ottiene tutti i checkout in attesa. Selezioni il checkout desiderato e lo approvi.

Esempio 2

Ottiene un checkout PAM ed esegue il check-in.

Parametri

-AccountID

Ottiene il checkout attivo dell'ID specificato

-ActiveAndPending

Ottiene tutti i checkout attivi e in attesa

-AsLegacyResponse

Nelle versioni precedenti alla 2024.2, molti cmdlet di DS restituivano un oggetto ServerResponse. L'attivazione di questo switch di compatibilità con le versioni precedenti consente il corretto funzionamento degli script sviluppati per le versioni precedenti.

-CheckoutID

ID del checkout

CommonParameters

Questo cmdlet supporta i parametri comuni: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction e -WarningVariable. Per maggiori informazioni, veda about_CommonParameters.

Note

Per maggiori informazioni, digiti "Get-Help Get-DSPamCheckout -detailed". Per informazioni tecniche, digiti "Get-Help Get-DSPamCheckout -full".

Ultimo aggiornamento

È stato utile?