Azure Projects client library for Java.
This package contains Microsoft Azure Projects client library.
Various documentation is available to help you get started
- Java Development Kit (JDK) with version 8 or above
- Azure Subscription
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-ai-projects</artifactId>
<version>1.0.0-beta.1</version>
</dependency>Azure Identity package provides the default implementation for authenticating the client.
The client library targets the latest service API version by default. The service client builder accepts an optional service API version parameter to specify which API version to communicate.
You have the flexibility to explicitly select a supported service API version when initializing a service client via the service client builder. This ensures that the client can communicate with services using the specified API version.
When selecting an API version, it is important to verify that there are no breaking changes compared to the latest API version. If there are significant differences, API calls may fail due to incompatibility.
Always ensure that the chosen API version is fully supported and operational for your specific use case and that it aligns with the service's versioning policy.
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