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
Name | Description | Type |
---|---|---|
storage_type | The named value type to remove. | NamedValueType |
namespace_name | The namespace into which the removed values belong. | string |
keys | The names of the named values to remove. | string[] |
Return type
Name | Description | Type |
---|
Example
{}