azure-mgmt-networkanalytics


Nameazure-mgmt-networkanalytics JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/Azure/azure-sdk-for-python
SummaryMicrosoft Azure Networkanalytics Management Client Library for Python
upload_time2024-01-26 04:18:01
maintainerNone
docs_urlNone
authorMicrosoft Corporation
requires_python>=3.8
licenseMIT License
keywords azure azure sdk
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # Microsoft Azure SDK for Python

This is the Microsoft Azure Networkanalytics 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-networkanalytics
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.networkanalytics import NetworkAnalyticsMgmtClient
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = NetworkAnalyticsMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
```

## Examples

Code samples for this package can be found at:
- [Search Networkanalytics 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-01-26)

### Features Added

  - Model DataProduct has a new parameter properties
  - Model DataProductUpdate has a new parameter properties
  - Model DataProductsCatalog has a new parameter properties
  - Model DataType has a new parameter properties
  - Model DataTypeUpdate has a new parameter properties

### Breaking Changes

  - Model DataProduct no longer has parameter available_minor_versions
  - Model DataProduct no longer has parameter consumption_endpoints
  - Model DataProduct no longer has parameter current_minor_version
  - Model DataProduct no longer has parameter customer_encryption_key
  - Model DataProduct no longer has parameter customer_managed_key_encryption_enabled
  - Model DataProduct no longer has parameter documentation
  - Model DataProduct no longer has parameter key_vault_url
  - Model DataProduct no longer has parameter major_version
  - Model DataProduct no longer has parameter managed_resource_group_configuration
  - Model DataProduct no longer has parameter networkacls
  - Model DataProduct no longer has parameter owners
  - Model DataProduct no longer has parameter private_links_enabled
  - Model DataProduct no longer has parameter product
  - Model DataProduct no longer has parameter provisioning_state
  - Model DataProduct no longer has parameter public_network_access
  - Model DataProduct no longer has parameter publisher
  - Model DataProduct no longer has parameter purview_account
  - Model DataProduct no longer has parameter purview_collection
  - Model DataProduct no longer has parameter redundancy
  - Model DataProduct no longer has parameter resource_guid
  - Model DataProductUpdate no longer has parameter current_minor_version
  - Model DataProductUpdate no longer has parameter owners
  - Model DataProductUpdate no longer has parameter private_links_enabled
  - Model DataProductUpdate no longer has parameter purview_account
  - Model DataProductUpdate no longer has parameter purview_collection
  - Model DataProductsCatalog no longer has parameter provisioning_state
  - Model DataProductsCatalog no longer has parameter publishers
  - Model DataType no longer has parameter database_cache_retention
  - Model DataType no longer has parameter database_retention
  - Model DataType no longer has parameter provisioning_state
  - Model DataType no longer has parameter state
  - Model DataType no longer has parameter state_reason
  - Model DataType no longer has parameter storage_output_retention
  - Model DataType no longer has parameter visualization_url
  - Model DataTypeUpdate no longer has parameter database_cache_retention
  - Model DataTypeUpdate no longer has parameter database_retention
  - Model DataTypeUpdate no longer has parameter state
  - Model DataTypeUpdate no longer has parameter storage_output_retention

## 1.0.0b1 (2023-11-28)

* Initial Release

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Azure/azure-sdk-for-python",
    "name": "azure-mgmt-networkanalytics",
    "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/4e/5a/4b22361ed3d50eabc3894b0b549fda2c8daae71e5351282ce7084e6a1fe3/azure-mgmt-networkanalytics-1.0.0.tar.gz",
    "platform": null,
    "description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Networkanalytics 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-networkanalytics\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.networkanalytics import NetworkAnalyticsMgmtClient\nimport os\n\nsub_id = os.getenv(\"AZURE_SUBSCRIPTION_ID\")\nclient = NetworkAnalyticsMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)\n```\n\n## Examples\n\nCode samples for this package can be found at:\n- [Search Networkanalytics 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-01-26)\n\n### Features Added\n\n  - Model DataProduct has a new parameter properties\n  - Model DataProductUpdate has a new parameter properties\n  - Model DataProductsCatalog has a new parameter properties\n  - Model DataType has a new parameter properties\n  - Model DataTypeUpdate has a new parameter properties\n\n### Breaking Changes\n\n  - Model DataProduct no longer has parameter available_minor_versions\n  - Model DataProduct no longer has parameter consumption_endpoints\n  - Model DataProduct no longer has parameter current_minor_version\n  - Model DataProduct no longer has parameter customer_encryption_key\n  - Model DataProduct no longer has parameter customer_managed_key_encryption_enabled\n  - Model DataProduct no longer has parameter documentation\n  - Model DataProduct no longer has parameter key_vault_url\n  - Model DataProduct no longer has parameter major_version\n  - Model DataProduct no longer has parameter managed_resource_group_configuration\n  - Model DataProduct no longer has parameter networkacls\n  - Model DataProduct no longer has parameter owners\n  - Model DataProduct no longer has parameter private_links_enabled\n  - Model DataProduct no longer has parameter product\n  - Model DataProduct no longer has parameter provisioning_state\n  - Model DataProduct no longer has parameter public_network_access\n  - Model DataProduct no longer has parameter publisher\n  - Model DataProduct no longer has parameter purview_account\n  - Model DataProduct no longer has parameter purview_collection\n  - Model DataProduct no longer has parameter redundancy\n  - Model DataProduct no longer has parameter resource_guid\n  - Model DataProductUpdate no longer has parameter current_minor_version\n  - Model DataProductUpdate no longer has parameter owners\n  - Model DataProductUpdate no longer has parameter private_links_enabled\n  - Model DataProductUpdate no longer has parameter purview_account\n  - Model DataProductUpdate no longer has parameter purview_collection\n  - Model DataProductsCatalog no longer has parameter provisioning_state\n  - Model DataProductsCatalog no longer has parameter publishers\n  - Model DataType no longer has parameter database_cache_retention\n  - Model DataType no longer has parameter database_retention\n  - Model DataType no longer has parameter provisioning_state\n  - Model DataType no longer has parameter state\n  - Model DataType no longer has parameter state_reason\n  - Model DataType no longer has parameter storage_output_retention\n  - Model DataType no longer has parameter visualization_url\n  - Model DataTypeUpdate no longer has parameter database_cache_retention\n  - Model DataTypeUpdate no longer has parameter database_retention\n  - Model DataTypeUpdate no longer has parameter state\n  - Model DataTypeUpdate no longer has parameter storage_output_retention\n\n## 1.0.0b1 (2023-11-28)\n\n* Initial Release\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Microsoft Azure Networkanalytics 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": "61e2b34760712007365cc2392d36ab3b71e863b1d123aa3e2252c529adc081dc",
                "md5": "be8865985fac30838a7101c756cac128",
                "sha256": "1a545ae5fff082dc8379dc65cec24fc08e1df1f96c1f3b5a404d155e3ca087a6"
            },
            "downloads": -1,
            "filename": "azure_mgmt_networkanalytics-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "be8865985fac30838a7101c756cac128",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 78263,
            "upload_time": "2024-01-26T04:18:06",
            "upload_time_iso_8601": "2024-01-26T04:18:06.710507Z",
            "url": "https://files.pythonhosted.org/packages/61/e2/b34760712007365cc2392d36ab3b71e863b1d123aa3e2252c529adc081dc/azure_mgmt_networkanalytics-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e5a4b22361ed3d50eabc3894b0b549fda2c8daae71e5351282ce7084e6a1fe3",
                "md5": "d691252d0edbb806f0c5de1959c83dbf",
                "sha256": "8f12e5f7163f994dd3b5b69eb210fb0e86efc4373fb89c44cef5344884194586"
            },
            "downloads": -1,
            "filename": "azure-mgmt-networkanalytics-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d691252d0edbb806f0c5de1959c83dbf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 63889,
            "upload_time": "2024-01-26T04:18:01",
            "upload_time_iso_8601": "2024-01-26T04:18:01.722000Z",
            "url": "https://files.pythonhosted.org/packages/4e/5a/4b22361ed3d50eabc3894b0b549fda2c8daae71e5351282ce7084e6a1fe3/azure-mgmt-networkanalytics-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-26 04:18:01",
    "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-networkanalytics"
}
        
Elapsed time: 0.30190s