com.microsoft.azure.keyvault.KeyVaultClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-keyvault Show documentation
Show all versions of azure-keyvault Show documentation
This package contains Microsoft Azure Key Vault SDK.
package com.microsoft.azure.keyvault;
import com.microsoft.azure.keyvault.implementation.KeyVaultClientCustomImpl;
import com.microsoft.rest.RestClient;
import com.microsoft.rest.credentials.ServiceClientCredentials;
public final class KeyVaultClient extends KeyVaultClientCustomImpl implements KeyVaultClientCustom {
/**
* Initializes an instance of KeyVaultClient client.
*
* @param credentials the management credentials for Azure
*/
public KeyVaultClient(ServiceClientCredentials credentials) {
super(credentials);
initializeService();
}
/**
* Initializes an instance of KeyVaultClient client.
*
* @param restClient the REST client to connect to Azure.
*/
public KeyVaultClient(RestClient restClient) {
super(restClient);
initializeService();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy