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

Update-DSPamVault

Synopsis

Update the PAM vault

Syntax

__AllParameterSets

Update-DSPamVault -InputObject <PSVaultWrapper> [-Name <string>] [-Description <string>]
 [-Visibility <VaultAllowAccessRequestRole>] [-Owner <string[]>] [-WhatIf] [-Confirm]
 [<CommonParameters>]

Description

Update the PAM vault. To give access to a user, use the Set-DSVaultUser cmdlet. To give access to a role, use the Set-DSVaultRole cmdlet.

Examples

Example 1

PS C:\> Get-DSPamVault -ID $myVaultId | Update-DSVault -Name 'NewVaultName' -Description 'A new description'

Update the name and description of the PAM vault whose ID is $myVaultId

Example 2

Set the visibility of all PAM vaults whose name starts with PST to invitation only.

Parameters

-Confirm

Prompts you for confirmation before running the cmdlet.

-Description

Description of the PAM vault

-InputObject

The PAM vault to delete. Accepts the ID or the RepositoryEntity object representing the vault.

-Name

Name of the PAM vault

-Owner

Assign owners to the vault with their ID or name

-Visibility

Visibility of the vault

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

System.Guid

ID of the vault to update

Devolutions.RemoteDesktopManager.Business.Entities.RepositoryEntity

Vault object obtained from Get-DSPamVault with the parameter ID

Notes

For more information, type "Get-Help Update-DSPamVault -detailed". For technical information, type "Get-Help Update-DSPamVault -full".

Last updated

Was this helpful?