Skip to content

Commit 092222e

Browse files
author
SDKAuto
committed
CodeGen from PR 33891 in Azure/azure-rest-api-specs
Merge 0297b95a5acb00370d3ab832ead9de2c059b2086 into 4c0f7731c93696af01bd2bb9927bf28d2afcbc98
1 parent 970f239 commit 092222e

File tree

115 files changed

+2208
-3786
lines changed

Some content is hidden

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

115 files changed

+2208
-3786
lines changed

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

+99-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,109 @@
11
# Release History
22

3-
## 1.2.0-beta.1 (Unreleased)
3+
## 1.2.0-beta.1 (2025-04-28)
44

5-
### Features Added
5+
- Azure Resource Manager Azure Load Testing client library for Java. This package contains Microsoft Azure SDK for Azure Load Testing Management SDK. LoadTest client provides access to LoadTest Resource and it's status operations. 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+
#### `LoadTestManager` was removed
10+
11+
#### `models.Origin` was removed
12+
13+
#### `models.LoadTestResourceListResult` was removed
14+
15+
#### `models.LoadTestResourcePatchRequestBody` was removed
16+
17+
#### `models.PagedOutboundEnvironmentEndpoint` was removed
18+
19+
#### `LoadTestManager$Configurable` was removed
20+
21+
#### `models.Operations` was removed
22+
23+
#### `models.ActionType` was removed
24+
25+
#### `models.Quotas` was removed
26+
27+
#### `models.OperationDisplay` was removed
28+
29+
#### `models.OperationListResult` was removed
30+
31+
#### `models.QuotaResourceListResult` was removed
32+
33+
#### `models.Operation` was removed
34+
35+
#### `models.LoadTests` was removed
36+
37+
#### `models.ManagedServiceIdentity` was modified
38+
39+
* `java.util.UUID principalId()` -> `java.lang.String principalId()`
40+
* `java.util.UUID tenantId()` -> `java.lang.String tenantId()`
41+
42+
#### `models.LoadTestResource$Definition` was modified
43+
44+
* `withDescription(java.lang.String)` was removed
45+
* `withEncryption(models.EncryptionProperties)` was removed
46+
47+
#### `models.LoadTestResource$Update` was modified
48+
49+
* `withDescription(java.lang.String)` was removed
50+
* `withEncryption(models.EncryptionProperties)` was removed
51+
52+
#### `models.UserAssignedIdentity` was modified
53+
54+
* `java.util.UUID principalId()` -> `java.lang.String principalId()`
55+
* `java.util.UUID clientId()` -> `java.lang.String clientId()`
56+
57+
#### `models.LoadTestResource` was modified
58+
59+
* `provisioningState()` was removed
60+
* `description()` was removed
61+
* `encryption()` was removed
62+
* `dataPlaneUri()` was removed
63+
64+
#### `models.QuotaResource` was modified
65+
66+
* `limit()` was removed
67+
* `provisioningState()` was removed
68+
* `usage()` was removed
69+
70+
### Features Added
71+
72+
* `implementation.models.PagedOutboundEnvironmentEndpoint` was added
73+
74+
* `models.ResourceProviders` was added
75+
76+
* `implementation.models.LoadTestResourceListResult` was added
77+
78+
* `implementation.models.QuotaResourceListResult` was added
79+
80+
* `models.LoadTestResourceUpdateProperties` was added
81+
82+
* `AzureLoadTestingManager$Configurable` was added
83+
84+
* `models.LoadTestResourceUpdate` was added
85+
86+
* `AzureLoadTestingManager` was added
87+
88+
* `models.LoadTestProperties` was added
89+
90+
* `models.QuotaResourceProperties` was added
91+
92+
#### `models.LoadTestResource$Definition` was modified
93+
94+
* `withProperties(models.LoadTestProperties)` was added
95+
96+
#### `models.LoadTestResource$Update` was modified
97+
98+
* `withProperties(models.LoadTestResourceUpdateProperties)` was added
99+
100+
#### `models.LoadTestResource` was modified
101+
102+
* `properties()` was added
103+
104+
#### `models.QuotaResource` was modified
10105

11-
### Other Changes
106+
* `properties()` was added
12107

13108
## 1.1.0 (2024-12-12)
14109

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

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Azure Resource Manager LoadTest client library for Java
1+
# Azure Resource Manager Azure Load Testing client library for Java
22

3-
Azure Resource Manager LoadTest client library for Java.
3+
Azure Resource Manager Azure Load Testing client library for Java.
44

5-
This package contains Microsoft Azure SDK for LoadTest Management SDK. LoadTest client provides access to LoadTest Resource and it's status operations. Package tag package-2022-12-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 Azure Load Testing Management SDK. LoadTest client provides access to LoadTest Resource and it's status operations. 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();
59-
LoadTestManager manager = LoadTestManager
59+
AzureLoadTestingManager manager = AzureLoadTestingManager
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)