mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-04-23 02:34:48 -05:00
Chore: Fix Python linters, regenerate (#2966)
* chore: regenerate python * chore: bump and pin linter versions * chore: run the linters * fix: replace deprecated `grpc-stubs` with `types-grpcio` * chore: add some fixmes * chore: fix grpc version * fix: patched file import order
This commit is contained in:
@@ -8,11 +8,20 @@ def prepend_import(content: str, import_statement: str) -> str:
|
||||
if import_statement in content:
|
||||
return content
|
||||
|
||||
future_import_pattern = r"^from __future__ import [^\n]+\n"
|
||||
future_imports = re.findall(future_import_pattern, content, re.MULTILINE)
|
||||
content = re.sub(future_import_pattern, "", content, flags=re.MULTILINE)
|
||||
|
||||
match = re.search(r"^import\s+|^from\s+", content, re.MULTILINE)
|
||||
insert_position = match.start() if match else 0
|
||||
|
||||
future_block = "".join(future_imports)
|
||||
return (
|
||||
content[:insert_position] + import_statement + "\n" + content[insert_position:]
|
||||
content[:insert_position]
|
||||
+ future_block
|
||||
+ import_statement
|
||||
+ "\n"
|
||||
+ content[insert_position:]
|
||||
)
|
||||
|
||||
|
||||
|
||||
@@ -56,8 +56,7 @@ cp $tmp_dir/hatchet_sdk/clients/rest/api/__init__.py $dst_dir/api/__init__.py
|
||||
rm -rf $tmp_dir
|
||||
|
||||
|
||||
MIN_GRPCIO_VERSION=$(grep -A 1 'grpcio =' pyproject.toml | grep 'version' | sed -E 's/.*">=([0-9]+\.[0-9]+\.[0-9]+).*/\1/' | sort -V | head -n 1
|
||||
)
|
||||
MIN_GRPCIO_VERSION=$(grep '^grpcio = ' pyproject.toml | cut -d'"' -f2 | tr -d '^')
|
||||
|
||||
poetry add "grpcio@$MIN_GRPCIO_VERSION" "grpcio-tools@$MIN_GRPCIO_VERSION"
|
||||
|
||||
|
||||
@@ -107,7 +107,8 @@ class ActionListener:
|
||||
|
||||
try:
|
||||
logger.debug("sending heartbeat")
|
||||
await self.aio_client.Heartbeat(
|
||||
# fixme: figure out how to get typing right here
|
||||
await self.aio_client.Heartbeat( # type: ignore[misc]
|
||||
HeartbeatRequest(
|
||||
worker_id=self.worker_id,
|
||||
heartbeat_at=proto_timestamp_now(),
|
||||
|
||||
@@ -68,7 +68,8 @@ class DispatcherClient:
|
||||
|
||||
response = cast(
|
||||
WorkerRegisterResponse,
|
||||
await self.aio_client.Register(
|
||||
# fixme: figure out how to get typing right here
|
||||
await self.aio_client.Register( # type: ignore[misc]
|
||||
WorkerRegisterRequest(
|
||||
worker_name=req.worker_name,
|
||||
actions=req.actions,
|
||||
@@ -146,7 +147,8 @@ class DispatcherClient:
|
||||
|
||||
return cast(
|
||||
grpc.aio.UnaryUnaryCall[StepActionEvent, ActionEventResponse],
|
||||
await send_step_action_event(
|
||||
# fixme: figure out how to get typing right here
|
||||
await send_step_action_event( # type: ignore[misc]
|
||||
event,
|
||||
metadata=get_metadata(self.token),
|
||||
),
|
||||
@@ -220,7 +222,8 @@ class DispatcherClient:
|
||||
else:
|
||||
worker_labels[key] = WorkerLabels(str_value=str(value))
|
||||
|
||||
await self.aio_client.UpsertWorkerLabels(
|
||||
# fixme: figure out how to get typing right here
|
||||
await self.aio_client.UpsertWorkerLabels( # type: ignore[misc]
|
||||
UpsertWorkerLabelsRequest(worker_id=worker_id, labels=worker_labels),
|
||||
timeout=DEFAULT_REGISTER_TIMEOUT,
|
||||
metadata=get_metadata(self.token),
|
||||
|
||||
@@ -3,23 +3,21 @@
|
||||
# flake8: noqa
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
__version__ = "1.0.0"
|
||||
|
||||
# import apis into sdk package
|
||||
from hatchet_sdk.clients.rest.api.api_token_api import APITokenApi
|
||||
from hatchet_sdk.clients.rest.api.cel_api import CELApi
|
||||
from hatchet_sdk.clients.rest.api.default_api import DefaultApi
|
||||
from hatchet_sdk.clients.rest.api.event_api import EventApi
|
||||
from hatchet_sdk.clients.rest.api.filter_api import FilterApi
|
||||
from hatchet_sdk.clients.rest.api.github_api import GithubApi
|
||||
@@ -27,8 +25,8 @@ from hatchet_sdk.clients.rest.api.healthcheck_api import HealthcheckApi
|
||||
from hatchet_sdk.clients.rest.api.log_api import LogApi
|
||||
from hatchet_sdk.clients.rest.api.metadata_api import MetadataApi
|
||||
from hatchet_sdk.clients.rest.api.rate_limits_api import RateLimitsApi
|
||||
from hatchet_sdk.clients.rest.api.slack_api import SlackApi
|
||||
from hatchet_sdk.clients.rest.api.sns_api import SNSApi
|
||||
from hatchet_sdk.clients.rest.api.slack_api import SlackApi
|
||||
from hatchet_sdk.clients.rest.api.step_run_api import StepRunApi
|
||||
from hatchet_sdk.clients.rest.api.task_api import TaskApi
|
||||
from hatchet_sdk.clients.rest.api.tenant_api import TenantApi
|
||||
@@ -38,20 +36,18 @@ from hatchet_sdk.clients.rest.api.worker_api import WorkerApi
|
||||
from hatchet_sdk.clients.rest.api.workflow_api import WorkflowApi
|
||||
from hatchet_sdk.clients.rest.api.workflow_run_api import WorkflowRunApi
|
||||
from hatchet_sdk.clients.rest.api.workflow_runs_api import WorkflowRunsApi
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient
|
||||
from hatchet_sdk.clients.rest.api.default_api import DefaultApi
|
||||
|
||||
# import ApiClient
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient
|
||||
from hatchet_sdk.clients.rest.configuration import Configuration
|
||||
from hatchet_sdk.clients.rest.exceptions import (
|
||||
ApiAttributeError,
|
||||
ApiException,
|
||||
ApiKeyError,
|
||||
ApiTypeError,
|
||||
ApiValueError,
|
||||
OpenApiException,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.accept_invite_request import AcceptInviteRequest
|
||||
from hatchet_sdk.clients.rest.exceptions import OpenApiException
|
||||
from hatchet_sdk.clients.rest.exceptions import ApiTypeError
|
||||
from hatchet_sdk.clients.rest.exceptions import ApiValueError
|
||||
from hatchet_sdk.clients.rest.exceptions import ApiKeyError
|
||||
from hatchet_sdk.clients.rest.exceptions import ApiAttributeError
|
||||
from hatchet_sdk.clients.rest.exceptions import ApiException
|
||||
|
||||
# import models into sdk package
|
||||
from hatchet_sdk.clients.rest.models.api_error import APIError
|
||||
@@ -62,6 +58,7 @@ from hatchet_sdk.clients.rest.models.api_meta_integration import APIMetaIntegrat
|
||||
from hatchet_sdk.clients.rest.models.api_meta_posthog import APIMetaPosthog
|
||||
from hatchet_sdk.clients.rest.models.api_resource_meta import APIResourceMeta
|
||||
from hatchet_sdk.clients.rest.models.api_token import APIToken
|
||||
from hatchet_sdk.clients.rest.models.accept_invite_request import AcceptInviteRequest
|
||||
from hatchet_sdk.clients.rest.models.bulk_create_event_request import (
|
||||
BulkCreateEventRequest,
|
||||
)
|
||||
@@ -131,8 +128,8 @@ from hatchet_sdk.clients.rest.models.list_api_tokens_response import (
|
||||
from hatchet_sdk.clients.rest.models.list_pull_requests_response import (
|
||||
ListPullRequestsResponse,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.list_slack_webhooks import ListSlackWebhooks
|
||||
from hatchet_sdk.clients.rest.models.list_sns_integrations import ListSNSIntegrations
|
||||
from hatchet_sdk.clients.rest.models.list_slack_webhooks import ListSlackWebhooks
|
||||
from hatchet_sdk.clients.rest.models.log_line import LogLine
|
||||
from hatchet_sdk.clients.rest.models.log_line_level import LogLineLevel
|
||||
from hatchet_sdk.clients.rest.models.log_line_list import LogLineList
|
||||
@@ -163,6 +160,7 @@ from hatchet_sdk.clients.rest.models.replay_workflow_runs_response import (
|
||||
ReplayWorkflowRunsResponse,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.rerun_step_run_request import RerunStepRunRequest
|
||||
from hatchet_sdk.clients.rest.models.sns_integration import SNSIntegration
|
||||
from hatchet_sdk.clients.rest.models.schedule_workflow_run_request import (
|
||||
ScheduleWorkflowRunRequest,
|
||||
)
|
||||
@@ -200,7 +198,6 @@ from hatchet_sdk.clients.rest.models.scheduled_workflows_order_by_field import (
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.semaphore_slots import SemaphoreSlots
|
||||
from hatchet_sdk.clients.rest.models.slack_webhook import SlackWebhook
|
||||
from hatchet_sdk.clients.rest.models.sns_integration import SNSIntegration
|
||||
from hatchet_sdk.clients.rest.models.step import Step
|
||||
from hatchet_sdk.clients.rest.models.step_run import StepRun
|
||||
from hatchet_sdk.clients.rest.models.step_run_archive import StepRunArchive
|
||||
@@ -268,13 +265,13 @@ from hatchet_sdk.clients.rest.models.user_tenant_memberships_list import (
|
||||
UserTenantMembershipsList,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.user_tenant_public import UserTenantPublic
|
||||
from hatchet_sdk.clients.rest.models.v1_cancel_task_request import V1CancelTaskRequest
|
||||
from hatchet_sdk.clients.rest.models.v1_cancelled_tasks import V1CancelledTasks
|
||||
from hatchet_sdk.clients.rest.models.v1_cel_debug_request import V1CELDebugRequest
|
||||
from hatchet_sdk.clients.rest.models.v1_cel_debug_response import V1CELDebugResponse
|
||||
from hatchet_sdk.clients.rest.models.v1_cel_debug_response_status import (
|
||||
V1CELDebugResponseStatus,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.v1_cancel_task_request import V1CancelTaskRequest
|
||||
from hatchet_sdk.clients.rest.models.v1_cancelled_tasks import V1CancelledTasks
|
||||
from hatchet_sdk.clients.rest.models.v1_create_filter_request import (
|
||||
V1CreateFilterRequest,
|
||||
)
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
# import apis into api package
|
||||
from hatchet_sdk.clients.rest.api.api_token_api import APITokenApi
|
||||
from hatchet_sdk.clients.rest.api.cel_api import CELApi
|
||||
from hatchet_sdk.clients.rest.api.default_api import DefaultApi
|
||||
from hatchet_sdk.clients.rest.api.event_api import EventApi
|
||||
from hatchet_sdk.clients.rest.api.filter_api import FilterApi
|
||||
from hatchet_sdk.clients.rest.api.github_api import GithubApi
|
||||
@@ -11,8 +10,8 @@ from hatchet_sdk.clients.rest.api.healthcheck_api import HealthcheckApi
|
||||
from hatchet_sdk.clients.rest.api.log_api import LogApi
|
||||
from hatchet_sdk.clients.rest.api.metadata_api import MetadataApi
|
||||
from hatchet_sdk.clients.rest.api.rate_limits_api import RateLimitsApi
|
||||
from hatchet_sdk.clients.rest.api.slack_api import SlackApi
|
||||
from hatchet_sdk.clients.rest.api.sns_api import SNSApi
|
||||
from hatchet_sdk.clients.rest.api.slack_api import SlackApi
|
||||
from hatchet_sdk.clients.rest.api.step_run_api import StepRunApi
|
||||
from hatchet_sdk.clients.rest.api.task_api import TaskApi
|
||||
from hatchet_sdk.clients.rest.api.tenant_api import TenantApi
|
||||
@@ -22,3 +21,4 @@ from hatchet_sdk.clients.rest.api.worker_api import WorkerApi
|
||||
from hatchet_sdk.clients.rest.api.workflow_api import WorkflowApi
|
||||
from hatchet_sdk.clients.rest.api.workflow_run_api import WorkflowRunApi
|
||||
from hatchet_sdk.clients.rest.api.workflow_runs_api import WorkflowRunsApi
|
||||
from hatchet_sdk.clients.rest.api.default_api import DefaultApi
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from pydantic import Field
|
||||
from typing import Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.create_api_token_request import (
|
||||
CreateAPITokenRequest,
|
||||
)
|
||||
@@ -28,6 +28,9 @@ from hatchet_sdk.clients.rest.models.create_api_token_response import (
|
||||
from hatchet_sdk.clients.rest.models.list_api_tokens_response import (
|
||||
ListAPITokensResponse,
|
||||
)
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,26 +1,28 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from pydantic import Field
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.v1_cel_debug_request import V1CELDebugRequest
|
||||
from hatchet_sdk.clients.rest.models.v1_cel_debug_response import V1CELDebugResponse
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.models.v1_cel_debug_request import V1CELDebugRequest
|
||||
from hatchet_sdk.clients.rest.models.v1_cel_debug_response import V1CELDebugResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from pydantic import Field
|
||||
from typing import Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.info_get_version200_response import (
|
||||
InfoGetVersion200Response,
|
||||
)
|
||||
@@ -36,6 +36,9 @@ from hatchet_sdk.clients.rest.models.webhook_worker_list_response import (
|
||||
from hatchet_sdk.clients.rest.models.webhook_worker_request_list_response import (
|
||||
WebhookWorkerRequestListResponse,
|
||||
)
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from datetime import datetime
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from datetime import datetime
|
||||
from pydantic import Field, StrictInt, StrictStr
|
||||
from typing import List, Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.bulk_create_event_request import (
|
||||
BulkCreateEventRequest,
|
||||
)
|
||||
@@ -42,6 +42,9 @@ from hatchet_sdk.clients.rest.models.v1_event import V1Event
|
||||
from hatchet_sdk.clients.rest.models.v1_event_list import V1EventList
|
||||
from hatchet_sdk.clients.rest.models.v1_task_status import V1TaskStatus
|
||||
from hatchet_sdk.clients.rest.models.workflow_run_status import WorkflowRunStatus
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from pydantic import Field, StrictInt, StrictStr
|
||||
from typing import List, Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.v1_create_filter_request import (
|
||||
V1CreateFilterRequest,
|
||||
)
|
||||
@@ -27,6 +27,9 @@ from hatchet_sdk.clients.rest.models.v1_filter_list import V1FilterList
|
||||
from hatchet_sdk.clients.rest.models.v1_update_filter_request import (
|
||||
V1UpdateFilterRequest,
|
||||
)
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,20 +1,22 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from pydantic import Field
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from datetime import datetime
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from datetime import datetime
|
||||
from pydantic import Field, StrictInt, StrictStr
|
||||
from typing import List, Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.log_line_level import LogLineLevel
|
||||
from hatchet_sdk.clients.rest.models.log_line_list import LogLineList
|
||||
from hatchet_sdk.clients.rest.models.log_line_order_by_direction import (
|
||||
@@ -31,6 +31,9 @@ from hatchet_sdk.clients.rest.models.v1_log_line_list import V1LogLineList
|
||||
from hatchet_sdk.clients.rest.models.v1_log_line_order_by_direction import (
|
||||
V1LogLineOrderByDirection,
|
||||
)
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,27 +1,28 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from typing import List
|
||||
from hatchet_sdk.clients.rest.models.api_errors import APIErrors
|
||||
from hatchet_sdk.clients.rest.models.api_meta import APIMeta
|
||||
from hatchet_sdk.clients.rest.models.api_meta_integration import APIMetaIntegration
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from pydantic import Field, StrictInt, StrictStr
|
||||
from typing import Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.rate_limit_list import RateLimitList
|
||||
from hatchet_sdk.clients.rest.models.rate_limit_order_by_direction import (
|
||||
RateLimitOrderByDirection,
|
||||
@@ -26,6 +26,9 @@ from hatchet_sdk.clients.rest.models.rate_limit_order_by_direction import (
|
||||
from hatchet_sdk.clients.rest.models.rate_limit_order_by_field import (
|
||||
RateLimitOrderByField,
|
||||
)
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,25 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from pydantic import Field
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.list_slack_webhooks import ListSlackWebhooks
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.models.list_slack_webhooks import ListSlackWebhooks
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,29 +1,32 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from pydantic import Field
|
||||
from typing import Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.create_sns_integration_request import (
|
||||
CreateSNSIntegrationRequest,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.list_sns_integrations import ListSNSIntegrations
|
||||
from hatchet_sdk.clients.rest.models.sns_integration import SNSIntegration
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,28 +1,31 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from pydantic import Field, StrictInt
|
||||
from typing import Any, Dict, Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.rerun_step_run_request import RerunStepRunRequest
|
||||
from hatchet_sdk.clients.rest.models.step_run import StepRun
|
||||
from hatchet_sdk.clients.rest.models.step_run_archive_list import StepRunArchiveList
|
||||
from hatchet_sdk.clients.rest.models.step_run_event_list import StepRunEventList
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from datetime import datetime
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from datetime import datetime
|
||||
from pydantic import Field, StrictInt, StrictStr
|
||||
from typing import List, Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.v1_cancel_task_request import V1CancelTaskRequest
|
||||
from hatchet_sdk.clients.rest.models.v1_cancelled_tasks import V1CancelledTasks
|
||||
from hatchet_sdk.clients.rest.models.v1_dag_children import V1DagChildren
|
||||
@@ -29,6 +29,9 @@ from hatchet_sdk.clients.rest.models.v1_task_event_list import V1TaskEventList
|
||||
from hatchet_sdk.clients.rest.models.v1_task_point_metrics import V1TaskPointMetrics
|
||||
from hatchet_sdk.clients.rest.models.v1_task_run_metric import V1TaskRunMetric
|
||||
from hatchet_sdk.clients.rest.models.v1_task_summary import V1TaskSummary
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from pydantic import Field, StrictStr
|
||||
from typing import Dict, Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.accept_invite_request import AcceptInviteRequest
|
||||
from hatchet_sdk.clients.rest.models.create_tenant_alert_email_group_request import (
|
||||
CreateTenantAlertEmailGroupRequest,
|
||||
@@ -54,6 +54,9 @@ from hatchet_sdk.clients.rest.models.update_tenant_member_request import (
|
||||
UpdateTenantMemberRequest,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.update_tenant_request import UpdateTenantRequest
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from pydantic import Field
|
||||
from typing import Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.user import User
|
||||
from hatchet_sdk.clients.rest.models.user_change_password_request import (
|
||||
UserChangePasswordRequest,
|
||||
@@ -28,6 +28,9 @@ from hatchet_sdk.clients.rest.models.user_register_request import UserRegisterRe
|
||||
from hatchet_sdk.clients.rest.models.user_tenant_memberships_list import (
|
||||
UserTenantMembershipsList,
|
||||
)
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from pydantic import Field, StrictInt, StrictStr
|
||||
from typing import Any, Dict, List, Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.v1_create_webhook_request import (
|
||||
V1CreateWebhookRequest,
|
||||
)
|
||||
@@ -28,6 +28,9 @@ from hatchet_sdk.clients.rest.models.v1_update_webhook_request import (
|
||||
from hatchet_sdk.clients.rest.models.v1_webhook import V1Webhook
|
||||
from hatchet_sdk.clients.rest.models.v1_webhook_list import V1WebhookList
|
||||
from hatchet_sdk.clients.rest.models.v1_webhook_source_name import V1WebhookSourceName
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,27 +1,29 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from pydantic import Field
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.update_worker_request import UpdateWorkerRequest
|
||||
from hatchet_sdk.clients.rest.models.worker import Worker
|
||||
from hatchet_sdk.clients.rest.models.worker_list import WorkerList
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from datetime import datetime
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from datetime import datetime
|
||||
from pydantic import Field, StrictInt, StrictStr
|
||||
from typing import List, Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.cron_workflows import CronWorkflows
|
||||
from hatchet_sdk.clients.rest.models.cron_workflows_list import CronWorkflowsList
|
||||
from hatchet_sdk.clients.rest.models.cron_workflows_order_by_field import (
|
||||
@@ -72,6 +72,9 @@ from hatchet_sdk.clients.rest.models.workflow_update_request import (
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.workflow_version import WorkflowVersion
|
||||
from hatchet_sdk.clients.rest.models.workflow_workers_count import WorkflowWorkersCount
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from pydantic import Field, StrictStr
|
||||
from typing import Any, Dict, Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.create_cron_workflow_trigger_request import (
|
||||
CreateCronWorkflowTriggerRequest,
|
||||
)
|
||||
@@ -43,6 +43,9 @@ from hatchet_sdk.clients.rest.models.workflow_run import WorkflowRun
|
||||
from hatchet_sdk.clients.rest.models.workflow_runs_cancel_request import (
|
||||
WorkflowRunsCancelRequest,
|
||||
)
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
import warnings
|
||||
from datetime import datetime
|
||||
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
||||
from typing import Any, Dict, List, Optional, Tuple, Union
|
||||
|
||||
from pydantic import Field, StrictBool, StrictFloat, StrictInt, StrictStr, validate_call
|
||||
from typing_extensions import Annotated
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from datetime import datetime
|
||||
from pydantic import Field, StrictBool, StrictInt, StrictStr
|
||||
from typing import List, Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.v1_task_event_list import V1TaskEventList
|
||||
from hatchet_sdk.clients.rest.models.v1_task_status import V1TaskStatus
|
||||
from hatchet_sdk.clients.rest.models.v1_task_summary_list import V1TaskSummaryList
|
||||
@@ -31,6 +31,9 @@ from hatchet_sdk.clients.rest.models.v1_workflow_run_details import V1WorkflowRu
|
||||
from hatchet_sdk.clients.rest.models.v1_workflow_run_display_name_list import (
|
||||
V1WorkflowRunDisplayNameList,
|
||||
)
|
||||
|
||||
from hatchet_sdk.clients.rest.api_client import ApiClient, RequestSerialized
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.rest import RESTResponseType
|
||||
|
||||
|
||||
|
||||
@@ -1,46 +1,44 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from hatchet_sdk.logger import logger
|
||||
import datetime
|
||||
from dateutil.parser import parse
|
||||
from enum import Enum
|
||||
import decimal
|
||||
import json
|
||||
import mimetypes
|
||||
import os
|
||||
import re
|
||||
import tempfile
|
||||
from enum import Enum
|
||||
from typing import Dict, List, Optional, Tuple, Union
|
||||
from urllib.parse import quote
|
||||
|
||||
from dateutil.parser import parse
|
||||
from urllib.parse import quote
|
||||
from typing import Tuple, Optional, List, Dict, Union
|
||||
from pydantic import SecretStr
|
||||
|
||||
from hatchet_sdk.clients.rest.configuration import Configuration
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse, T as ApiResponseT
|
||||
import hatchet_sdk.clients.rest.models
|
||||
from hatchet_sdk.clients.rest import rest
|
||||
from hatchet_sdk.clients.rest.api_response import ApiResponse
|
||||
from hatchet_sdk.clients.rest.api_response import T as ApiResponseT
|
||||
from hatchet_sdk.clients.rest.configuration import Configuration
|
||||
from hatchet_sdk.clients.rest.exceptions import (
|
||||
ApiException,
|
||||
ApiValueError,
|
||||
ApiException,
|
||||
BadRequestException,
|
||||
UnauthorizedException,
|
||||
ForbiddenException,
|
||||
NotFoundException,
|
||||
ServiceException,
|
||||
UnauthorizedException,
|
||||
)
|
||||
from hatchet_sdk.logger import logger
|
||||
|
||||
RequestSerialized = Tuple[str, str, Dict[str, str], Optional[str], List[str]]
|
||||
|
||||
|
||||
@@ -1,27 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
import copy
|
||||
import http.client as httplib
|
||||
import logging
|
||||
from logging import FileHandler
|
||||
import multiprocessing
|
||||
import sys
|
||||
from logging import FileHandler
|
||||
from typing import Any, ClassVar, Dict, List, Literal, Optional, TypedDict, Union
|
||||
from typing_extensions import NotRequired, Self
|
||||
|
||||
import urllib3
|
||||
from typing_extensions import NotRequired, Self
|
||||
|
||||
JSON_SCHEMA_VALIDATION_KEYWORDS = {
|
||||
"multipleOf",
|
||||
|
||||
@@ -1,18 +1,17 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
from typing import Any, Optional
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -2,19 +2,16 @@
|
||||
|
||||
# flake8: noqa
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from hatchet_sdk.clients.rest.models.accept_invite_request import AcceptInviteRequest
|
||||
|
||||
# import models into model package
|
||||
from hatchet_sdk.clients.rest.models.api_error import APIError
|
||||
from hatchet_sdk.clients.rest.models.api_errors import APIErrors
|
||||
@@ -24,6 +21,7 @@ from hatchet_sdk.clients.rest.models.api_meta_integration import APIMetaIntegrat
|
||||
from hatchet_sdk.clients.rest.models.api_meta_posthog import APIMetaPosthog
|
||||
from hatchet_sdk.clients.rest.models.api_resource_meta import APIResourceMeta
|
||||
from hatchet_sdk.clients.rest.models.api_token import APIToken
|
||||
from hatchet_sdk.clients.rest.models.accept_invite_request import AcceptInviteRequest
|
||||
from hatchet_sdk.clients.rest.models.bulk_create_event_request import (
|
||||
BulkCreateEventRequest,
|
||||
)
|
||||
@@ -93,8 +91,8 @@ from hatchet_sdk.clients.rest.models.list_api_tokens_response import (
|
||||
from hatchet_sdk.clients.rest.models.list_pull_requests_response import (
|
||||
ListPullRequestsResponse,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.list_slack_webhooks import ListSlackWebhooks
|
||||
from hatchet_sdk.clients.rest.models.list_sns_integrations import ListSNSIntegrations
|
||||
from hatchet_sdk.clients.rest.models.list_slack_webhooks import ListSlackWebhooks
|
||||
from hatchet_sdk.clients.rest.models.log_line import LogLine
|
||||
from hatchet_sdk.clients.rest.models.log_line_level import LogLineLevel
|
||||
from hatchet_sdk.clients.rest.models.log_line_list import LogLineList
|
||||
@@ -125,6 +123,7 @@ from hatchet_sdk.clients.rest.models.replay_workflow_runs_response import (
|
||||
ReplayWorkflowRunsResponse,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.rerun_step_run_request import RerunStepRunRequest
|
||||
from hatchet_sdk.clients.rest.models.sns_integration import SNSIntegration
|
||||
from hatchet_sdk.clients.rest.models.schedule_workflow_run_request import (
|
||||
ScheduleWorkflowRunRequest,
|
||||
)
|
||||
@@ -162,7 +161,6 @@ from hatchet_sdk.clients.rest.models.scheduled_workflows_order_by_field import (
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.semaphore_slots import SemaphoreSlots
|
||||
from hatchet_sdk.clients.rest.models.slack_webhook import SlackWebhook
|
||||
from hatchet_sdk.clients.rest.models.sns_integration import SNSIntegration
|
||||
from hatchet_sdk.clients.rest.models.step import Step
|
||||
from hatchet_sdk.clients.rest.models.step_run import StepRun
|
||||
from hatchet_sdk.clients.rest.models.step_run_archive import StepRunArchive
|
||||
@@ -230,13 +228,13 @@ from hatchet_sdk.clients.rest.models.user_tenant_memberships_list import (
|
||||
UserTenantMembershipsList,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.user_tenant_public import UserTenantPublic
|
||||
from hatchet_sdk.clients.rest.models.v1_cancel_task_request import V1CancelTaskRequest
|
||||
from hatchet_sdk.clients.rest.models.v1_cancelled_tasks import V1CancelledTasks
|
||||
from hatchet_sdk.clients.rest.models.v1_cel_debug_request import V1CELDebugRequest
|
||||
from hatchet_sdk.clients.rest.models.v1_cel_debug_response import V1CELDebugResponse
|
||||
from hatchet_sdk.clients.rest.models.v1_cel_debug_response_status import (
|
||||
V1CELDebugResponseStatus,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.v1_cancel_task_request import V1CancelTaskRequest
|
||||
from hatchet_sdk.clients.rest.models.v1_cancelled_tasks import V1CancelledTasks
|
||||
from hatchet_sdk.clients.rest.models.v1_create_filter_request import (
|
||||
V1CreateFilterRequest,
|
||||
)
|
||||
|
||||
@@ -1,26 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field
|
||||
from typing_extensions import Annotated, Self
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing_extensions import Annotated
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class AcceptInviteRequest(BaseModel):
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,28 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from hatchet_sdk.clients.rest.models.api_error import APIError
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class APIErrors(BaseModel):
|
||||
|
||||
@@ -1,29 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.api_meta_auth import APIMetaAuth
|
||||
from hatchet_sdk.clients.rest.models.api_meta_posthog import APIMetaPosthog
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class APIMeta(BaseModel):
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,27 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from datetime import datetime
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from datetime import datetime
|
||||
from pydantic import BaseModel, ConfigDict, Field
|
||||
from typing_extensions import Annotated, Self
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing_extensions import Annotated
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class APIResourceMeta(BaseModel):
|
||||
|
||||
@@ -1,29 +1,28 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
import json
|
||||
|
||||
from datetime import datetime
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field
|
||||
from typing_extensions import Annotated, Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.api_resource_meta import APIResourceMeta
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class APIToken(BaseModel):
|
||||
|
||||
@@ -1,28 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from hatchet_sdk.clients.rest.models.create_event_request import CreateEventRequest
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class BulkCreateEventRequest(BaseModel):
|
||||
|
||||
@@ -1,17 +1,16 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
|
||||
@@ -1,26 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field
|
||||
from typing_extensions import Annotated, Self
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing_extensions import Annotated
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class CancelEventRequest(BaseModel):
|
||||
|
||||
@@ -1,17 +1,16 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,31 +1,29 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.concurrency_limit_strategy import (
|
||||
ConcurrencyLimitStrategy,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.concurrency_scope import ConcurrencyScope
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class ConcurrencySetting(BaseModel):
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,26 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing_extensions import Annotated, Self
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from typing_extensions import Annotated
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class CreateAPITokenRequest(BaseModel):
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
+10
-10
@@ -1,26 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing_extensions import Annotated, Self
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from typing_extensions import Annotated
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class CreateCronWorkflowTriggerRequest(BaseModel):
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
+8
-9
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,28 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from hatchet_sdk.clients.rest.models.tenant_member_role import TenantMemberRole
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class CreateTenantInviteRequest(BaseModel):
|
||||
|
||||
@@ -1,29 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.tenant_environment import TenantEnvironment
|
||||
from hatchet_sdk.clients.rest.models.tenant_version import TenantVersion
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class CreateTenantRequest(BaseModel):
|
||||
|
||||
@@ -1,29 +1,28 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
||||
from typing_extensions import Annotated, Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from typing_extensions import Annotated
|
||||
from hatchet_sdk.clients.rest.models.api_resource_meta import APIResourceMeta
|
||||
from hatchet_sdk.clients.rest.models.cron_workflows_method import CronWorkflowsMethod
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class CronWorkflows(BaseModel):
|
||||
|
||||
@@ -1,29 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.cron_workflows import CronWorkflows
|
||||
from hatchet_sdk.clients.rest.models.pagination_response import PaginationResponse
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class CronWorkflowsList(BaseModel):
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,32 +1,30 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.api_resource_meta import APIResourceMeta
|
||||
from hatchet_sdk.clients.rest.models.event_workflow_run_summary import (
|
||||
EventWorkflowRunSummary,
|
||||
)
|
||||
from hatchet_sdk.clients.rest.models.tenant import Tenant
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class Event(BaseModel):
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,28 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, StrictStr
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.pagination_response import PaginationResponse
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class EventKeyList(BaseModel):
|
||||
|
||||
@@ -1,29 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.event import Event
|
||||
from hatchet_sdk.clients.rest.models.pagination_response import PaginationResponse
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class EventList(BaseModel):
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,26 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field
|
||||
from typing_extensions import Annotated, Self
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from typing_extensions import Annotated
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class EventUpdateCancel200Response(BaseModel):
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictInt
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,29 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from hatchet_sdk.clients.rest.models.api_resource_meta import APIResourceMeta
|
||||
from hatchet_sdk.clients.rest.models.event import Event
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class Events(BaseModel):
|
||||
|
||||
@@ -1,28 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from hatchet_sdk.clients.rest.models.step_run_diff import StepRunDiff
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class GetStepRunDiffResponse(BaseModel):
|
||||
|
||||
@@ -1,17 +1,16 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
|
||||
@@ -1,17 +1,16 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
|
||||
@@ -1,17 +1,16 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,29 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.api_resource_meta import APIResourceMeta
|
||||
from hatchet_sdk.clients.rest.models.step import Step
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class Job(BaseModel):
|
||||
|
||||
@@ -1,31 +1,29 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
import json
|
||||
|
||||
from datetime import datetime
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.api_resource_meta import APIResourceMeta
|
||||
from hatchet_sdk.clients.rest.models.job import Job
|
||||
from hatchet_sdk.clients.rest.models.job_run_status import JobRunStatus
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class JobRun(BaseModel):
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,17 +1,16 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
|
||||
@@ -1,29 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.api_token import APIToken
|
||||
from hatchet_sdk.clients.rest.models.pagination_response import PaginationResponse
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class ListAPITokensResponse(BaseModel):
|
||||
|
||||
+5
-6
@@ -1,17 +1,16 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
|
||||
@@ -1,28 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from hatchet_sdk.clients.rest.models.pull_request import PullRequest
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class ListPullRequestsResponse(BaseModel):
|
||||
|
||||
@@ -1,29 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from hatchet_sdk.clients.rest.models.pagination_response import PaginationResponse
|
||||
from hatchet_sdk.clients.rest.models.slack_webhook import SlackWebhook
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class ListSlackWebhooks(BaseModel):
|
||||
|
||||
@@ -1,29 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from hatchet_sdk.clients.rest.models.pagination_response import PaginationResponse
|
||||
from hatchet_sdk.clients.rest.models.sns_integration import SNSIntegration
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class ListSNSIntegrations(BaseModel):
|
||||
|
||||
@@ -1,26 +1,25 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from datetime import datetime
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from datetime import datetime
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,29 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.log_line import LogLine
|
||||
from hatchet_sdk.clients.rest.models.pagination_response import PaginationResponse
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class LogLineList(BaseModel):
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictInt
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,28 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from hatchet_sdk.clients.rest.models.pull_request_state import PullRequestState
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class PullRequest(BaseModel):
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictInt
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,26 +1,25 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from datetime import datetime
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from datetime import datetime
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,29 +1,27 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.pagination_response import PaginationResponse
|
||||
from hatchet_sdk.clients.rest.models.rate_limit import RateLimit
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class RateLimitList(BaseModel):
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,22 +1,19 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
from enum import Enum
|
||||
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,30 +1,28 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
import json
|
||||
|
||||
from datetime import datetime
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing_extensions import Self
|
||||
|
||||
from typing import Any, ClassVar, Dict, List, Optional
|
||||
from hatchet_sdk.clients.rest.models.api_resource_meta import APIResourceMeta
|
||||
from hatchet_sdk.clients.rest.models.step_run_status import StepRunStatus
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class RecentStepRuns(BaseModel):
|
||||
|
||||
@@ -1,25 +1,24 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
|
||||
@@ -1,26 +1,26 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
Hatchet API
|
||||
Hatchet API
|
||||
|
||||
The Hatchet API
|
||||
The Hatchet API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import json
|
||||
import pprint
|
||||
import re # noqa: F401
|
||||
from typing import Any, ClassVar, Dict, List, Optional, Set
|
||||
import json
|
||||
|
||||
from pydantic import BaseModel, ConfigDict, Field
|
||||
from typing_extensions import Annotated, Self
|
||||
from typing import Any, ClassVar, Dict, List
|
||||
from typing_extensions import Annotated
|
||||
from typing import Optional, Set
|
||||
from typing_extensions import Self
|
||||
|
||||
|
||||
class RejectInviteRequest(BaseModel):
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user