-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
39 lines (33 loc) · 1.97 KB
/
__init__.py
File metadata and controls
39 lines (33 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# coding: utf-8
# flake8: noqa
"""
STACKIT Intake API
This API provides endpoints for managing Intakes.
The version of the OpenAPI document: 1beta.3.6
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
# import models into model package
from stackit.intake.models.catalog_auth import CatalogAuth
from stackit.intake.models.catalog_auth_patch import CatalogAuthPatch
from stackit.intake.models.catalog_auth_type import CatalogAuthType
from stackit.intake.models.client_config import ClientConfig
from stackit.intake.models.create_intake_payload import CreateIntakePayload
from stackit.intake.models.create_intake_runner_payload import CreateIntakeRunnerPayload
from stackit.intake.models.create_intake_user_payload import CreateIntakeUserPayload
from stackit.intake.models.dremio_auth import DremioAuth
from stackit.intake.models.dremio_auth_patch import DremioAuthPatch
from stackit.intake.models.intake_catalog import IntakeCatalog
from stackit.intake.models.intake_catalog_patch import IntakeCatalogPatch
from stackit.intake.models.intake_response import IntakeResponse
from stackit.intake.models.intake_runner_response import IntakeRunnerResponse
from stackit.intake.models.intake_user_response import IntakeUserResponse
from stackit.intake.models.list_intake_runners_response import ListIntakeRunnersResponse
from stackit.intake.models.list_intake_users_response import ListIntakeUsersResponse
from stackit.intake.models.list_intakes_response import ListIntakesResponse
from stackit.intake.models.partitioning_type import PartitioningType
from stackit.intake.models.partitioning_update_type import PartitioningUpdateType
from stackit.intake.models.update_intake_payload import UpdateIntakePayload
from stackit.intake.models.update_intake_runner_payload import UpdateIntakeRunnerPayload
from stackit.intake.models.update_intake_user_payload import UpdateIntakeUserPayload
from stackit.intake.models.user_type import UserType