# Microsoft Azure SDK for Python
This is the Microsoft Azure Appcomplianceautomation 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-appcomplianceautomation
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.appcomplianceautomation import AppComplianceAutomationMgmtClient
import os
sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = AppComplianceAutomationMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```
## Examples
Code samples for this package can be found at:
- [Search Appcomplianceautomation 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-06-23)
### Features Added
- Added operation ReportOperations.begin_fix
- Added operation ReportOperations.begin_sync_cert_record
- Added operation ReportOperations.begin_verify
- Added operation ReportOperations.get_scoping_questions
- Added operation ReportOperations.list
- Added operation ReportOperations.nested_resource_check_name_availability
- Added operation SnapshotOperations.list
- Added operation group EvidenceOperations
- Added operation group ProviderActionsOperations
- Added operation group ScopingConfigurationOperations
- Added operation group WebhookOperations
- Model ComplianceReportItem has a new parameter control_family_name
- Model ComplianceReportItem has a new parameter control_status
- Model ComplianceReportItem has a new parameter resource_origin
- Model ComplianceReportItem has a new parameter resource_status
- Model ComplianceReportItem has a new parameter resource_status_change_date
- Model ComplianceReportItem has a new parameter responsibility_description
- Model ComplianceReportItem has a new parameter responsibility_title
- Model Control has a new parameter control_name
- Model Control has a new parameter responsibilities
- Model ControlFamily has a new parameter control_family_name
- Model ControlFamily has a new parameter control_family_status
- Model OverviewStatus has a new parameter not_applicable_count
- Model OverviewStatus has a new parameter pending_count
- Model ReportProperties has a new parameter cert_records
- Model ReportProperties has a new parameter errors
- Model ReportProperties has a new parameter storage_info
- Model ResourceMetadata has a new parameter account_id
- Model ResourceMetadata has a new parameter resource_origin
### Breaking Changes
- Client name is changed from `AppComplianceAutomationToolForMicrosoft365` to `AppComplianceAutomationMgmtClient`
- Model Category no longer has parameter category_type
- Model ComplianceReportItem no longer has parameter compliance_state
- Model ComplianceReportItem no longer has parameter control_type
- Model ComplianceReportItem no longer has parameter policy_description
- Model ComplianceReportItem no longer has parameter policy_display_name
- Model ComplianceReportItem no longer has parameter policy_id
- Model ComplianceReportItem no longer has parameter resource_group
- Model ComplianceReportItem no longer has parameter status_change_date
- Model ComplianceReportItem no longer has parameter subscription_id
- Model Control no longer has parameter assessments
- Model Control no longer has parameter control_short_name
- Model Control no longer has parameter control_type
- Model ControlFamily no longer has parameter family_name
- Model ControlFamily no longer has parameter family_status
- Model ControlFamily no longer has parameter family_type
- Model ReportProperties no longer has parameter id
- Model ReportProperties no longer has parameter report_name
- Model ResourceMetadata no longer has parameter resource_name
- Model ResourceMetadata no longer has parameter tags
- Model SnapshotProperties no longer has parameter id
- Operation ReportOperations.begin_create_or_update has a new required parameter properties
- Operation ReportOperations.begin_create_or_update no longer has parameter parameters
- Operation ReportOperations.begin_update has a new required parameter properties
- Operation ReportOperations.begin_update no longer has parameter parameters
- Operation SnapshotOperations.begin_download has a new required parameter body
- Operation SnapshotOperations.begin_download no longer has parameter parameters
- Removed operation group ReportsOperations
- Removed operation group SnapshotsOperations
## 1.0.0b1 (2022-11-15)
* Initial Release
Raw data
{
"_id": null,
"home_page": "https://github.com/Azure/azure-sdk-for-python",
"name": "azure-mgmt-appcomplianceautomation",
"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/a7/7e/ec55fe96d045e00293c76786453cf3c3d8ee8f94854c0bb437f571dcd496/azure-mgmt-appcomplianceautomation-1.0.0.tar.gz",
"platform": null,
"description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Appcomplianceautomation 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-appcomplianceautomation\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.appcomplianceautomation import AppComplianceAutomationMgmtClient\nimport os\n\nsub_id = os.getenv(\"AZURE_SUBSCRIPTION_ID\")\nclient = AppComplianceAutomationMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)\n```\n\n## Examples\n\nCode samples for this package can be found at:\n- [Search Appcomplianceautomation 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-06-23)\n\n### Features Added\n\n - Added operation ReportOperations.begin_fix\n - Added operation ReportOperations.begin_sync_cert_record\n - Added operation ReportOperations.begin_verify\n - Added operation ReportOperations.get_scoping_questions\n - Added operation ReportOperations.list\n - Added operation ReportOperations.nested_resource_check_name_availability\n - Added operation SnapshotOperations.list\n - Added operation group EvidenceOperations\n - Added operation group ProviderActionsOperations\n - Added operation group ScopingConfigurationOperations\n - Added operation group WebhookOperations\n - Model ComplianceReportItem has a new parameter control_family_name\n - Model ComplianceReportItem has a new parameter control_status\n - Model ComplianceReportItem has a new parameter resource_origin\n - Model ComplianceReportItem has a new parameter resource_status\n - Model ComplianceReportItem has a new parameter resource_status_change_date\n - Model ComplianceReportItem has a new parameter responsibility_description\n - Model ComplianceReportItem has a new parameter responsibility_title\n - Model Control has a new parameter control_name\n - Model Control has a new parameter responsibilities\n - Model ControlFamily has a new parameter control_family_name\n - Model ControlFamily has a new parameter control_family_status\n - Model OverviewStatus has a new parameter not_applicable_count\n - Model OverviewStatus has a new parameter pending_count\n - Model ReportProperties has a new parameter cert_records\n - Model ReportProperties has a new parameter errors\n - Model ReportProperties has a new parameter storage_info\n - Model ResourceMetadata has a new parameter account_id\n - Model ResourceMetadata has a new parameter resource_origin\n\n### Breaking Changes\n\n - Client name is changed from `AppComplianceAutomationToolForMicrosoft365` to `AppComplianceAutomationMgmtClient`\n - Model Category no longer has parameter category_type\n - Model ComplianceReportItem no longer has parameter compliance_state\n - Model ComplianceReportItem no longer has parameter control_type\n - Model ComplianceReportItem no longer has parameter policy_description\n - Model ComplianceReportItem no longer has parameter policy_display_name\n - Model ComplianceReportItem no longer has parameter policy_id\n - Model ComplianceReportItem no longer has parameter resource_group\n - Model ComplianceReportItem no longer has parameter status_change_date\n - Model ComplianceReportItem no longer has parameter subscription_id\n - Model Control no longer has parameter assessments\n - Model Control no longer has parameter control_short_name\n - Model Control no longer has parameter control_type\n - Model ControlFamily no longer has parameter family_name\n - Model ControlFamily no longer has parameter family_status\n - Model ControlFamily no longer has parameter family_type\n - Model ReportProperties no longer has parameter id\n - Model ReportProperties no longer has parameter report_name\n - Model ResourceMetadata no longer has parameter resource_name\n - Model ResourceMetadata no longer has parameter tags\n - Model SnapshotProperties no longer has parameter id\n - Operation ReportOperations.begin_create_or_update has a new required parameter properties\n - Operation ReportOperations.begin_create_or_update no longer has parameter parameters\n - Operation ReportOperations.begin_update has a new required parameter properties\n - Operation ReportOperations.begin_update no longer has parameter parameters\n - Operation SnapshotOperations.begin_download has a new required parameter body\n - Operation SnapshotOperations.begin_download no longer has parameter parameters\n - Removed operation group ReportsOperations\n - Removed operation group SnapshotsOperations\n\n## 1.0.0b1 (2022-11-15)\n\n* Initial Release\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Microsoft Azure Appcomplianceautomation 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": "2680b6aefb86de3f5cdeb1ab7dd39196e465a57e80efcea151418da361391ebf",
"md5": "9b24e533f1672be4384237d743f4dbe2",
"sha256": "2d0aa1bbb612e90f97a484bab6240f04e8cb28442fc277e47787e58dad6f53af"
},
"downloads": -1,
"filename": "azure_mgmt_appcomplianceautomation-1.0.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "9b24e533f1672be4384237d743f4dbe2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 107931,
"upload_time": "2024-06-27T07:22:15",
"upload_time_iso_8601": "2024-06-27T07:22:15.922612Z",
"url": "https://files.pythonhosted.org/packages/26/80/b6aefb86de3f5cdeb1ab7dd39196e465a57e80efcea151418da361391ebf/azure_mgmt_appcomplianceautomation-1.0.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a77eec55fe96d045e00293c76786453cf3c3d8ee8f94854c0bb437f571dcd496",
"md5": "5ece7dd1532db716a750802e53105717",
"sha256": "a3d610b5f65f48417af0e95f8272904ff17cf6bbfa65999d2531e8b4eec96c09"
},
"downloads": -1,
"filename": "azure-mgmt-appcomplianceautomation-1.0.0.tar.gz",
"has_sig": false,
"md5_digest": "5ece7dd1532db716a750802e53105717",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 78897,
"upload_time": "2024-06-27T07:22:13",
"upload_time_iso_8601": "2024-06-27T07:22:13.993844Z",
"url": "https://files.pythonhosted.org/packages/a7/7e/ec55fe96d045e00293c76786453cf3c3d8ee8f94854c0bb437f571dcd496/azure-mgmt-appcomplianceautomation-1.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-27 07:22:13",
"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-appcomplianceautomation"
}