Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eng/versioning/version_client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ com.azure.resourcemanager:azure-resourcemanager-redisenterprise;2.1.0;2.2.0-beta
com.azure.resourcemanager:azure-resourcemanager-hybridkubernetes;1.0.0;1.1.0-beta.2
com.azure.resourcemanager:azure-resourcemanager-iothub;1.3.0;1.4.0-beta.2
com.azure.resourcemanager:azure-resourcemanager-datadog;1.1.0;1.2.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-communication;2.2.0;2.3.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-communication;2.2.0;2.3.0
com.azure.resourcemanager:azure-resourcemanager-apimanagement;2.0.0;2.1.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-kubernetesconfiguration;1.1.0;1.2.0-beta.1
com.azure.resourcemanager:azure-resourcemanager-changeanalysis;1.1.0;1.2.0-beta.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,82 @@
# Release History

## 2.3.0-beta.1 (Unreleased)
## 2.3.0 (2026-01-22)

- Azure Resource Manager Communication client library for Java. This package contains Microsoft Azure SDK for Communication Management SDK. REST API for Azure Communication Services. Package tag package-2025-09-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

### Breaking Changes
* `models.SuppressionListAddressResourceCollection` was added

* `models.SuppressionListAddressResource` was added

* `models.SmtpUsernameResource$Update` was added

* `models.SmtpUsernameResource` was added

* `models.SmtpUsernameResource$Definition` was added

* `models.SuppressionListResource$UpdateStages` was added

* `models.SuppressionListResource$Update` was added

* `models.PublicNetworkAccess` was added

* `models.SmtpUsernameResource$UpdateStages` was added

* `models.SmtpUsernameResourceCollection` was added

* `models.SuppressionListAddressResource$Update` was added

* `models.SuppressionListAddressResource$Definition` was added

* `models.SuppressionListAddresses` was added

* `models.SuppressionListAddressResource$DefinitionStages` was added

* `models.SuppressionListResource$Definition` was added

* `models.SuppressionListResource` was added

* `models.SuppressionLists` was added

* `models.SmtpUsernames` was added

* `models.SuppressionListResourceCollection` was added

* `models.SuppressionListResource$DefinitionStages` was added

* `models.SmtpUsernameResource$DefinitionStages` was added

* `models.SuppressionListAddressResource$UpdateStages` was added

#### `models.CommunicationServiceResource$Update` was modified

### Bugs Fixed
* `withDisableLocalAuth(java.lang.Boolean)` was added
* `withPublicNetworkAccess(models.PublicNetworkAccess)` was added

### Other Changes
#### `models.CommunicationServiceResource$Definition` was modified

* `withPublicNetworkAccess(models.PublicNetworkAccess)` was added
* `withDisableLocalAuth(java.lang.Boolean)` was added

#### `models.CommunicationServiceResourceUpdate` was modified

* `withDisableLocalAuth(java.lang.Boolean)` was added
* `publicNetworkAccess()` was added
* `disableLocalAuth()` was added
* `withPublicNetworkAccess(models.PublicNetworkAccess)` was added

#### `models.CommunicationServiceResource` was modified

* `publicNetworkAccess()` was added
* `disableLocalAuth()` was added

#### `CommunicationManager` was modified

* `suppressionListAddresses()` was added
* `suppressionLists()` was added
* `smtpUsernames()` was added

## 2.2.0 (2024-12-19)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Azure Resource Manager Communication client library for Java.

This package contains Microsoft Azure SDK for Communication Management SDK. REST API for Azure Communication Services. Package tag package-2023-04. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
This package contains Microsoft Azure SDK for Communication Management SDK. REST API for Azure Communication Services. Package tag package-2025-09-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

## We'd love to hear your feedback

Expand Down Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-communication</artifactId>
<version>2.3.0-beta.1</version>
<version>2.3.0</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand All @@ -52,15 +52,15 @@ Azure subscription ID can be configured via `AZURE_SUBSCRIPTION_ID` environment
Assuming the use of the `DefaultAzureCredential` credential class, the client can be authenticated using the following code:

```java
AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
AzureProfile profile = new AzureProfile(AzureCloud.AZURE_PUBLIC_CLOUD);
TokenCredential credential = new DefaultAzureCredentialBuilder()
.authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
.build();
CommunicationManager manager = CommunicationManager
.authenticate(credential, profile);
```

The sample code assumes global Azure. Please change `AzureEnvironment.AZURE` variable if otherwise.
The sample code assumes global Azure. Please change the `AzureCloud.AZURE_PUBLIC_CLOUD` variable if otherwise.

See [Authentication][authenticate] for more options.

Expand Down Expand Up @@ -100,5 +100,3 @@ This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For m
[cg]: https://github.com/Azure/azure-sdk-for-java/blob/main/CONTRIBUTING.md
[coc]: https://opensource.microsoft.com/codeofconduct/
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/


Loading
Loading