KeyClient.ImportKeyAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ImportKeyAsync(ImportKeyOptions, CancellationToken) |
外部で作成されたキーをインポートし、格納し、キーのパラメーターと属性をクライアントに返します。 |
ImportKeyAsync(String, JsonWebKey, CancellationToken) |
外部で作成されたキーをインポートし、格納し、キーのパラメーターと属性をクライアントに返します。 |
ImportKeyAsync(ImportKeyOptions, CancellationToken)
- ソース:
- KeyClient.cs
- ソース:
- KeyClient.cs
外部で作成されたキーをインポートし、格納し、キーのパラメーターと属性をクライアントに返します。
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>> ImportKeyAsync (Azure.Security.KeyVault.Keys.ImportKeyOptions importKeyOptions, System.Threading.CancellationToken cancellationToken = default);
abstract member ImportKeyAsync : Azure.Security.KeyVault.Keys.ImportKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
override this.ImportKeyAsync : Azure.Security.KeyVault.Keys.ImportKeyOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
Public Overridable Function ImportKeyAsync (importKeyOptions As ImportKeyOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyVaultKey))
パラメーター
- importKeyOptions
- ImportKeyOptions
インポートする に関 JsonWebKey する情報を含むキー インポート構成オブジェクト。
- cancellationToken
- CancellationToken
CancellationToken要求の有効期間を制御する 。
戻り値
KeyVaultKeyインポートされた 。
例外
importKeyOptions
が null です。
サーバーからエラーが返されました。 サーバーから返される詳細については、「」を参照してください Message 。
注釈
キーのインポート操作は、任意のキーの種類を Azure Key Vaultにインポートするために使用できます。 名前付きのキーが既に存在する場合は、Azure Key Vault によりキーの新しいバージョンが作成されます。 この操作には、キー/インポートのアクセス許可が必要です。
適用対象
ImportKeyAsync(String, JsonWebKey, CancellationToken)
- ソース:
- KeyClient.cs
- ソース:
- KeyClient.cs
外部で作成されたキーをインポートし、格納し、キーのパラメーターと属性をクライアントに返します。
public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>> ImportKeyAsync (string name, Azure.Security.KeyVault.Keys.JsonWebKey keyMaterial, System.Threading.CancellationToken cancellationToken = default);
abstract member ImportKeyAsync : string * Azure.Security.KeyVault.Keys.JsonWebKey * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
override this.ImportKeyAsync : string * Azure.Security.KeyVault.Keys.JsonWebKey * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Security.KeyVault.Keys.KeyVaultKey>>
Public Overridable Function ImportKeyAsync (name As String, keyMaterial As JsonWebKey, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of KeyVaultKey))
パラメーター
- name
- String
キーの名前です。
- keyMaterial
- JsonWebKey
JsonWebKeyインポートする 。
- cancellationToken
- CancellationToken
CancellationToken要求の有効期間を制御する 。
戻り値
KeyVaultKeyインポートされた 。
例外
name
が空の文字列です。
name
または keyMaterial
が null です。
サーバーからエラーが返されました。 サーバーから返される詳細については、「」を参照してください Message 。
注釈
キーのインポート操作は、任意のキーの種類を Azure Key Vaultにインポートするために使用できます。 名前付きのキーが既に存在する場合は、Azure Key Vault によりキーの新しいバージョンが作成されます。 この操作には、キー/インポートのアクセス許可が必要です。
適用対象
Azure SDK for .NET