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 231c40dde37023504bda2297eedb00829d1c2092 into b4144eef7a3a812bfa5bd664da15a188d3f19ad0
  • Loading branch information
SDKAuto committed Jan 2, 2025
1 parent 0348696 commit cf1119c
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-02)

### 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: edd75fe59ad7b5b2cba1739f16223ce9324830a8
repo: Azure/azure-rest-api-specs
additionalDirectories:

0 comments on commit cf1119c

Please sign in to comment.