你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
KeyClient.ImportKey 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ImportKey(ImportKeyOptions, CancellationToken) |
导入外部创建的密钥,存储它,然后将密钥参数和属性返回给客户端。 |
ImportKey(String, JsonWebKey, CancellationToken) |
导入外部创建的密钥,存储它,然后将密钥参数和属性返回给客户端。 |
ImportKey(ImportKeyOptions, CancellationToken)
- Source:
- KeyClient.cs
- Source:
- KeyClient.cs
导入外部创建的密钥,存储它,然后将密钥参数和属性返回给客户端。
public virtual Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey> ImportKey (Azure.Security.KeyVault.Keys.ImportKeyOptions importKeyOptions, System.Threading.CancellationToken cancellationToken = default);
abstract member ImportKey : Azure.Security.KeyVault.Keys.ImportKeyOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>
override this.ImportKey : Azure.Security.KeyVault.Keys.ImportKeyOptions * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>
Public Overridable Function ImportKey (importKeyOptions As ImportKeyOptions, Optional cancellationToken As CancellationToken = Nothing) As Response(Of KeyVaultKey)
参数
- importKeyOptions
- ImportKeyOptions
密钥导入配置对象,其中包含有关 JsonWebKey 要导入的信息。
- cancellationToken
- CancellationToken
控制 CancellationToken 请求生存期的 。
返回
KeyVaultKey导入的 。
例外
importKeyOptions
为 null。
服务器返回错误。 有关从服务器返回的详细信息,请参阅 Message 。
注解
导入密钥操作可用于将任何密钥类型导入 Azure 密钥保管库。 如果命名的密钥已存在,Azure 密钥保管库将创建该密钥的新版本。 此操作需要密钥/导入权限。
适用于
ImportKey(String, JsonWebKey, CancellationToken)
- Source:
- KeyClient.cs
- Source:
- KeyClient.cs
导入外部创建的密钥,存储它,然后将密钥参数和属性返回给客户端。
public virtual Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey> ImportKey (string name, Azure.Security.KeyVault.Keys.JsonWebKey keyMaterial, System.Threading.CancellationToken cancellationToken = default);
abstract member ImportKey : string * Azure.Security.KeyVault.Keys.JsonWebKey * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>
override this.ImportKey : string * Azure.Security.KeyVault.Keys.JsonWebKey * System.Threading.CancellationToken -> Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>
Public Overridable Function ImportKey (name As String, keyMaterial As JsonWebKey, Optional cancellationToken As CancellationToken = Nothing) As Response(Of KeyVaultKey)
参数
- name
- String
键的名称。
- keyMaterial
- JsonWebKey
JsonWebKey正在导入的 。
- cancellationToken
- CancellationToken
控制 CancellationToken 请求生存期的 。
返回
KeyVaultKey导入的 。
例外
name
是一个空字符串。
name
或 keyMaterial
为 null。
服务器返回错误。 有关从服务器返回的详细信息,请参阅 Message 。
注解
导入密钥操作可用于将任何密钥类型导入 Azure 密钥保管库。 如果命名的密钥已存在,Azure 密钥保管库将创建该密钥的新版本。 此操作需要密钥/导入权限。