Coverage for mindsdb / integrations / handlers / azure_blob_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 container_name={ 

8 'type': ARG_TYPE.STR, 

9 'description': 'The name of your storage service account Container Name', 

10 'required': True, 

11 'label': 'Container Name' 

12 }, 

13 connection_string={ 

14 'type': ARG_TYPE.STR, 

15 'description': 'Connection String', 

16 'required': True, 

17 'label': 'Connection String', 

18 'secret': True 

19 } 

20) 

21 

22connection_args_example = OrderedDict( 

23 container_name='', 

24 connection_string='' 

25)