How to use the azure-monitor.azure.monitor.models.log_profile_resource.LogProfileResource function in azure-monitor

To help you get started, we’ve selected a few azure-monitor examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-sdk-for-python / azure-monitor / azure / monitor / models / log_profile_resource.py View on Github external
def __init__(self, location, locations, name=None, tags=None, storage_account_id=None, service_bus_rule_id=None, categories=None, retention_policy=None):
        super(LogProfileResource, self).__init__(name=name, location=location, tags=tags)
        self.storage_account_id = storage_account_id
        self.service_bus_rule_id = service_bus_rule_id
        self.locations = locations
        self.categories = categories
        self.retention_policy = retention_policy