Source code for contentful_management.webhook_webhooks_health_proxy
from .webhook_resource_proxy import WebhookResourceProxy
from .webhooks_health_proxy import WebhooksHealthProxy
"""
contentful_management.webhook_webhooks_health_proxy
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This module implements the WebhookWebhooksHealthProxy class.
API reference: https://www.contentful.com/developers/docs/references/content-management-api/#/reference/webhook-calls/webhook-health
:copyright: (c) 2018 by Contentful GmbH.
:license: MIT, see LICENSE for more details.
"""
[docs]class WebhookWebhooksHealthProxy(WebhookResourceProxy):
    """
    API reference: https://www.contentful.com/developers/docs/references/content-management-api/#/reference/webhook-calls/webhook-health
    """
    def _resource_proxy_class(self):
        return WebhooksHealthProxy
[docs]    def find(self, *args, **kwargs):
        """
        Gets webhook health.
        """
        return self.all()