Skip to content

Commit

Permalink
CodeGen from PR 31855 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 50ebc0a5952327e45936f82482ed1789e18d1288 into 95aa73b8831deb2940ac7067b8f296cd189a5fe1
  • Loading branch information
SDKAuto committed Jan 6, 2025
1 parent 4003419 commit ea40cbd
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 22 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,8 @@
# Release History

## 1.1.0-beta.1 (Unreleased)
## 1.0.0-beta.1 (2025-01-06)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- 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 (2024-12-16)

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 @@ -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
commit: efa26abe03e36edc8e06662810782c95f8ff0073
repo: Azure/azure-rest-api-specs
additionalDirectories:

0 comments on commit ea40cbd

Please sign in to comment.