Coverage for mindsdb / integrations / handlers / zendesk_handler / connection_args.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-21 00:36 +0000

1from collections import OrderedDict 

2 

3from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE 

4 

5 

6connection_args = OrderedDict( 

7 api_key={ 

8 "type": ARG_TYPE.STR, 

9 "description": "API key", 

10 "required": True, 

11 "label": "api_key", 

12 "secret": True 

13 }, 

14 sub_domain={ 

15 "type": ARG_TYPE.STR, 

16 "description": "Sub-domain", 

17 "required": True, 

18 "label": "sub_domain", 

19 "secret": True 

20 }, 

21 email={ 

22 "type": ARG_TYPE.STR, 

23 "description": "Email ID", 

24 "required": True, 

25 "label": "email" 

26 } 

27) 

28 

29connection_args_example = OrderedDict( 

30 api_key="api_key", 

31 sub_domain="sub_domain", 

32 email="email" 

33)