-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
28 lines (25 loc) · 927 Bytes
/
__init__.py
File metadata and controls
28 lines (25 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""
Zendesk Plugin
This plugin provides an interface to the Github v3 API.
The Github Hook extends the HttpHook and accepts both Basic and
Token Authentication. If both are available, the hook will use
the specified token, which should be in the following format in
the extras field: {"token":"XXXXXXXXXXXXXXXXXXXXX"}
The host value in the Hook should contain the following:
https://api.github.com/
The Github Operator provides support for the following endpoints:
Comments
Commits
Commit Comments
Issue Comments
Issues
Members
Organizations
Pull Requests
Repositories
"""
from airflow.plugins_manager import AirflowPlugin
from zendesk_plugin.operators.zendesk_to_gcs_operator import ZendeskToGCSOperator
class ZendeskPlugin(AirflowPlugin):
name = "zendesk_plugin"
operators = [ZendeskToGCSOperator]