SecretClient.UpdateSecretProperties Method
Definition
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.
Updates the attributes associated with a specified secret.
public virtual Azure.Response<Azure.Security.KeyVault.Secrets.SecretProperties> UpdateSecretProperties (Azure.Security.KeyVault.Secrets.SecretProperties properties, System.Threading.CancellationToken cancellationToken = default);
abstract member UpdateSecretProperties : Azure.Security.KeyVault.Secrets.SecretProperties * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Secrets.SecretProperties>
override this.UpdateSecretProperties : Azure.Security.KeyVault.Secrets.SecretProperties * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Secrets.SecretProperties>
Public Overridable Function UpdateSecretProperties (properties As SecretProperties, Optional cancellationToken As CancellationToken = Nothing) As Response(Of SecretProperties)
Parameters
- properties
- SecretProperties
The secret object with updated properties.
- cancellationToken
- CancellationToken
A CancellationToken controlling the request lifetime.
Returns
Exceptions
properties
or Version is null.
The server returned an error. See Message for details returned from the server.
Remarks
The update operation changes specified attributes of an existing stored secret. Attributes that are not specified in the request are left unchanged. The value of a secret itself cannot be changed. This operation requires the secrets/set permission.
Applies to
Azure SDK for .NET