Skip to content

Commit f1127df

Browse files
[AutoRelease] t2-playwrighttesting-2024-01-23-75657(can only be merged by SDK owner) (#33963)
* code and test * update-testcase * Update CHANGELOG.md --------- Co-authored-by: azure-sdk <PythonSdkPipelines> Co-authored-by: ChenxiJiang333 <[email protected]> Co-authored-by: ChenxiJiang333 <[email protected]>
1 parent 069bb31 commit f1127df

File tree

13 files changed

+266
-88
lines changed

13 files changed

+266
-88
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Release History
22

3+
## 1.0.0b2 (2024-03-04)
4+
5+
### Features Added
6+
7+
- Model Account has a new parameter properties
8+
- Model AccountUpdate has a new parameter properties
9+
- Model Quota has a new parameter properties
10+
11+
### Breaking Changes
12+
13+
- Model Account no longer has parameter dashboard_uri
14+
- Model Account no longer has parameter provisioning_state
15+
- Model Account no longer has parameter regional_affinity
16+
- Model Account no longer has parameter reporting
17+
- Model Account no longer has parameter scalable_execution
18+
- Model AccountUpdate no longer has parameter regional_affinity
19+
- Model AccountUpdate no longer has parameter reporting
20+
- Model AccountUpdate no longer has parameter scalable_execution
21+
- Model Quota no longer has parameter free_trial
22+
- Model Quota no longer has parameter provisioning_state
23+
324
## 1.0.0b1 (2023-09-27)
425

526
* Initial Release

sdk/playwrighttesting/azure-mgmt-playwrighttesting/README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Microsoft Azure SDK for Python
22

33
This is the Microsoft Azure Playwrighttesting Management Client Library.
4-
This package has been tested with Python 3.7+.
4+
This package has been tested with Python 3.8+.
55
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
66

77
## _Disclaimer_
@@ -12,7 +12,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For
1212

1313
### Prerequisites
1414

15-
- Python 3.7+ is required to use this package.
15+
- Python 3.8+ is required to use this package.
1616
- [Azure subscription](https://azure.microsoft.com/free/)
1717

1818
### Install the package
@@ -59,6 +59,3 @@ Code samples for this package can be found at:
5959
If you encounter any bugs or have suggestions, please file an issue in the
6060
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
6161
section of the project.
62-
63-
64-
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-playwrighttesting%2FREADME.png)

sdk/playwrighttesting/azure-mgmt-playwrighttesting/_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"commit": "eeac7c84d823171f7d3e521621fc301b85b09cf8",
2+
"commit": "51a6e410cf9752dfdaad71f0f9778645d737d8c4",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.9.7",
55
"use": [
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"AssetsRepo": "Azure/azure-sdk-assets",
3+
"AssetsRepoPrefixPath": "python",
4+
"TagPrefix": "python/playwrighttesting/azure-mgmt-playwrighttesting",
5+
"Tag": "python/playwrighttesting/azure-mgmt-playwrighttesting_7a06bc0909"
6+
}

sdk/playwrighttesting/azure-mgmt-playwrighttesting/azure/mgmt/playwrighttesting/_playwright_testing_mgmt_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
class PlaywrightTestingMgmtClient: # pylint: disable=client-accepts-api-version-keyword
26-
"""Microsoft.AzurePlaywrightService Resource Provider management API.
26+
"""Azure Playwright testing management service.
2727
2828
:ivar operations: Operations operations
2929
:vartype operations: azure.mgmt.playwrighttesting.operations.Operations

sdk/playwrighttesting/azure-mgmt-playwrighttesting/azure/mgmt/playwrighttesting/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "1.0.0b1"
9+
VERSION = "1.0.0b2"

sdk/playwrighttesting/azure-mgmt-playwrighttesting/azure/mgmt/playwrighttesting/aio/_playwright_testing_mgmt_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
class PlaywrightTestingMgmtClient: # pylint: disable=client-accepts-api-version-keyword
26-
"""Microsoft.AzurePlaywrightService Resource Provider management API.
26+
"""Azure Playwright testing management service.
2727
2828
:ivar operations: Operations operations
2929
:vartype operations: azure.mgmt.playwrighttesting.aio.operations.Operations

sdk/playwrighttesting/azure-mgmt-playwrighttesting/azure/mgmt/playwrighttesting/models/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88

99
from ._models_py3 import Account
1010
from ._models_py3 import AccountListResult
11+
from ._models_py3 import AccountProperties
1112
from ._models_py3 import AccountUpdate
13+
from ._models_py3 import AccountUpdateProperties
1214
from ._models_py3 import ErrorAdditionalInfo
1315
from ._models_py3 import ErrorDetail
1416
from ._models_py3 import ErrorResponse
@@ -19,6 +21,7 @@
1921
from ._models_py3 import ProxyResource
2022
from ._models_py3 import Quota
2123
from ._models_py3 import QuotaListResult
24+
from ._models_py3 import QuotaProperties
2225
from ._models_py3 import Resource
2326
from ._models_py3 import SystemData
2427
from ._models_py3 import TrackedResource
@@ -37,7 +40,9 @@
3740
__all__ = [
3841
"Account",
3942
"AccountListResult",
43+
"AccountProperties",
4044
"AccountUpdate",
45+
"AccountUpdateProperties",
4146
"ErrorAdditionalInfo",
4247
"ErrorDetail",
4348
"ErrorResponse",
@@ -48,6 +53,7 @@
4853
"ProxyResource",
4954
"Quota",
5055
"QuotaListResult",
56+
"QuotaProperties",
5157
"Resource",
5258
"SystemData",
5359
"TrackedResource",

0 commit comments

Comments
 (0)