| 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<Secret> |
KeyVaultClientImpl.setSecretAsync(String vault,
String secretName,
String value,
String contentType,
SecretAttributes secretAttributes,
Map<String,String> tags) |
Future<Secret> |
KeyVaultClient.setSecretAsync(String vault,
String secretName,
String value,
String contentType,
SecretAttributes secretAttributes,
Map<String,String> tags)
Sets the value of a secret and returns its attributes.
|
Future<Secret> |
KeyVaultClientImpl.updateSecretAsync(String secretIdentifier,
String contentType,
SecretAttributes secretAttributes,
Map<String,String> tags) |
Future<Secret> |
KeyVaultClient.updateSecretAsync(String secretIdentifier,
String contentType,
SecretAttributes secretAttributes,
Map<String,String> tags)
Updates attributes of a version of a secret.
|
Future<Secret> |
KeyVaultClientImpl.updateSecretAsync(String vault,
String secretName,
String contentType,
SecretAttributes secretAttributes,
Map<String,String> tags) |
Future<Secret> |
KeyVaultClient.updateSecretAsync(String vault,
String secretName,
String contentType,
SecretAttributes secretAttributes,
Map<String,String> tags)
Updates attributes of the current version of a secret..
|
| Modifier and Type | Method and Description |
|---|---|
SecretAttributes |
SecretItem.getAttributes() |
SecretAttributes |
Secret.getAttributes() |
| Modifier and Type | Method and Description |
|---|---|
void |
SecretItem.setAttributes(SecretAttributes attributesValue) |
void |
Secret.setAttributes(SecretAttributes 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.
*/