Skip to content

Commit 5646464

Browse files
author
SDKAuto
committed
CodeGen from PR 33891 in Azure/azure-rest-api-specs
Merge f9d7940c005b6001b8dcbeefe338d1aa6e489757 into c5c1929b24a2d40130a10058757763ab3568c40f
1 parent e032d8c commit 5646464

108 files changed

Lines changed: 2028 additions & 3603 deletions

File tree

Some content is hidden

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

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

Lines changed: 102 additions & 4 deletions
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+
* `fluent.LoadTestClient serviceClient()` -> `fluent.LoadTestMgmtClient serviceClient()`
37+
* `operations()` was removed
38+
* `quotas()` was removed
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 principalId()` -> `java.lang.String principalId()`
58+
* `java.util.UUID clientId()` -> `java.lang.String clientId()`
59+
60+
#### `models.LoadTestResource` was modified
61+
62+
* `description()` was removed
63+
* `encryption()` was removed
64+
* `provisioningState()` was removed
65+
* `dataPlaneUri()` was removed
66+
67+
#### `models.QuotaResource` was modified
68+
69+
* `limit()` was removed
70+
* `provisioningState()` was removed
71+
* `usage()` 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

Lines changed: 5 additions & 7 deletions
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)