1
0
mirror of synced 2026-01-22 10:01:28 -05:00
Files
airbyte/airbyte-connector-builder-server/connector_builder/generated/models/stream_read.py
Maxime Carbonneau-Leclerc ca8cdc40aa [ISSUE #20771] limiting the number of requests performed to the backe… (#21525)
* [ISSUE #20771] limiting the number of requests performed to the backend without flag

* [ISSUE #20771] code reviewing my own code

* [ISSUE #20771] adding ABC to paginator

* [ISSUE #20771] format code

* [ISSUE #20771] adding slices to connector builder read request (#21605)

* [ISSUE #20771] adding slices to connector builder read request

* [ISSUE #20771] formatting

* [ISSUE #20771] set flag when limit requests reached (#21619)

* [ISSUE #20771] set flag when limit requests reached

* [ISSUE #20771] assert proper value on test read objects __init__

* [ISSUE #20771] code review and fix edge case

* [ISSUE #20771] fix flake8 error

* [ISSUE #20771] code review

* 🤖 Bump minor version of Airbyte CDK

* to run the CI
2023-01-24 15:19:19 +00:00

32 lines
990 B
Python

# coding: utf-8
from __future__ import annotations
from datetime import date, datetime # noqa: F401
import re # noqa: F401
from typing import Any, Dict, List, Optional # noqa: F401
from pydantic import AnyUrl, BaseModel, EmailStr, validator # noqa: F401
from connector_builder.generated.models.stream_read_slices import StreamReadSlices
class StreamRead(BaseModel):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Do not edit the class manually.
StreamRead - a model defined in OpenAPI
logs: The logs of this StreamRead.
slices: The slices of this StreamRead.
test_read_limit_reached: The test_read_limit_reached of this StreamRead.
inferred_schema: The inferred_schema of this StreamRead [Optional].
"""
logs: List[object]
slices: List[StreamReadSlices]
test_read_limit_reached: bool
inferred_schema: Optional[Dict[str, Any]] = None
StreamRead.update_forward_refs()