azure-mgmt-datadog


Nameazure-mgmt-datadog JSON
Version 2.1.0 PyPI version JSON
download
home_pagehttps://github.com/Azure/azure-sdk-for-python
SummaryMicrosoft Azure Datadog Management Client Library for Python
upload_time2023-10-23 07:21:42
maintainerNone
docs_urlNone
authorMicrosoft Corporation
requires_python>=3.7
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 Datadog Management Client Library.
This package has been tested with Python 3.7+.
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.7+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package

```bash
pip install azure-mgmt-datadog
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.datadog import MicrosoftDatadogClient
import os

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

## Examples

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

## 2.1.0 (2023-10-23)

### Features Added

  - Added operation group CreationSupportedOperations
  - Added operation group MonitoredSubscriptionsOperations
  - Model DatadogOrganizationProperties has a new parameter cspm
  - Model MonitorUpdateProperties has a new parameter cspm
  - Model MonitoringTagRulesProperties has a new parameter automuting

## 2.1.0b1 (2022-11-02)

### Other Changes

  - Added generated samples in github repo
  - Drop support for python<3.7.0

## 2.0.0 (2021-05-26)

**Features**

  - Model DatadogMonitorResourceUpdateParameters has a new parameter sku
  - Added operation MonitorsOperations.begin_update

**Breaking changes**

  - Removed operation MonitorsOperations.update

## 1.0.0 (2021-03-22)

**Features**

  - Model DatadogAgreementResource has a new parameter system_data
  - Model MonitoringTagRules has a new parameter system_data
  - Model DatadogSingleSignOnResource has a new parameter system_data
  - Model DatadogMonitorResource has a new parameter system_data

## 1.0.0b3 (2021-03-02)

**Features**

  - Model DatadogOrganizationProperties has a new parameter application_key
  - Model DatadogOrganizationProperties has a new parameter redirect_uri
  - Model DatadogOrganizationProperties has a new parameter api_key
  - Model MonitoringTagRulesProperties has a new parameter provisioning_state
  - Model DatadogSingleSignOnProperties has a new parameter provisioning_state
  - Added operation MarketplaceAgreementsOperations.create_or_update
  - Added operation MonitorsOperations.list_monitored_resources
  - Added operation MonitorsOperations.refresh_set_password_link
  - Added operation MonitorsOperations.get_default_key
  - Added operation MonitorsOperations.set_default_key
  - Added operation MonitorsOperations.list_api_keys
  - Added operation MonitorsOperations.list_hosts
  - Added operation MonitorsOperations.list_linked_resources

**Breaking changes**

  - Removed operation MarketplaceAgreementsOperations.create
  - Removed operation group RefreshSetPasswordOperations
  - Removed operation group HostsOperations
  - Removed operation group ApiKeysOperations
  - Removed operation group MonitoredResourcesOperations
  - Removed operation group LinkedResourcesOperations

## 1.0.0b2 (2020-11-17)

**Features**

  - Added operation group MarketplaceAgreementsOperations

## 1.0.0b1 (2020-10-14)

* Initial Release

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Azure/azure-sdk-for-python",
    "name": "azure-mgmt-datadog",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "azure,azure sdk",
    "author": "Microsoft Corporation",
    "author_email": "azpysdkhelp@microsoft.com",
    "download_url": "https://files.pythonhosted.org/packages/c8/e3/22de8b900367a6d9c04c0fb6023fdf3ef7e1f9f003bc437dc475e6c857b8/azure-mgmt-datadog-2.1.0.tar.gz",
    "platform": null,
    "description": "# Microsoft Azure SDK for Python\n\nThis is the Microsoft Azure Datadog Management Client Library.\nThis package has been tested with Python 3.7+.\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.7+ 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-datadog\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.datadog import MicrosoftDatadogClient\nimport os\n\nsub_id = os.getenv(\"AZURE_SUBSCRIPTION_ID\")\nclient = MicrosoftDatadogClient(credential=DefaultAzureCredential(), subscription_id=sub_id)\n```\n\n## Examples\n\nCode samples for this package can be found at:\n- [Search Datadog 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## 2.1.0 (2023-10-23)\n\n### Features Added\n\n  - Added operation group CreationSupportedOperations\n  - Added operation group MonitoredSubscriptionsOperations\n  - Model DatadogOrganizationProperties has a new parameter cspm\n  - Model MonitorUpdateProperties has a new parameter cspm\n  - Model MonitoringTagRulesProperties has a new parameter automuting\n\n## 2.1.0b1 (2022-11-02)\n\n### Other Changes\n\n  - Added generated samples in github repo\n  - Drop support for python<3.7.0\n\n## 2.0.0 (2021-05-26)\n\n**Features**\n\n  - Model DatadogMonitorResourceUpdateParameters has a new parameter sku\n  - Added operation MonitorsOperations.begin_update\n\n**Breaking changes**\n\n  - Removed operation MonitorsOperations.update\n\n## 1.0.0 (2021-03-22)\n\n**Features**\n\n  - Model DatadogAgreementResource has a new parameter system_data\n  - Model MonitoringTagRules has a new parameter system_data\n  - Model DatadogSingleSignOnResource has a new parameter system_data\n  - Model DatadogMonitorResource has a new parameter system_data\n\n## 1.0.0b3 (2021-03-02)\n\n**Features**\n\n  - Model DatadogOrganizationProperties has a new parameter application_key\n  - Model DatadogOrganizationProperties has a new parameter redirect_uri\n  - Model DatadogOrganizationProperties has a new parameter api_key\n  - Model MonitoringTagRulesProperties has a new parameter provisioning_state\n  - Model DatadogSingleSignOnProperties has a new parameter provisioning_state\n  - Added operation MarketplaceAgreementsOperations.create_or_update\n  - Added operation MonitorsOperations.list_monitored_resources\n  - Added operation MonitorsOperations.refresh_set_password_link\n  - Added operation MonitorsOperations.get_default_key\n  - Added operation MonitorsOperations.set_default_key\n  - Added operation MonitorsOperations.list_api_keys\n  - Added operation MonitorsOperations.list_hosts\n  - Added operation MonitorsOperations.list_linked_resources\n\n**Breaking changes**\n\n  - Removed operation MarketplaceAgreementsOperations.create\n  - Removed operation group RefreshSetPasswordOperations\n  - Removed operation group HostsOperations\n  - Removed operation group ApiKeysOperations\n  - Removed operation group MonitoredResourcesOperations\n  - Removed operation group LinkedResourcesOperations\n\n## 1.0.0b2 (2020-11-17)\n\n**Features**\n\n  - Added operation group MarketplaceAgreementsOperations\n\n## 1.0.0b1 (2020-10-14)\n\n* Initial Release\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "Microsoft Azure Datadog Management Client Library for Python",
    "version": "2.1.0",
    "project_urls": {
        "Homepage": "https://github.com/Azure/azure-sdk-for-python"
    },
    "split_keywords": [
        "azure",
        "azure sdk"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c727251bd6102a75b7c2c555752b92c3dc586c72197ef73ec6381e45e78bc65d",
                "md5": "0e22e79cb63288d73e401ffde8b83af4",
                "sha256": "d7db34e48624f3e229281b2812727eb61cd133f64f3b4f05761e447737cd0dc6"
            },
            "downloads": -1,
            "filename": "azure_mgmt_datadog-2.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0e22e79cb63288d73e401ffde8b83af4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 95963,
            "upload_time": "2023-10-23T07:21:45",
            "upload_time_iso_8601": "2023-10-23T07:21:45.997456Z",
            "url": "https://files.pythonhosted.org/packages/c7/27/251bd6102a75b7c2c555752b92c3dc586c72197ef73ec6381e45e78bc65d/azure_mgmt_datadog-2.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8e322de8b900367a6d9c04c0fb6023fdf3ef7e1f9f003bc437dc475e6c857b8",
                "md5": "b686f9122ca489e9fbc6e8e83f6ca4a4",
                "sha256": "493e383143d1e6f2a71a93805eef6133ef2d1a06e5d7416f0a14c1e54c83cc4d"
            },
            "downloads": -1,
            "filename": "azure-mgmt-datadog-2.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b686f9122ca489e9fbc6e8e83f6ca4a4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 66537,
            "upload_time": "2023-10-23T07:21:42",
            "upload_time_iso_8601": "2023-10-23T07:21:42.914338Z",
            "url": "https://files.pythonhosted.org/packages/c8/e3/22de8b900367a6d9c04c0fb6023fdf3ef7e1f9f003bc437dc475e6c857b8/azure-mgmt-datadog-2.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-23 07:21:42",
    "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-datadog"
}
        
Elapsed time: 0.17015s