Skip to content

Commit d28f025

Browse files
author
SDKAuto
committed
CodeGen from PR 33891 in Azure/azure-rest-api-specs
Merge 468d60eff0df2425f091ce69ce73749122c7a4bf into 2321956e04edaf9fab5440d8889475d9790d2ebc
1 parent 86d29fa commit d28f025

File tree

108 files changed

+2028
-3603
lines changed

Some content is hidden

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

108 files changed

+2028
-3603
lines changed

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

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

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

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

11-
### Other Changes
109+
* `properties()` was added
12110

13111
## 1.1.0 (2024-12-12)
14112

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

+5-7
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 Load Test client library for Java
22

3-
Azure Resource Manager LoadTest client library for Java.
3+
Azure Resource Manager Load Test 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 Load Test 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();
5959
LoadTestManager manager = LoadTestManager
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)