Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
SecretClient.StartDeleteSecretAsync(String, CancellationToken) Method
Definition
- Namespace:
- Azure.Security.KeyVault.Secrets
- Assembly:
- Azure.Security.KeyVault.Secrets.dll
- Package:
- Azure.Security.KeyVault.Secrets v4.11.0
- Package:
- Azure.Security.KeyVault.Secrets v4.8.0-beta.1
- Source:
- SecretClient.cs
- Source:
- SecretClient.cs
Important
Some information relates to prerelease product that may be substantially modified before itβs released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Deletes a secret from a specified key vault.
public virtual System.Threading.Tasks.Task<Azure.Security.KeyVault.Secrets.DeleteSecretOperation> StartDeleteSecretAsync(string name, System.Threading.CancellationToken cancellationToken = default);
abstract member StartDeleteSecretAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Security.KeyVault.Secrets.DeleteSecretOperation>
override this.StartDeleteSecretAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Security.KeyVault.Secrets.DeleteSecretOperation>
Public Overridable Function StartDeleteSecretAsync (name As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of DeleteSecretOperation)
Parameters
- name
- String
The name of the secret.
- cancellationToken
- CancellationToken
A CancellationToken controlling the request lifetime.
Returns
A DeleteSecretOperation to wait on this long-running operation. If the Key Vault is soft delete-enabled, you only need to wait for the operation to complete if you need to recover or purge the secret; otherwise, the secret is deleted automatically on the ScheduledPurgeDate.
Exceptions
name is an empty string.
name is null.
The server returned an error. See Message for details returned from the server.
Remarks
The delete operation applies to any secret stored in Azure Key Vault. Delete cannot be applied to an individual version of a secret. This operation requires the secrets/delete permission.
Applies to
Azure SDK for .NET
Feedback
Was this page helpful?
