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

3 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 credentials_url={ 

8 'type': ARG_TYPE.STR, 

9 'description': 'URL to Service Account Keys', 

10 'label': 'URL to Service Account Keys', 

11 }, 

12 credentials_file={ 

13 'type': ARG_TYPE.STR, 

14 'description': 'Location of Service Account Keys', 

15 'label': 'Path to Service Account Keys', 

16 }, 

17 credentials={ 

18 'type': ARG_TYPE.PATH, 

19 'description': 'Service Account Keys', 

20 'label': 'Upload Service Account Keys', 

21 }, 

22 code={ 

23 'type': ARG_TYPE.STR, 

24 'description': 'Code After Authorisation', 

25 'label': 'Code After Authorisation', 

26 }, 

27)