airflow_client/client/apis/__init__.py (18 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # flake8: noqa # Import all APIs into this package. # If you have many APIs here with many many models used in each API this may # raise a `RecursionError`. # In order to avoid this, import only the API that you directly need like: # # from .api.config_api import ConfigApi # # or import this package, but before doing it, use: # # import sys # sys.setrecursionlimit(n) # Import APIs into API package: from airflow_client.client.api.config_api import ConfigApi from airflow_client.client.api.connection_api import ConnectionApi from airflow_client.client.api.dag_api import DAGApi from airflow_client.client.api.dag_run_api import DAGRunApi from airflow_client.client.api.dag_warning_api import DagWarningApi from airflow_client.client.api.dataset_api import DatasetApi from airflow_client.client.api.event_log_api import EventLogApi from airflow_client.client.api.import_error_api import ImportErrorApi from airflow_client.client.api.monitoring_api import MonitoringApi from airflow_client.client.api.permission_api import PermissionApi from airflow_client.client.api.plugin_api import PluginApi from airflow_client.client.api.pool_api import PoolApi from airflow_client.client.api.provider_api import ProviderApi from airflow_client.client.api.role_api import RoleApi from airflow_client.client.api.task_instance_api import TaskInstanceApi from airflow_client.client.api.user_api import UserApi from airflow_client.client.api.variable_api import VariableApi from airflow_client.client.api.x_com_api import XComApi