| Package | Description |
|---|---|
| com.microsoft.azure.keyvault |
This package contains the Azure Key Vault client interface and associated configuration and utility classes.
|
| Modifier and Type | Method and Description |
|---|---|
Future<KeyBundle> |
KeyVaultClientImpl.createKeyAsync(String vault,
String keyName,
String keyType,
Integer keySize,
String[] keyOps,
KeyAttributes keyAttributes,
Map<String,String> tags) |
Future<KeyBundle> |
KeyVaultClient.createKeyAsync(String vault,
String keyName,
String keyType,
Integer keySize,
String[] keyOps,
KeyAttributes keyAttributes,
Map<String,String> tags)
Creates a new key and returns its attributes.
|
Future<KeyBundle> |
KeyVaultClientImpl.deleteKeyAsync(String vault,
String keyName) |
Future<KeyBundle> |
KeyVaultClient.deleteKeyAsync(String vault,
String keyName)
Deletes a vault key, including all its versions.
|
Future<KeyBundle> |
KeyVaultClientImpl.getKeyAsync(String keyIdentifier) |
Future<KeyBundle> |
KeyVaultClient.getKeyAsync(String keyIdentifier)
Returns key data.
|
Future<KeyBundle> |
KeyVaultClientImpl.getKeyAsync(String vault,
String keyName,
String keyVersion) |
Future<KeyBundle> |
KeyVaultClient.getKeyAsync(String vault,
String keyName,
String keyVersion)
Returns key data.
|
Future<KeyBundle> |
KeyVaultClientImpl.importKeyAsync(String vault,
String keyName,
KeyBundle keyBundle,
Boolean importToHardware) |
Future<KeyBundle> |
KeyVaultClient.importKeyAsync(String vault,
String keyName,
KeyBundle keyBundle,
Boolean importToHardware)
Imports an existing key into the service.
|
Future<KeyBundle> |
KeyVaultClientImpl.restoreKeyAsync(String vault,
byte[] keyBundleBackup) |
Future<KeyBundle> |
KeyVaultClient.restoreKeyAsync(String vault,
byte[] keyBackup)
Restores a key into the specified vault.
|
Future<KeyBundle> |
KeyVaultClientImpl.updateKeyAsync(String keyIdentifier,
String[] keyOps,
KeyAttributes attributes,
Map<String,String> tags) |
Future<KeyBundle> |
KeyVaultClient.updateKeyAsync(String keyIdentifier,
String[] keyOps,
KeyAttributes attributes,
Map<String,String> tags)
Updates attributes of a version of a key.
|
Future<KeyBundle> |
KeyVaultClientImpl.updateKeyAsync(String vault,
String keyName,
String[] keyOps,
KeyAttributes attributes,
Map<String,String> tags) |
Future<KeyBundle> |
KeyVaultClient.updateKeyAsync(String vault,
String keyName,
String[] keyOps,
KeyAttributes attributes,
Map<String,String> tags)
Updates attributes of the current version of a key.
|
| Modifier and Type | Method and Description |
|---|---|
Future<KeyBundle> |
KeyVaultClientImpl.importKeyAsync(String vault,
String keyName,
KeyBundle keyBundle,
Boolean importToHardware) |
Future<KeyBundle> |
KeyVaultClient.importKeyAsync(String vault,
String keyName,
KeyBundle keyBundle,
Boolean importToHardware)
Imports an existing key into the service.
|
/**
* Copyright Microsoft Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/