Skip to content

Commit e94b87a

Browse files
committed
Update docs metadata
1 parent c62be68 commit e94b87a

File tree

2 files changed

+47
-27
lines changed

2 files changed

+47
-27
lines changed

docs-ref-services/preview/aot-graalvm-support-readme.md

Lines changed: 45 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,26 @@ title: Azure GraalVM Support client library for Java
33
keywords: Azure, java, SDK, API, azure-aot-graalvm-support, aot
44
author: joshfree
55
ms.author: jfree
6-
ms.date: 04/08/2022
6+
ms.date: 04/25/2022
77
ms.topic: reference
88
ms.prod: azure
99
ms.technology: azure
1010
ms.devlang: java
1111
ms.service: aot
1212
---
13-
# Azure GraalVM Support client library for Java - Version 1.0.0-beta.1
13+
# Azure GraalVM Support client library for Java - Version 1.0.0-beta.2
1414

1515

16-
The Azure GraalVM Support client library provides support for applications using [Azure client libraries](https://azure.
17-
github.io/azure-sdk/releases/latest/java.html) to be built as [GraalVM native
16+
The Azure GraalVM Support client library provides support for applications using [Azure client libraries](https://azure.github.io/azure-sdk/releases/latest/java.html) to be built as [GraalVM native
1817
images](https://www.graalvm.org/22.0/reference-manual/native-image/). The library contains all the necessary
1918
[configuration files](https://www.graalvm.org/22.0/reference-manual/native-image/BuildConfiguration/) and [GraalVM
2019
features](https://www.graalvm.org/sdk/javadoc/index.html?org/graalvm/nativeimage/hosted/Feature.html) required to build
2120
a native image of an application that uses Azure client libraries.
2221

22+
**NOTE:**: This library is a preview and is intended to enable applications using Azure client libraries to quickly
23+
build and validate native images. However, this is not a stable, GA version and is not officially supported to use in production
24+
environments.
25+
2326
## Getting started
2427

2528
### Prerequisites
@@ -33,18 +36,26 @@ documentation.
3336

3437
### Include the package
3538

39+
3640
[//]: # ({x-version-update-start;com.azure:azure-aot-graalvm-support;current})
3741
```xml
3842
<dependency>
3943
<groupId>com.azure</groupId>
4044
<artifactId>azure-aot-graalvm-support</artifactId>
41-
<version>1.0.0-beta.1</version>
45+
<version>1.0.0-beta.2</version>
4246
</dependency>
4347
```
48+
Also, include the `azure-aot-graalvm-support-netty` package to bring in the configuration files required for Netty HTTP
49+
client. For more details on this library, please refer to [this README](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-support-netty/README.md).
4450

45-
Add the above dependency to your Maven project along with any other Azure client libraries you may want to use. If
46-
you are using client libraries that depend on `azure-core-http-netty`, add the `azure-aot-graalvm-support-netty`
47-
dependency too. For more details on this library, please refer to [this README](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-support-netty/README.md).
51+
[//]: # ({x-version-update-start;com.azure:azure-aot-graalvm-support-netty;current})
52+
```xml
53+
<dependency>
54+
<groupId>com.azure</groupId>
55+
<artifactId>azure-aot-graalvm-support-netty</artifactId>
56+
<version>1.0.0-beta.2</version>
57+
</dependency>
58+
```
4859

4960
## Key concepts
5061

@@ -70,33 +81,42 @@ This library provides all the necessary configuration files for using Azure clie
7081

7182
## Examples
7283

73-
#### [App Configuration](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.1/sdk/appconfiguration/azure-data-appconfiguration)
74-
- [Sample demonstrating the creation and use of App Configuration client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/appconfiguration/AppConfigurationSample.java)
84+
#### App Configuration
85+
- [Sample demonstrating the creation and use of App Configuration client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/appconfiguration/AppConfigurationSample.java)
86+
87+
Please refer to [Application Configuration](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.2/sdk/appconfiguration/azure-data-appconfiguration) client library documentation for more details.
88+
89+
#### Key Vault
90+
- [Sample demonstrating the creation and use of Key Vault Certificates client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/keyvault/certificates/KeyVaultCertificatesSample.java)
91+
- [Sample demonstrating the creation and use of Key Vault Keys client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/keyvault/keys/KeyVaultKeysSample.java)
92+
- [Sample demonstrating the creation and use of Key Vault Secrets client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/keyvault/secrets/KeyVaultSecretsSample.java)
93+
94+
Please refer to [Key Vault](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.2/sdk/keyvault) client library documentation for more details.
95+
96+
#### Storage Blob
97+
- [Sample demonstrating the creation and use of Storage Blob client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/storage/blob/StorageBlobSample.java)
98+
99+
Please refer to [Storage Blob](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.2/sdk/storage/azure-storage-blob) client library documentation for more details.
75100

76-
#### [Key Vault](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.1/sdk/keyvault)
77-
- [Sample demonstrating the creation and use of Key Vault Certificates client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/keyvault/certificates/KeyVaultCertificatesSample.java)
78-
- [Sample demonstrating the creation and use of Key Vault Keys client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/keyvault/keys/KeyVaultKeysSample.java)
79-
- [Sample demonstrating the creation and use of Key Vault Secrets client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/keyvault/secrets/KeyVaultSecretsSample.java)
101+
#### Event Hubs
102+
- [Sample demonstrating the creation and use of Event Hubs producer client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/eventhubs/EventHubsSample.java)
80103

81-
#### [Storage Blob](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.1/sdk/storage/azure-storage-blob)
82-
- [Sample demonstrating the creation and use of Storage Blob client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/storage/blob/StorageBlobSample.java)
104+
Please refer to [Event Hubs](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.2/sdk/eventhubs/azure-messaging-eventhubs) client library documentation for more details.
83105

84-
#### [Cosmos](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.1/sdk/cosmos/azure-cosmos)
85-
- [Sample demonstrating the creation and use of Cosmos client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/cosmos/CosmosSample.java)
106+
#### Form Recognizer
107+
- [Sample demonstrating the creation and use of Form Recognizer client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/formrecognizer/FormRecognizerSample.java)
86108

87-
#### [Event Hubs](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.1/sdk/eventhubs/azure-messaging-eventhubs)
88-
- [Sample demonstrating the creation and use of Event Hubs producer client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/eventhubs/EventHubsSample.java)
109+
Please refer to [Form Recognizer](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.2/sdk/formrecognizer/azure-ai-formrecognizer) client library documentation for more details.
89110

90-
#### [Form Recognizer](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.1/sdk/formrecognizer/azure-ai-formrecognizer)
91-
- [Sample demonstrating the creation and use of Form Recognizer client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/formrecognizer/FormRecognizerSample.java)
111+
#### Text Analytics
112+
- [Sample demonstrating the creation and use of Text Analytics client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/textanalytics/TextAnalyticsSample.java)
92113

93-
#### [Text Analytics](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.1/sdk/textanalytics/azure-ai-textanalytics)
94-
- [Sample demonstrating the creation and use of Text Analytics client](https://github.com/Azure/azure-sdk-for-java/blob/azure-aot-graalvm-support_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-samples/src/main/java/com/azure/aot/graalvm/samples/textanalytics/TextAnalyticsSample.java)
114+
Please refer to [Text Analytics](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.2/sdk/textanalytics/azure-ai-textanalytics) client library documentation for more details.
95115

96116
## Troubleshooting
97117

98118
## Next steps
99-
The [azure-aot-graalvm-samples](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.1/sdk/aot/azure-aot-graalvm-samples)
119+
The [azure-aot-graalvm-samples](https://github.com/Azure/azure-sdk-for-java/tree/azure-aot-graalvm-support_1.0.0-beta.2/sdk/aot/azure-aot-graalvm-samples)
100120
library consists of all above samples bundled into a single Maven project that can be compiled with `mvn clean
101121
install -Pnative` to build the native image and execute all the samples.
102122

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "azure-aot-graalvm-support",
3-
"Version": "1.0.0-beta.1",
3+
"Version": "1.0.0-beta.2",
44
"DevVersion": null,
55
"DirectoryPath": "sdk/aot/azure-aot-graalvm-support",
66
"ServiceDirectory": "aot",
@@ -10,5 +10,5 @@
1010
"SdkType": "client",
1111
"IsNewSdk": true,
1212
"ArtifactName": "azure-aot-graalvm-support",
13-
"ReleaseStatus": "2022-04-08"
13+
"ReleaseStatus": "2022-04-25"
1414
}

0 commit comments

Comments
 (0)