Package | Description |
---|---|
com.microsoft.azure.keyvault |
This package contains the Azure Key Vault client interface and associated configuration and utility classes.
|
com.microsoft.azure.keyvault.models |
This package contains model classes used to send requests to and receive results from the Azure Key Vault service.
|
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.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 |
---|---|
KeyAttributes |
UpdateKeyRequestMessage.getAttributes() |
KeyAttributes |
KeyItem.getAttributes() |
KeyAttributes |
KeyBundle.getAttributes() |
KeyAttributes |
ImportKeyRequestMessage.getAttributes() |
KeyAttributes |
GetKeyResponseMessage.getAttributes() |
KeyAttributes |
CreateKeyRequestMessage.getAttributes() |
Modifier and Type | Method and Description |
---|---|
void |
UpdateKeyRequestMessage.setAttributes(KeyAttributes attributesValue) |
void |
KeyItem.setAttributes(KeyAttributes attributesValue) |
void |
KeyBundle.setAttributes(KeyAttributes attributesValue) |
void |
ImportKeyRequestMessage.setAttributes(KeyAttributes attributesValue) |
void |
GetKeyResponseMessage.setAttributes(KeyAttributes attributesValue) |
void |
CreateKeyRequestMessage.setAttributes(KeyAttributes attributesValue) |
/**
* 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.
*/