Skip navigation links

Azure SDK for Java Reference Documentation

Current version is 1.0.0-beta.1, click here for the index

Azure Purview Account client library for Java

See: Description

Packages 
Package Description
com.azure.analytics.purview.account
Package containing the classes for PurviewAccountClient.
Current version is 1.0.0-beta.1, click here for the index

Azure Purview Account client library for Java

Azure Purview data plane account. It supports data plane operations. It can manage account, collections, keys, resource set rule.

Please rely heavily on the service's documentation and Low-Level client documentation to use this library

Package (Maven) | API reference documentation | Product Documentation

Getting started

Prerequisites

For more information about creating the account see here.

Include the Package

<dependency>
  <groupId>com.azure</groupId>
  <artifactId>azure-analytics-purview-account</artifactId>
  <version>1.0.0-beta.1</version>
</dependency>

Authenticate the client

In order to interact with the Azure Purview service, your client must present an Azure Active Directory bearer token to the service.

The simplest way of providing a bearer token is to use the DefaultAzureCredential authentication method by providing client secret credentials is being used in this getting started section but you can find more ways to authenticate with azure-identity.

Create GlossaryBaseClient with Azure Active Directory Credential

You can authenticate with Azure Active Directory using the Azure Identity library.

To use the DefaultAzureCredential provider shown below, or other credential providers provided with the Azure SDK, please include the azure-identity package:

<dependency>
    <groupId>com.azure</groupId>
    <artifactId>azure-identity</artifactId>
    <version>1.3.5</version>
</dependency>

Set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables: AZURECLIENTID, AZURETENANTID, AZURECLIENTSECRET.

Example
AccountsClient client = new PurviewAccountClientBuilder()
    .host(System.getenv("ACCOUNT_ENDPOINT"))
    .credential(new DefaultAzureCredentialBuilder().build())
    .buildAccountsClient();

Key concepts

Examples

BinaryData response = client.getAccountPropertiesWithResponse(null, null).getValue();

Troubleshooting

Enabling Logging

Azure SDKs for Java offer a consistent logging story to help aid in troubleshooting application errors and expedite their resolution. The logs produced will capture the flow of an application before reaching the terminal state to help locate the root issue. View the logging wiki for guidance about enabling logging.

Next steps

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Impressions

Skip navigation links
Visit the Azure for Java Developerssite for more Java documentation, including quick starts, tutorials, and code samples.

Copyright © 2021 Microsoft Corporation. All rights reserved.