Skip to content

Updates for 3.0.0rc2 #129

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/dist
/tmp
/v1.yaml
/v2.yaml
/.coverage
/apache_airflow_client.egg-info/
/.idea
4 changes: 0 additions & 4 deletions airflow_client/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@
from airflow_client.client.models.dry_run_backfill_response import DryRunBackfillResponse
from airflow_client.client.models.event_log_collection_response import EventLogCollectionResponse
from airflow_client.client.models.event_log_response import EventLogResponse
from airflow_client.client.models.external_log_url_response import ExternalLogUrlResponse
from airflow_client.client.models.extra_link_collection_response import ExtraLinkCollectionResponse
from airflow_client.client.models.fast_api_app_response import FastAPIAppResponse
from airflow_client.client.models.fast_api_root_middleware_response import FastAPIRootMiddlewareResponse
Expand All @@ -142,11 +141,8 @@
from airflow_client.client.models.import_error_response import ImportErrorResponse
from airflow_client.client.models.job_collection_response import JobCollectionResponse
from airflow_client.client.models.job_response import JobResponse
from airflow_client.client.models.last_asset_event_response import LastAssetEventResponse
from airflow_client.client.models.patch_task_instance_body import PatchTaskInstanceBody
from airflow_client.client.models.plugin_collection_response import PluginCollectionResponse
from airflow_client.client.models.plugin_import_error_collection_response import PluginImportErrorCollectionResponse
from airflow_client.client.models.plugin_import_error_response import PluginImportErrorResponse
from airflow_client.client.models.plugin_response import PluginResponse
from airflow_client.client.models.pool_body import PoolBody
from airflow_client.client.models.pool_collection_response import PoolCollectionResponse
Expand Down
36 changes: 18 additions & 18 deletions airflow_client/client/api/asset_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1773,7 +1773,7 @@ def get_asset_aliases(
self,
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
name_pattern: Optional[StrictStr] = None,
order_by: Optional[StrictStr] = None,
_request_timeout: Union[
None,
Expand All @@ -1796,7 +1796,7 @@ def get_asset_aliases(
:type limit: int
:param offset:
:type offset: int
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param name_pattern:
:type name_pattern: str
:param order_by:
:type order_by: str
Expand Down Expand Up @@ -1856,7 +1856,7 @@ def get_asset_aliases_with_http_info(
self,
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
name_pattern: Optional[StrictStr] = None,
order_by: Optional[StrictStr] = None,
_request_timeout: Union[
None,
Expand All @@ -1879,7 +1879,7 @@ def get_asset_aliases_with_http_info(
:type limit: int
:param offset:
:type offset: int
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param name_pattern:
:type name_pattern: str
:param order_by:
:type order_by: str
Expand Down Expand Up @@ -1939,7 +1939,7 @@ def get_asset_aliases_without_preload_content(
self,
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
name_pattern: Optional[StrictStr] = None,
order_by: Optional[StrictStr] = None,
_request_timeout: Union[
None,
Expand All @@ -1962,7 +1962,7 @@ def get_asset_aliases_without_preload_content(
:type limit: int
:param offset:
:type offset: int
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param name_pattern:
:type name_pattern: str
:param order_by:
:type order_by: str
Expand Down Expand Up @@ -2835,8 +2835,8 @@ def get_assets(
self,
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
name_pattern: Optional[StrictStr] = None,
uri_pattern: Optional[StrictStr] = None,
dag_ids: Optional[List[StrictStr]] = None,
only_active: Optional[StrictBool] = None,
order_by: Optional[StrictStr] = None,
Expand All @@ -2861,9 +2861,9 @@ def get_assets(
:type limit: int
:param offset:
:type offset: int
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param name_pattern:
:type name_pattern: str
:param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param uri_pattern:
:type uri_pattern: str
:param dag_ids:
:type dag_ids: List[str]
Expand Down Expand Up @@ -2930,8 +2930,8 @@ def get_assets_with_http_info(
self,
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
name_pattern: Optional[StrictStr] = None,
uri_pattern: Optional[StrictStr] = None,
dag_ids: Optional[List[StrictStr]] = None,
only_active: Optional[StrictBool] = None,
order_by: Optional[StrictStr] = None,
Expand All @@ -2956,9 +2956,9 @@ def get_assets_with_http_info(
:type limit: int
:param offset:
:type offset: int
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param name_pattern:
:type name_pattern: str
:param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param uri_pattern:
:type uri_pattern: str
:param dag_ids:
:type dag_ids: List[str]
Expand Down Expand Up @@ -3025,8 +3025,8 @@ def get_assets_without_preload_content(
self,
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
name_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
uri_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
name_pattern: Optional[StrictStr] = None,
uri_pattern: Optional[StrictStr] = None,
dag_ids: Optional[List[StrictStr]] = None,
only_active: Optional[StrictBool] = None,
order_by: Optional[StrictStr] = None,
Expand All @@ -3051,9 +3051,9 @@ def get_assets_without_preload_content(
:type limit: int
:param offset:
:type offset: int
:param name_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param name_pattern:
:type name_pattern: str
:param uri_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param uri_pattern:
:type uri_pattern: str
:param dag_ids:
:type dag_ids: List[str]
Expand Down
12 changes: 6 additions & 6 deletions airflow_client/client/api/connection_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1131,7 +1131,7 @@ def get_connections(
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
order_by: Optional[StrictStr] = None,
connection_id_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
connection_id_pattern: Optional[StrictStr] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
Expand All @@ -1155,7 +1155,7 @@ def get_connections(
:type offset: int
:param order_by:
:type order_by: str
:param connection_id_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param connection_id_pattern:
:type connection_id_pattern: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
Expand Down Expand Up @@ -1214,7 +1214,7 @@ def get_connections_with_http_info(
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
order_by: Optional[StrictStr] = None,
connection_id_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
connection_id_pattern: Optional[StrictStr] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
Expand All @@ -1238,7 +1238,7 @@ def get_connections_with_http_info(
:type offset: int
:param order_by:
:type order_by: str
:param connection_id_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param connection_id_pattern:
:type connection_id_pattern: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
Expand Down Expand Up @@ -1297,7 +1297,7 @@ def get_connections_without_preload_content(
limit: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
offset: Optional[Annotated[int, Field(strict=True, ge=0)]] = None,
order_by: Optional[StrictStr] = None,
connection_id_pattern: Annotated[Optional[StrictStr], Field(description="SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.")] = None,
connection_id_pattern: Optional[StrictStr] = None,
_request_timeout: Union[
None,
Annotated[StrictFloat, Field(gt=0)],
Expand All @@ -1321,7 +1321,7 @@ def get_connections_without_preload_content(
:type offset: int
:param order_by:
:type order_by: str
:param connection_id_pattern: SQL LIKE expression — use `%` / `_` wildcards (e.g. `%customer_%`). Regular expressions are **not** supported.
:param connection_id_pattern:
:type connection_id_pattern: str
:param _request_timeout: timeout setting for this request. If one
number provided, it will be total request
Expand Down
Loading
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy