Skip to main content

RemoveNamedValues

Removes the given named values from the vault.

Syntax

// Assumes shellUI has been initialized with IShellUI instance
const results =
await shellUI.Vault.NamedValueStorageOperations.RemoveNamedValues({
storage_type: 9 /* Enum: NamedValueType */,
namespace_name: "<namespace_name>",
keys: [] /* Array of string */,
});

Message

NameDescriptionType
storage_typeThe named value type to remove.NamedValueType
namespace_nameThe namespace into which the removed values belong.string
keysThe names of the named values to remove.string[]

Return type

NameDescriptionType

Example

{}