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 dad65926bcf41c836545c8f5ac3e133291732850 into 49456eb149e3bb5d0528cbca714cfa1806415484
  • Loading branch information
SDKAuto committed Jan 7, 2025
1 parent e66b66a commit d3258df
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 25 deletions.
6 changes: 3 additions & 3 deletions sdk/clientcore/optional-dependency-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<groupId>io.clientcore</groupId>
<artifactId>optional-dependency-tests</artifactId>
<packaging>jar</packaging>
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:core;current} -->
<version>1.0.0-beta.2</version> <!-- {x-version-update;io.clientcore:core;current} -->

<name>Java Core library tests for optional dependencies and features.</name>
<description>Tests that validate optional dependencies and features of the Core library.</description>
Expand Down Expand Up @@ -56,14 +56,14 @@
<dependency>
<groupId>io.clientcore</groupId>
<artifactId>core</artifactId>
<version>1.0.0-beta.2</version> <!-- {x-version-update;io.clientcore:core;dependency} -->
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:core;dependency} -->
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>io.clientcore</groupId>
<artifactId>core</artifactId>
<version>1.0.0-beta.2</version> <!-- {x-version-update;io.clientcore:core;dependency} -->
<version>1.0.0-beta.1</version> <!-- {x-version-update;io.clientcore:core;dependency} -->
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down
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-07)

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

0 comments on commit d3258df

Please sign in to comment.