Skip to content

[AutoPR azure-resourcemanager-loadtesting] Control Plane - Microsoft.AzurePlaywrightService integration into Microsoft.LoadTestService #15475

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
106 changes: 102 additions & 4 deletions sdk/loadtesting/azure-resourcemanager-loadtesting/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,112 @@
# Release History

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

### Features Added
- 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).

### Breaking Changes

### Bugs Fixed
#### `models.Origin` was removed

#### `models.LoadTestResourceListResult` was removed

#### `models.LoadTestResourcePatchRequestBody` was removed

#### `models.PagedOutboundEnvironmentEndpoint` was removed

#### `models.Operations` was removed

#### `models.ActionType` was removed

#### `models.Quotas` was removed

#### `models.OperationDisplay` was removed

#### `models.OperationListResult` was removed

#### `models.QuotaResourceListResult` was removed

#### `models.Operation` was removed

#### `models.LoadTests` was removed

#### `LoadTestManager` was modified

* `loadTests()` was removed
* `fluent.LoadTestClient serviceClient()` -> `fluent.LoadTestMgmtClient serviceClient()`
* `operations()` was removed
* `quotas()` was removed

#### `models.ManagedServiceIdentity` was modified

* `java.util.UUID principalId()` -> `java.lang.String principalId()`
* `java.util.UUID tenantId()` -> `java.lang.String tenantId()`

#### `models.LoadTestResource$Definition` was modified

* `withDescription(java.lang.String)` was removed
* `withEncryption(models.EncryptionProperties)` was removed

#### `models.LoadTestResource$Update` was modified

* `withEncryption(models.EncryptionProperties)` was removed
* `withDescription(java.lang.String)` was removed

#### `models.UserAssignedIdentity` was modified

* `java.util.UUID principalId()` -> `java.lang.String principalId()`
* `java.util.UUID clientId()` -> `java.lang.String clientId()`

#### `models.LoadTestResource` was modified

* `description()` was removed
* `encryption()` was removed
* `provisioningState()` was removed
* `dataPlaneUri()` was removed

#### `models.QuotaResource` was modified

* `limit()` was removed
* `provisioningState()` was removed
* `usage()` was removed

### Features Added

* `implementation.models.PagedOutboundEnvironmentEndpoint` was added

* `models.ResourceProviders` was added

* `implementation.models.LoadTestResourceListResult` was added

* `implementation.models.QuotaResourceListResult` was added

* `models.LoadTestResourceUpdateProperties` was added

* `models.LoadTestResourceUpdate` was added

* `models.LoadTestProperties` was added

* `models.QuotaResourceProperties` was added

#### `LoadTestManager` was modified

* `resourceProviders()` was added

#### `models.LoadTestResource$Definition` was modified

* `withProperties(models.LoadTestProperties)` was added

#### `models.LoadTestResource$Update` was modified

* `withProperties(models.LoadTestResourceUpdateProperties)` was added

#### `models.LoadTestResource` was modified

* `properties()` was added

#### `models.QuotaResource` was modified

### Other Changes
* `properties()` was added

## 1.1.0 (2024-12-12)

Expand Down
12 changes: 5 additions & 7 deletions sdk/loadtesting/azure-resourcemanager-loadtesting/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Azure Resource Manager LoadTest client library for Java
# Azure Resource Manager Load Test client library for Java

Azure Resource Manager LoadTest client library for Java.
Azure Resource Manager Load Test client library for Java.

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).
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).

## We'd love to hear your feedback

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

```java
AzureProfile profile = new AzureProfile(AzureEnvironment.AZURE);
AzureProfile profile = new AzureProfile(AzureCloud.AZURE_PUBLIC_CLOUD);
TokenCredential credential = new DefaultAzureCredentialBuilder()
.authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint())
.build();
LoadTestManager manager = LoadTestManager
.authenticate(credential, profile);
```

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

See [Authentication][authenticate] for more options.

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


Loading