Skip to content
Closed
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 sdk/clientcore/annotation-processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<dependency>
<groupId>io.clientcore</groupId>
<artifactId>core</artifactId>
<version>1.0.0-beta.9</version> <!-- {x-version-update;io.clientcore:core;dependency} -->
<version>1.0.0-beta.8</version> <!-- {x-version-update;io.clientcore:core;dependency} -->
</dependency>

<!-- Unit Test -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,49 @@
# Release History

## 1.2.0-beta.1 (Unreleased)
## 1.2.0-beta.1 (2025-04-07)

- Azure Resource Manager Traffic Controller client library for Java. This package contains Microsoft Azure SDK for Traffic Controller Management SDK. Traffic Controller Provider management API. 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.IpAccessRule` was added

* `models.FrontendUpdateProperties` was added

* `models.IpAccessRuleAction` was added

* `models.IpAccessRulesPolicy` was added

* `models.IpAccessRulesSecurityPolicy` was added

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

* `withProperties(models.FrontendUpdateProperties)` was added

#### `models.SecurityPolicyProperties` was modified

* `ipAccessRulesPolicy()` was added
* `withIpAccessRulesPolicy(models.IpAccessRulesPolicy)` was added

### Bugs Fixed
#### `models.SecurityPolicyConfigurations` was modified

### Other Changes
* `withIpAccessRulesSecurityPolicy(models.IpAccessRulesSecurityPolicy)` was added
* `ipAccessRulesSecurityPolicy()` was added

#### `models.FrontendUpdate` was modified

* `properties()` was added
* `withProperties(models.FrontendUpdateProperties)` was added

#### `models.SecurityPolicyUpdateProperties` was modified

* `ipAccessRulesPolicy()` was added
* `withIpAccessRulesPolicy(models.IpAccessRulesPolicy)` was added

#### `models.FrontendProperties` was modified

* `withSecurityPolicyConfigurations(models.SecurityPolicyConfigurations)` was added
* `securityPolicyConfigurations()` was added

## 1.1.0 (2025-02-06)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
TrafficControllerManager manager = TrafficControllerManager
.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 @@ -107,5 +107,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