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

New-DSPamVault

Synopsis

Create a new PAM vault

Syntax

__AllParameterSets

New-DSPamVault -Name <string> [-Description <string>] [-Visibility <VaultAllowAccessRequestRole>]
 [-Owner <string[]>] [-User <string[]>] [-Role <string[]>] [<CommonParameters>]

Description

Create a new PAM vault. To set permissions for the vault, you must apply them at the root level. The root connection has the same id as the vault. Either use 'Get-DSPamFolder' combined with Update-DSPamFolder or 'Set-DSEntityPermission' to update the permissions.

Examples

PS C:\> $entities = @('Bob', 'UserGroupA', '12345678-1234-1234-1234-123456781234')
PS C:\> New-DSPamVault -Name 'MyNewVault' -Description 'A description' -Owner $entities

Create a PAM vault named 'MyNewVault' owned by the users 'Bob' and '12345678-1234-1234-1234-123456781234', and the user group 'UserGroupA'

Parameters

-Description

Description of the PAM vault

-Name

Name of the PAM vault

-Owner

Assign owners to the vault with their ID or name

-Role

Give the user groups access to the vault

-User

Give the users access to the vault

-Visibility

Visibility of the vault

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.

Notes

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

Last updated

Was this helpful?