你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
CertificateOperations.CancelDeleteCertificate 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
取消指定证书的失败删除。 仅当证书处于 DeleteFailed 状态并将证书还原到 Active 状态时,才能执行此操作。
public void CancelDeleteCertificate (string thumbprintAlgorithm, string thumbprint, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.CancelDeleteCertificate : string * string * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> unit
Public Sub CancelDeleteCertificate (thumbprintAlgorithm As String, thumbprint As String, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing)
参数
- thumbprintAlgorithm
- String
用于派生参数的 thumbprint
算法。 这必须是 sha1。
- thumbprint
- String
未能删除的证书的指纹。
- additionalBehaviors
- IEnumerable<BatchClientBehavior>
应用于 之后的 Batch 服务请求的实例集合BatchClientBehaviorCustomBehaviors。
注解
如果仍希望删除证书 (而不是将其返回到 Active) ,则无需取消失败的删除。 必须确保证书未由任何资源使用,然后可以重试删除证书 (请参阅 DeleteCertificateAsync(String, String, IEnumerable<BatchClientBehavior>, CancellationToken)。
这是一个阻止操作。 有关非阻塞等效项,请参阅 CancelDeleteCertificateAsync(String, String, IEnumerable<BatchClientBehavior>, CancellationToken)。