次の方法で共有


KeyClient.ImportKey メソッド

定義

オーバーロード

ImportKey(ImportKeyOptions, CancellationToken)

外部で作成されたキーをインポートし、格納し、キーのパラメーターと属性をクライアントに返します。

ImportKey(String, JsonWebKey, CancellationToken)

外部で作成されたキーをインポートし、格納し、キーのパラメーターと属性をクライアントに返します。

ImportKey(ImportKeyOptions, CancellationToken)

ソース:
KeyClient.cs
ソース:
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 Key Vaultにインポートするために使用できます。 名前付きのキーが既に存在する場合は、Azure Key Vault によりキーの新しいバージョンが作成されます。 この操作には、キー/インポートアクセス許可が必要です。

適用対象

ImportKey(String, JsonWebKey, CancellationToken)

ソース:
KeyClient.cs
ソース:
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 Key Vaultにインポートするために使用できます。 名前付きのキーが既に存在する場合は、Azure Key Vault によりキーの新しいバージョンが作成されます。 この操作には、キー/インポートアクセス許可が必要です。

適用対象