airflow.providers.dingding.hooks.dingding
¶
Module Contents¶
Classes¶
Send message using a DingTalk Custom Robot API. |
- class airflow.providers.dingding.hooks.dingding.DingdingHook(dingding_conn_id='dingding_default', message_type='text', message=None, at_mobiles=None, at_all=False, *args, **kwargs)[source]¶
Bases:
airflow.providers.http.hooks.http.HttpHook
Send message using a DingTalk Custom Robot API.
See also
- Parameters
dingding_conn_id – Dingding connection id that has access token in the password field, and optional host name in host field, if host not set than default
https://oapi.dingtalk.com
will use.message_type (str) – Message type you want to send to Dingding, support five type so far including
text
,link
,markdown
,actionCard
,feedCard
.message (str | dict | None) – The message send to chat group
at_mobiles (list[str] | None) – Remind specific users with this message
at_all (bool) – Remind all people in group or not. If True, will overwrite
at_mobiles