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
24 changes: 24 additions & 0 deletions eng/lintingconfigs/revapi/track2/revapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1113,6 +1113,30 @@
"code": ".*",
"old": ".*com\\.azure\\.resourcemanager\\.search\\.models\\.(IdentityType|PublicNetworkAccess|SharedPrivateLinkResourceProvisioningState|SharedPrivateLinkResourceStatus|SkuName).*",
"justification": "Enum changed from sealed to expandable (ExpandableStringEnum) during TypeSpec migration."
},
{
"code": "java.method.visibilityReduced",
"old" : {
"matcher": "regex",
"match": "method void com\\.azure\\.resourcemanager\\.trafficmanager\\.models\\..*\\:\\:\\<init\\>\\(\\)"
},
"justification": "Output-only immutable models' constructors are now private."
},
{
"code": "java.method.removed",
"old" : {
"matcher": "regex",
"match": "method .* com\\.azure\\.resourcemanager\\.trafficmanager\\.models\\..*\\:\\:with.*\\(.*\\).*"
},
"justification": "Output-only immutable models' setters are removed if no explicit usage."
},
{
"code": "java.class.removed",
"old" : {
"matcher": "regex",
"match": "class com\\.azure\\.resourcemanager\\.trafficmanager\\.models\\..*ListResult"
},
"justification": "Pageable models moved to implementation package. Unlikely used by user."
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@

## 2.54.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 2.53.6 (2026-01-29)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For documentation on how to use this package, please see [Azure Management Libra
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-trafficmanager</artifactId>
<version>2.53.1</version>
<version>2.54.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
// Code generated by Microsoft (R) TypeSpec Code Generator.

package com.azure.resourcemanager.trafficmanager.fluent;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
// Code generated by Microsoft (R) TypeSpec Code Generator.

package com.azure.resourcemanager.trafficmanager.fluent;

Expand All @@ -9,6 +9,7 @@
import com.azure.core.http.rest.Response;
import com.azure.core.util.Context;
import com.azure.resourcemanager.trafficmanager.fluent.models.HeatMapModelInner;
import com.azure.resourcemanager.trafficmanager.models.HeatMapType;
import java.util.List;
import reactor.core.publisher.Mono;

Expand All @@ -21,6 +22,7 @@ public interface HeatMapsClient {
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param profileName The name of the Traffic Manager profile.
* @param heatMapType The type of the heatmap.
* @param topLeft The top left latitude,longitude pair of the rectangular viewport to query for.
* @param botRight The bottom right latitude,longitude pair of the rectangular viewport to query for.
* @throws IllegalArgumentException thrown if parameters fail the validation.
Expand All @@ -31,26 +33,28 @@ public interface HeatMapsClient {
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono<Response<HeatMapModelInner>> getWithResponseAsync(String resourceGroupName, String profileName,
List<Double> topLeft, List<Double> botRight);
HeatMapType heatMapType, List<Double> topLeft, List<Double> botRight);

/**
* Gets latest heatmap for Traffic Manager profile.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param profileName The name of the Traffic Manager profile.
* @param heatMapType The type of the heatmap.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return latest heatmap for Traffic Manager profile on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono<HeatMapModelInner> getAsync(String resourceGroupName, String profileName);
Mono<HeatMapModelInner> getAsync(String resourceGroupName, String profileName, HeatMapType heatMapType);

/**
* Gets latest heatmap for Traffic Manager profile.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param profileName The name of the Traffic Manager profile.
* @param heatMapType The type of the heatmap.
* @param topLeft The top left latitude,longitude pair of the rectangular viewport to query for.
* @param botRight The bottom right latitude,longitude pair of the rectangular viewport to query for.
* @param context The context to associate with this operation.
Expand All @@ -60,19 +64,20 @@ Mono<Response<HeatMapModelInner>> getWithResponseAsync(String resourceGroupName,
* @return latest heatmap for Traffic Manager profile along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response<HeatMapModelInner> getWithResponse(String resourceGroupName, String profileName, List<Double> topLeft,
List<Double> botRight, Context context);
Response<HeatMapModelInner> getWithResponse(String resourceGroupName, String profileName, HeatMapType heatMapType,
List<Double> topLeft, List<Double> botRight, Context context);

/**
* Gets latest heatmap for Traffic Manager profile.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param profileName The name of the Traffic Manager profile.
* @param heatMapType The type of the heatmap.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return latest heatmap for Traffic Manager profile.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
HeatMapModelInner get(String resourceGroupName, String profileName);
HeatMapModelInner get(String resourceGroupName, String profileName, HeatMapType heatMapType);
}
Loading
Loading