# Microsoft Azure SDK for Python
This is the Microsoft Azure Playwrighttesting Management Client Library.
This package has been tested with Python 3.8+.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
## _Disclaimer_
_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_
## Getting started
### Prerequisites
- Python 3.8+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)
### Install the package
```bash
pip install azure-mgmt-playwrighttesting
pip install azure-identity
```
### Authentication
By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.
- `AZURE_CLIENT_ID` for Azure client ID.
- `AZURE_TENANT_ID` for Azure tenant ID.
- `AZURE_CLIENT_SECRET` for Azure client secret.
In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.
With above configuration, client can be authenticated by following code:
```python
from azure.identity import DefaultAzureCredential
from azure.mgmt.playwrighttesting import PlaywrightTestingMgmtClient
import os
sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = PlaywrightTestingMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```
## Examples
Code samples for this package can be found at:
- [Search Playwrighttesting Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com
- [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)
## Troubleshooting
## Next steps
## Provide Feedback
If you encounter any bugs or have suggestions, please file an issue in the
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
section of the project.
# Release History
## 1.0.0 (2024-12-18)
### Features Added
- Client `PlaywrightTestingMgmtClient` added method `send_request`
- Client `PlaywrightTestingMgmtClient` added operation group `account_quotas`
- Model `AccountProperties` added property `local_auth`
- Model `AccountUpdateProperties` added property `local_auth`
- Enum `FreeTrialState` added member `NOT_ELIGIBLE`
- Enum `FreeTrialState` added member `NOT_REGISTERED`
- Enum `ProvisioningState` added member `CREATING`
- Enum `QuotaNames` added member `REPORTING`
- Model `QuotaProperties` added property `offering_type`
- Added model `AccountFreeTrialProperties`
- Added model `AccountQuota`
- Added model `AccountQuotaProperties`
- Added enum `CheckNameAvailabilityReason`
- Added model `CheckNameAvailabilityRequest`
- Added model `CheckNameAvailabilityResponse`
- Added enum `OfferingType`
- Operation group `AccountsOperations` added method `check_name_availability`
- Added operation group `AccountQuotasOperations`
### Breaking Changes
- Model `Account` deleted or renamed its instance variable `additional_properties`
- Model `AccountProperties` deleted or renamed its instance variable `additional_properties`
- Model `AccountUpdate` deleted or renamed its instance variable `additional_properties`
- Model `AccountUpdateProperties` deleted or renamed its instance variable `additional_properties`
- Model `ErrorAdditionalInfo` deleted or renamed its instance variable `additional_properties`
- Model `ErrorDetail` deleted or renamed its instance variable `additional_properties`
- Model `ErrorResponse` deleted or renamed its instance variable `additional_properties`
- Model `FreeTrialProperties` deleted or renamed its instance variable `created_at`
- Model `FreeTrialProperties` deleted or renamed its instance variable `expiry_at`
- Model `FreeTrialProperties` deleted or renamed its instance variable `allocated_value`
- Model `FreeTrialProperties` deleted or renamed its instance variable `used_value`
- Model `FreeTrialProperties` deleted or renamed its instance variable `percentage_used`
- Model `FreeTrialProperties` deleted or renamed its instance variable `additional_properties`
- Model `Operation` deleted or renamed its instance variable `additional_properties`
- Model `OperationDisplay` deleted or renamed its instance variable `additional_properties`
- Model `ProxyResource` deleted or renamed its instance variable `additional_properties`
- Model `Quota` deleted or renamed its instance variable `additional_properties`
- Model `QuotaProperties` deleted or renamed its instance variable `additional_properties`
- Model `Resource` deleted or renamed its instance variable `additional_properties`
- Model `SystemData` deleted or renamed its instance variable `additional_properties`
- Model `TrackedResource` deleted or renamed its instance variable `additional_properties`
- Method `AccountsOperations.begin_create_or_update` renamed its parameter `name` to `account_name`
- Method `AccountsOperations.begin_delete` renamed its parameter `name` to `account_name`
- Method `AccountsOperations.get` renamed its parameter `name` to `account_name`
- Method `AccountsOperations.update` renamed its parameter `name` to `account_name`
- Method `QuotasOperations.get` renamed its parameter `name` to `quota_name`
## 1.0.0b2 (2024-03-04)
### Features Added
- Model Account has a new parameter properties
- Model AccountUpdate has a new parameter properties
- Model Quota has a new parameter properties
### Breaking Changes
- Model Account no longer has parameter dashboard_uri
- Model Account no longer has parameter provisioning_state
- Model Account no longer has parameter regional_affinity
- Model Account no longer has parameter reporting
- Model Account no longer has parameter scalable_execution
- Model AccountUpdate no longer has parameter regional_affinity
- Model AccountUpdate no longer has parameter reporting
- Model AccountUpdate no longer has parameter scalable_execution
- Model Quota no longer has parameter free_trial
- Model Quota no longer has parameter provisioning_state
## 1.0.0b1 (2023-09-27)
* Initial Release
Raw data
{
"_id": null,
"home_page": "https://github.com/Azure/azure-sdk-for-python",
"name": "azure-mgmt-playwrighttesting",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "azure, azure sdk",
"author": "Microsoft Corporation",
"author_email": "azpysdkhelp@microsoft.com",
"download_url": "https://files.pythonhosted.org/packages/1e/53/acb0ea54cd081f569a6cf009c6a457af70e19c2ece4bd99cd629a19ff0aa/azure_mgmt_playwrighttesting-1.0.0.tar.gz",
"platform": null,
"description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Playwrighttesting Management Client Library.\nThis package has been tested with Python 3.8+.\nFor a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).\n\n## _Disclaimer_\n\n_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_\n\n## Getting started\n\n### Prerequisites\n\n- Python 3.8+ is required to use this package.\n- [Azure subscription](https://azure.microsoft.com/free/)\n\n### Install the package\n\n```bash\npip install azure-mgmt-playwrighttesting\npip install azure-identity\n```\n\n### Authentication\n\nBy default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.\n\n- `AZURE_CLIENT_ID` for Azure client ID.\n- `AZURE_TENANT_ID` for Azure tenant ID.\n- `AZURE_CLIENT_SECRET` for Azure client secret.\n\nIn addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.\n\nWith above configuration, client can be authenticated by following code:\n\n```python\nfrom azure.identity import DefaultAzureCredential\nfrom azure.mgmt.playwrighttesting import PlaywrightTestingMgmtClient\nimport os\n\nsub_id = os.getenv(\"AZURE_SUBSCRIPTION_ID\")\nclient = PlaywrightTestingMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)\n```\n\n## Examples\n\nCode samples for this package can be found at:\n- [Search Playwrighttesting Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com\n- [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)\n\n\n## Troubleshooting\n\n## Next steps\n\n## Provide Feedback\n\nIf you encounter any bugs or have suggestions, please file an issue in the\n[Issues](https://github.com/Azure/azure-sdk-for-python/issues)\nsection of the project. \n\n\n# Release History\n\n## 1.0.0 (2024-12-18)\n\n### Features Added\n\n - Client `PlaywrightTestingMgmtClient` added method `send_request`\n - Client `PlaywrightTestingMgmtClient` added operation group `account_quotas`\n - Model `AccountProperties` added property `local_auth`\n - Model `AccountUpdateProperties` added property `local_auth`\n - Enum `FreeTrialState` added member `NOT_ELIGIBLE`\n - Enum `FreeTrialState` added member `NOT_REGISTERED`\n - Enum `ProvisioningState` added member `CREATING`\n - Enum `QuotaNames` added member `REPORTING`\n - Model `QuotaProperties` added property `offering_type`\n - Added model `AccountFreeTrialProperties`\n - Added model `AccountQuota`\n - Added model `AccountQuotaProperties`\n - Added enum `CheckNameAvailabilityReason`\n - Added model `CheckNameAvailabilityRequest`\n - Added model `CheckNameAvailabilityResponse`\n - Added enum `OfferingType`\n - Operation group `AccountsOperations` added method `check_name_availability`\n - Added operation group `AccountQuotasOperations`\n\n### Breaking Changes\n\n - Model `Account` deleted or renamed its instance variable `additional_properties`\n - Model `AccountProperties` deleted or renamed its instance variable `additional_properties`\n - Model `AccountUpdate` deleted or renamed its instance variable `additional_properties`\n - Model `AccountUpdateProperties` deleted or renamed its instance variable `additional_properties`\n - Model `ErrorAdditionalInfo` deleted or renamed its instance variable `additional_properties`\n - Model `ErrorDetail` deleted or renamed its instance variable `additional_properties`\n - Model `ErrorResponse` deleted or renamed its instance variable `additional_properties`\n - Model `FreeTrialProperties` deleted or renamed its instance variable `created_at`\n - Model `FreeTrialProperties` deleted or renamed its instance variable `expiry_at`\n - Model `FreeTrialProperties` deleted or renamed its instance variable `allocated_value`\n - Model `FreeTrialProperties` deleted or renamed its instance variable `used_value`\n - Model `FreeTrialProperties` deleted or renamed its instance variable `percentage_used`\n - Model `FreeTrialProperties` deleted or renamed its instance variable `additional_properties`\n - Model `Operation` deleted or renamed its instance variable `additional_properties`\n - Model `OperationDisplay` deleted or renamed its instance variable `additional_properties`\n - Model `ProxyResource` deleted or renamed its instance variable `additional_properties`\n - Model `Quota` deleted or renamed its instance variable `additional_properties`\n - Model `QuotaProperties` deleted or renamed its instance variable `additional_properties`\n - Model `Resource` deleted or renamed its instance variable `additional_properties`\n - Model `SystemData` deleted or renamed its instance variable `additional_properties`\n - Model `TrackedResource` deleted or renamed its instance variable `additional_properties`\n - Method `AccountsOperations.begin_create_or_update` renamed its parameter `name` to `account_name`\n - Method `AccountsOperations.begin_delete` renamed its parameter `name` to `account_name`\n - Method `AccountsOperations.get` renamed its parameter `name` to `account_name`\n - Method `AccountsOperations.update` renamed its parameter `name` to `account_name`\n - Method `QuotasOperations.get` renamed its parameter `name` to `quota_name`\n\n## 1.0.0b2 (2024-03-04)\n\n### Features Added\n\n - Model Account has a new parameter properties\n - Model AccountUpdate has a new parameter properties\n - Model Quota has a new parameter properties\n\n### Breaking Changes\n\n - Model Account no longer has parameter dashboard_uri\n - Model Account no longer has parameter provisioning_state\n - Model Account no longer has parameter regional_affinity\n - Model Account no longer has parameter reporting\n - Model Account no longer has parameter scalable_execution\n - Model AccountUpdate no longer has parameter regional_affinity\n - Model AccountUpdate no longer has parameter reporting\n - Model AccountUpdate no longer has parameter scalable_execution\n - Model Quota no longer has parameter free_trial\n - Model Quota no longer has parameter provisioning_state\n\n## 1.0.0b1 (2023-09-27)\n\n* Initial Release\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Microsoft Azure Playwrighttesting Management Client Library for Python",
"version": "1.0.0",
"project_urls": {
"Homepage": "https://github.com/Azure/azure-sdk-for-python"
},
"split_keywords": [
"azure",
" azure sdk"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "124ba518ff1a2f8c683ea01f1a43512d48508dcf9ee919fb64ac4be7b7770332",
"md5": "64c25e8640a022593c75cb247b369a3a",
"sha256": "328ef962bd697862628552e80f6b2edc09da5396cbbd9235938976b3cf800287"
},
"downloads": -1,
"filename": "azure_mgmt_playwrighttesting-1.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "64c25e8640a022593c75cb247b369a3a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 64229,
"upload_time": "2024-12-20T01:59:10",
"upload_time_iso_8601": "2024-12-20T01:59:10.551284Z",
"url": "https://files.pythonhosted.org/packages/12/4b/a518ff1a2f8c683ea01f1a43512d48508dcf9ee919fb64ac4be7b7770332/azure_mgmt_playwrighttesting-1.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1e53acb0ea54cd081f569a6cf009c6a457af70e19c2ece4bd99cd629a19ff0aa",
"md5": "a224fecc08d6a006a73b179c6fc2bef7",
"sha256": "9d7e6b7cdf0ae19bd9e4bf4d807cb7545dc1ed058adf8bdcc7f989f9c5664c1c"
},
"downloads": -1,
"filename": "azure_mgmt_playwrighttesting-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "a224fecc08d6a006a73b179c6fc2bef7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 58800,
"upload_time": "2024-12-20T01:59:08",
"upload_time_iso_8601": "2024-12-20T01:59:08.370038Z",
"url": "https://files.pythonhosted.org/packages/1e/53/acb0ea54cd081f569a6cf009c6a457af70e19c2ece4bd99cd629a19ff0aa/azure_mgmt_playwrighttesting-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-20 01:59:08",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Azure",
"github_project": "azure-sdk-for-python",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "azure-mgmt-playwrighttesting"
}