thousandeyes-sdk-python/thousandeyes-sdk-cloud-insights-integrations/docs/AzureMonitoringIntegrations.md
api-team-automation[bot] d4b7ca82b7
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#193)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-09-08 13:15:25 +01:00

32 lines
1.3 KiB
Markdown

# AzureMonitoringIntegrations
A HAL resource containing a list of Azure inventory and flow logs monitoring integrations.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**integrations** | [**List[AzureMonitoringIntegration]**](AzureMonitoringIntegration.md) | The list of Azure inventory and flow logs monitoring integrations. |
**links** | [**SelfLinks**](SelfLinks.md) | | [optional]
## Example
```python
from thousandeyes_sdk.cloud_insights_integrations.models.azure_monitoring_integrations import AzureMonitoringIntegrations
# TODO update the JSON string below
json = "{}"
# create an instance of AzureMonitoringIntegrations from a JSON string
azure_monitoring_integrations_instance = AzureMonitoringIntegrations.from_json(json)
# print the JSON string representation of the object
print(AzureMonitoringIntegrations.to_json())
# convert the object into a dict
azure_monitoring_integrations_dict = azure_monitoring_integrations_instance.to_dict()
# create an instance of AzureMonitoringIntegrations from a dict
azure_monitoring_integrations_from_dict = AzureMonitoringIntegrations.from_dict(azure_monitoring_integrations_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)