| title | Azure Resource Manager Healthbot client library for Java |
|---|---|
| description | Azure Resource Manager Healthbot client library for Java - Version 1.0.0-beta.1 |
| keywords | Azure, java, SDK, API, azure-resourcemanager-healthbot, |
| author | amishra-dev |
| ms.author | amishra |
| ms.date | 01/08/2021 |
| ms.topic | reference |
| ms.service | azure |
| ms.devlang | java |
Azure Resource Manager Healthbot client library for Java.
This package contains Microsoft Azure SDK for Healthbot Management SDK. Microsoft Healthcare Bot is a cloud platform that empowers developers in Healthcare organizations to build and deploy their compliant, AI-powered virtual health assistants and health bots, that help them improve processes and reduce costs. Package tag package-2020-12-08. For documentation on how to use this package, please see Azure Management Libraries for Java.
- Java Development Kit (JDK) with version 8 or above
- Azure Subscription
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-healthbot</artifactId>
<version>1.0.0-beta.1</version>
</dependency>Azure Management Libraries require a TokenCredential implementation for authentication and an HttpClient implementation for HTTP client.
Azure Identity package and Azure Core Netty HTTP package provide the default implementation.
By default, Azure Active Directory token authentication depends on correct configure of following environment variables.
AZURE_CLIENT_IDfor Azure client ID.AZURE_TENANT_IDfor Azure tenant ID.AZURE_CLIENT_SECRETorAZURE_CLIENT_CERTIFICATE_PATHfor client secret or client certificate.
In addition, Azure subscription ID can be configured via environment variable AZURE_SUBSCRIPTION_ID.
With above configuration, azure client can be authenticated by following code:
AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
TokenCredential credential = new DefaultAzureCredentialBuilder()
.authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
.build();
HealthbotManager manager = HealthbotManager
.authenticate(credential, profile);The sample code assumes global Azure. Please change AzureEnvironment.AZURE variable if otherwise.
See Authentication for more options.
See API design for general introduction on design and key concepts on Azure Management Libraries.
For details on contributing to this repository, see the contributing guide.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request