Skip to content

Commit 1523a11

Browse files
author
SDKAuto
committed
CodeGen from PR 34377 in Azure/azure-rest-api-specs
Merge 747374f73d5e5755814fadb2818f092a561a1ca0 into c6b306b743f110fd78f203d7de7d2b55101f02b9
1 parent a2c301f commit 1523a11

File tree

179 files changed

+6082
-3452
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+6082
-3452
lines changed

sdk/peering/azure-resourcemanager-peering/CHANGELOG.md

Lines changed: 95 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,105 @@
11
# Release History
22

3-
## 1.1.0-beta.1 (Unreleased)
3+
## 1.0.0-beta.1 (2025-04-30)
44

5-
### Features Added
5+
- Azure Resource Manager Peering client library for Java. This package contains Microsoft Azure SDK for Peering Management SDK. Peering Client. Package tag package-2022-10-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
66

77
### Breaking Changes
88

9-
### Bugs Fixed
9+
#### `models.PeerAsn$Update` was modified
1010

11-
### Other Changes
11+
* `withValidationState(models.ValidationState)` was removed
12+
13+
#### `models.LegacyPeerings` was modified
14+
15+
* `list(java.lang.String,models.LegacyPeeringsKind,java.lang.Integer,com.azure.core.util.Context)` was removed
16+
17+
#### `models.PeeringSku` was modified
18+
19+
* `withSize(models.Size)` was removed
20+
* `withTier(models.Tier)` was removed
21+
* `withFamily(models.Family)` was removed
22+
23+
#### `models.PeerAsn$Definition` was modified
24+
25+
* `withValidationState(models.ValidationState)` was removed
26+
27+
### Features Added
28+
29+
* `models.ServiceSpecification` was added
30+
31+
* `models.ConnectionMonitorTest$Update` was added
32+
33+
* `models.LogAnalyticsWorkspaceProperties` was added
34+
35+
* `models.RpUnbilledPrefixes` was added
36+
37+
* `models.ConnectionMonitorTest` was added
38+
39+
* `models.ConnectionMonitorTest$UpdateStages` was added
40+
41+
* `models.Command` was added
42+
43+
* `models.ConnectionMonitorTest$DefinitionStages` was added
44+
45+
* `models.LookingGlassOutput` was added
46+
47+
* `models.ConnectionMonitorTestListResult` was added
48+
49+
* `models.LookingGlass` was added
50+
51+
* `models.ConnectionMonitorTest$Definition` was added
52+
53+
* `models.LookingGlassCommand` was added
54+
55+
* `models.ConnectionMonitorTests` was added
56+
57+
* `models.RpUnbilledPrefix` was added
58+
59+
* `models.LookingGlassSourceType` was added
60+
61+
* `models.MetricDimension` was added
62+
63+
* `models.RpUnbilledPrefixListResult` was added
64+
65+
* `models.MetricSpecification` was added
66+
67+
#### `models.Operation` was modified
68+
69+
* `serviceSpecification()` was added
70+
71+
#### `models.PeeringRegisteredPrefix` was modified
72+
73+
* `validate()` was added
74+
* `validateWithResponse(com.azure.core.util.Context)` was added
75+
76+
#### `models.LegacyPeerings` was modified
77+
78+
* `list(java.lang.String,models.LegacyPeeringsKind,java.lang.Integer,models.DirectPeeringType,com.azure.core.util.Context)` was added
79+
80+
#### `models.PeeringServices` was modified
81+
82+
* `initializeConnectionMonitorWithResponse(com.azure.core.util.Context)` was added
83+
* `initializeConnectionMonitor()` was added
84+
85+
#### `models.PeeringService$Definition` was modified
86+
87+
* `withLogAnalyticsWorkspaceProperties(models.LogAnalyticsWorkspaceProperties)` was added
88+
89+
#### `models.PeeringService` was modified
90+
91+
* `logAnalyticsWorkspaceProperties()` was added
92+
93+
#### `PeeringManager` was modified
94+
95+
* `rpUnbilledPrefixes()` was added
96+
* `connectionMonitorTests()` was added
97+
* `lookingGlass()` was added
98+
99+
#### `models.RegisteredPrefixes` was modified
100+
101+
* `validate(java.lang.String,java.lang.String,java.lang.String)` was added
102+
* `validateWithResponse(java.lang.String,java.lang.String,java.lang.String,com.azure.core.util.Context)` was added
12103

13104
## 1.0.0 (2024-12-25)
14105

sdk/peering/azure-resourcemanager-peering/README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Azure Resource Manager Peering client library for Java.
44

5-
This package contains Microsoft Azure SDK for Peering Management SDK. Peering Client. Package tag package-2021-01-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
5+
This package contains Microsoft Azure SDK for Peering Management SDK. Peering Client. Package tag package-2022-10-01. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).
66

77
## We'd love to hear your feedback
88

@@ -52,15 +52,15 @@ Azure subscription ID can be configured via `AZURE_SUBSCRIPTION_ID` environment
5252
Assuming the use of the `DefaultAzureCredential` credential class, the client can be authenticated using the following code:
5353

5454
```java
55-
AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
55+
AzureProfile profile = new AzureProfile(AzureCloud.AZURE_PUBLIC_CLOUD);
5656
TokenCredential credential = new DefaultAzureCredentialBuilder()
5757
.authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
5858
.build();
5959
PeeringManager manager = PeeringManager
6060
.authenticate(credential, profile);
6161
```
6262

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

6565
See [Authentication][authenticate] for more options.
6666

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

0 commit comments

Comments
 (0)