Setting the file. One moment.
Subchapter 26.3
references/sdk/azure-data-tables-java.mdMarkdown1 KBView on GitHub
Condensed from azure-data-tables-java. Full patterns (typed entities, batch transactions, OData filters, Cosmos DB Table API) in the azure-data-tables-java plugin skill if installed.
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-data-tables</artifactId>
<version>12.6.0-beta.1</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-identity</artifactId>
</dependency>Auth:
DefaultAzureCredentialis for local development. See auth-best-practices.md for production patterns.
import com.azure.data.tables.TableServiceClientBuilder;
import com.azure.identity.DefaultAzureCredentialBuilder;
var serviceClient = new TableServiceClientBuilder()
.endpoint("<table-account-url>")
.credential(new DefaultAzureCredentialBuilder().build())
.buildClient();