Skip to content

[AutoPR azure-resourcemanager-playwrighttesting] test playwrighttesting #13882

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

Closed
Closed
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Release History

## 1.1.0-beta.1 (Unreleased)
## 1.1.0-beta.1 (2025-01-27)

- Azure Resource Manager Playwright Testing client library for Java. This package contains Microsoft Azure SDK for Playwright Testing Management SDK. Microsoft.AzurePlaywrightService Resource Provider Management API. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

## 1.0.0-beta.1 (2025-01-27)

- Azure Resource Manager Playwright Testing client library for Java. This package contains Microsoft Azure SDK for Playwright Testing Management SDK. Microsoft.AzurePlaywrightService Resource Provider Management API. For documentation on how to use this package, please see [Azure Management Libraries for Java](https://aka.ms/azsdk/java/mgmt).

### Features Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Various documentation is available to help you get started
<dependency>
<groupId>com.azure.resourcemanager</groupId>
<artifactId>azure-resourcemanager-playwrighttesting</artifactId>
<version>1.0.0</version>
<version>1.1.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down Expand Up @@ -70,6 +70,14 @@ See [API design][design] for general introduction on design and key concepts on

## Examples

```java
account = playwrightTestingManager.accounts()
.define(accountName)
.withRegion(REGION)
.withExistingResourceGroup(resourceGroupName)
.withProperties(new AccountProperties().withRegionalAffinity(EnablementStatus.ENABLED))
.create();
```
[Code snippets and samples](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/playwrighttesting/azure-resourcemanager-playwrighttesting/SAMPLE.md)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public PlaywrightTestingManager authenticate(TokenCredential credential, AzurePr
.append("-")
.append("com.azure.resourcemanager.playwrighttesting")
.append("/")
.append("1.0.0-beta.1");
.append("1.1.0-beta.1");
if (!Configuration.getGlobalConfiguration().get("AZURE_TELEMETRY_DISABLED", false)) {
userAgentBuilder.append(" (")
.append(Configuration.getGlobalConfiguration().get("java.version"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public final class AccountProperties implements JsonSerializable<AccountProperti
private EnablementStatus reporting;

/*
* When enabled, this feature allows the workspace to use local auth(through access key) for authentication of test
* runs.
* When enabled, this feature allows the workspace to use local auth (through service access token) for executing
* operations.
*/
private EnablementStatus localAuth;

Expand Down Expand Up @@ -141,8 +141,8 @@ public AccountProperties withReporting(EnablementStatus reporting) {
}

/**
* Get the localAuth property: When enabled, this feature allows the workspace to use local auth(through access key)
* for authentication of test runs.
* Get the localAuth property: When enabled, this feature allows the workspace to use local auth (through service
* access token) for executing operations.
*
* @return the localAuth value.
*/
Expand All @@ -151,8 +151,8 @@ public EnablementStatus localAuth() {
}

/**
* Set the localAuth property: When enabled, this feature allows the workspace to use local auth(through access key)
* for authentication of test runs.
* Set the localAuth property: When enabled, this feature allows the workspace to use local auth (through service
* access token) for executing operations.
*
* @param localAuth the localAuth value to set.
* @return the AccountProperties object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public final class AccountUpdateProperties implements JsonSerializable<AccountUp
private EnablementStatus reporting;

/*
* When enabled, this feature allows the workspace to use local auth(through access key) for authentication of test
* runs.
* When enabled, this feature allows the workspace to use local auth (through service access token) for executing
* operations.
*/
private EnablementStatus localAuth;

Expand Down Expand Up @@ -122,8 +122,8 @@ public AccountUpdateProperties withReporting(EnablementStatus reporting) {
}

/**
* Get the localAuth property: When enabled, this feature allows the workspace to use local auth(through access key)
* for authentication of test runs.
* Get the localAuth property: When enabled, this feature allows the workspace to use local auth (through service
* access token) for executing operations.
*
* @return the localAuth value.
*/
Expand All @@ -132,8 +132,8 @@ public EnablementStatus localAuth() {
}

/**
* Set the localAuth property: When enabled, this feature allows the workspace to use local auth(through access key)
* for authentication of test runs.
* Set the localAuth property: When enabled, this feature allows the workspace to use local auth (through service
* access token) for executing operations.
*
* @param localAuth the localAuth value to set.
* @return the AccountUpdateProperties object itself.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
directory: specification/playwrighttesting/PlaywrightTesting.Management
commit: 58740206b853320974ef5e4864f7be8120b15a27
repo: Azure/azure-rest-api-specs
commit: 3cf4e3486139ea687e909cb85779d31ae2ebfc2d
repo: test-repo-billy/azure-rest-api-specs
additionalDirectories:
Loading