airflow.secrets.local_filesystem
¶
与从本地文件检索连接和变量相关的对象。
模块内容¶
类¶
从本地文件检索连接对象和变量。 |
函数¶
返回 |
|
|
从文本文件加载变量。 |
|
使用 airflow.secrets.local_filesystem.load_connections_dict,此方法已弃用。 |
|
从文本文件加载连接。 |
属性¶
- airflow.secrets.local_filesystem.get_connection_parameter_names()[来源]¶
返回
airflow.models.connection.Connection
构造函数参数。
- airflow.secrets.local_filesystem.load_variables(file_path)[来源]¶
从文本文件加载变量。
支持
JSON
、YAML 和.env
文件。- 参数
file_path (str) – 将被处理的文件的位置。
- airflow.secrets.local_filesystem.load_connections(file_path)[来源]¶
使用 airflow.secrets.local_filesystem.load_connections_dict,此方法已弃用。
- airflow.secrets.local_filesystem.load_connections_dict(file_path)[来源]¶
从文本文件加载连接。
支持
JSON
、YAML 和.env
文件。
- class airflow.secrets.local_filesystem.LocalFilesystemBackend(variables_file_path=None, connections_file_path=None)[来源]¶
基类:
airflow.secrets.base_secrets.BaseSecretsBackend
,airflow.utils.log.logging_mixin.LoggingMixin
从本地文件检索连接对象和变量。
支持
JSON
、YAML 和.env
文件。- 参数