你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
CertificateOperations.DeleteCertificate 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从 Batch 帐户中删除证书。
public void DeleteCertificate (string thumbprintAlgorithm, string thumbprint, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.DeleteCertificate : string * string * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> unit
Public Sub DeleteCertificate (thumbprintAlgorithm As String, thumbprint As String, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing)
参数
- thumbprintAlgorithm
- String
用于派生参数的 thumbprint
算法。 这必须是 sha1。
- thumbprint
- String
要删除的证书的指纹。
- additionalBehaviors
- IEnumerable<BatchClientBehavior>
在 之后应用于 Batch 服务请求的实例集合BatchClientBehaviorCustomBehaviors。
注解
删除操作请求删除证书。 请求将证书置于 状态 Deleting 。 Batch 服务将执行实际的证书删除,而无需执行任何进一步的客户端操作。
如果资源 (池或计算节点) 正在使用证书,则无法删除证书。 因此,在删除证书之前,必须确保:
- 证书不与任何池关联。
- 证书未安装在任何计算节点上。 (即使从池中删除证书,也不会从该池中的现有计算节点中删除证书,直到它们重新启动。)
如果尝试删除正在使用的证书,则删除会失败。 证书状态更改为 DeleteFailed。 如果决定继续使用证书,可以使用 CancelDeleteCertificateAsync(String, String, IEnumerable<BatchClientBehavior>, CancellationToken) 将状态重新设置为“活动”。
这是一个阻止操作。 有关非阻塞等效项,请参阅 DeleteCertificateAsync(String, String, IEnumerable<BatchClientBehavior>, CancellationToken)。