stackit-intake 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. stackit/intake/__init__.py +115 -0
  2. stackit/intake/api/__init__.py +4 -0
  3. stackit/intake/api/default_api.py +4461 -0
  4. stackit/intake/api_client.py +639 -0
  5. stackit/intake/api_response.py +23 -0
  6. stackit/intake/configuration.py +164 -0
  7. stackit/intake/exceptions.py +217 -0
  8. stackit/intake/models/__init__.py +37 -0
  9. stackit/intake/models/catalog_auth.py +93 -0
  10. stackit/intake/models/catalog_auth_patch.py +93 -0
  11. stackit/intake/models/catalog_auth_type.py +36 -0
  12. stackit/intake/models/client_config.py +82 -0
  13. stackit/intake/models/create_intake_payload.py +112 -0
  14. stackit/intake/models/create_intake_runner_payload.py +115 -0
  15. stackit/intake/models/create_intake_user_payload.py +107 -0
  16. stackit/intake/models/dremio_auth.py +88 -0
  17. stackit/intake/models/dremio_auth_patch.py +88 -0
  18. stackit/intake/models/intake_catalog.py +118 -0
  19. stackit/intake/models/intake_catalog_patch.py +110 -0
  20. stackit/intake/models/intake_response.py +158 -0
  21. stackit/intake/models/intake_runner_response.py +135 -0
  22. stackit/intake/models/intake_user_response.py +139 -0
  23. stackit/intake/models/list_intake_runners_response.py +102 -0
  24. stackit/intake/models/list_intake_users_response.py +102 -0
  25. stackit/intake/models/list_intakes_response.py +102 -0
  26. stackit/intake/models/update_intake_payload.py +115 -0
  27. stackit/intake/models/update_intake_runner_payload.py +118 -0
  28. stackit/intake/models/update_intake_user_payload.py +112 -0
  29. stackit/intake/models/user_type.py +36 -0
  30. stackit/intake/py.typed +0 -0
  31. stackit/intake/rest.py +148 -0
  32. stackit_intake-0.1.0.dist-info/LICENSE.md +201 -0
  33. stackit_intake-0.1.0.dist-info/METADATA +46 -0
  34. stackit_intake-0.1.0.dist-info/NOTICE.txt +2 -0
  35. stackit_intake-0.1.0.dist-info/RECORD +36 -0
  36. stackit_intake-0.1.0.dist-info/WHEEL +4 -0
@@ -0,0 +1,115 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ STACKIT Intake API
7
+
8
+ This API provides endpoints for managing Intakes.
9
+
10
+ The version of the OpenAPI document: 1beta.2.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "1.0.0"
18
+
19
+ # Define package exports
20
+ __all__ = [
21
+ "DefaultApi",
22
+ "ApiResponse",
23
+ "ApiClient",
24
+ "HostConfiguration",
25
+ "OpenApiException",
26
+ "ApiTypeError",
27
+ "ApiValueError",
28
+ "ApiKeyError",
29
+ "ApiAttributeError",
30
+ "ApiException",
31
+ "CatalogAuth",
32
+ "CatalogAuthPatch",
33
+ "CatalogAuthType",
34
+ "ClientConfig",
35
+ "CreateIntakePayload",
36
+ "CreateIntakeRunnerPayload",
37
+ "CreateIntakeUserPayload",
38
+ "DremioAuth",
39
+ "DremioAuthPatch",
40
+ "IntakeCatalog",
41
+ "IntakeCatalogPatch",
42
+ "IntakeResponse",
43
+ "IntakeRunnerResponse",
44
+ "IntakeUserResponse",
45
+ "ListIntakeRunnersResponse",
46
+ "ListIntakeUsersResponse",
47
+ "ListIntakesResponse",
48
+ "UpdateIntakePayload",
49
+ "UpdateIntakeRunnerPayload",
50
+ "UpdateIntakeUserPayload",
51
+ "UserType",
52
+ ]
53
+
54
+ # import apis into sdk package
55
+ from stackit.intake.api.default_api import DefaultApi as DefaultApi
56
+ from stackit.intake.api_client import ApiClient as ApiClient
57
+
58
+ # import ApiClient
59
+ from stackit.intake.api_response import ApiResponse as ApiResponse
60
+ from stackit.intake.configuration import HostConfiguration as HostConfiguration
61
+ from stackit.intake.exceptions import ApiAttributeError as ApiAttributeError
62
+ from stackit.intake.exceptions import ApiException as ApiException
63
+ from stackit.intake.exceptions import ApiKeyError as ApiKeyError
64
+ from stackit.intake.exceptions import ApiTypeError as ApiTypeError
65
+ from stackit.intake.exceptions import ApiValueError as ApiValueError
66
+ from stackit.intake.exceptions import OpenApiException as OpenApiException
67
+
68
+ # import models into sdk package
69
+ from stackit.intake.models.catalog_auth import CatalogAuth as CatalogAuth
70
+ from stackit.intake.models.catalog_auth_patch import (
71
+ CatalogAuthPatch as CatalogAuthPatch,
72
+ )
73
+ from stackit.intake.models.catalog_auth_type import CatalogAuthType as CatalogAuthType
74
+ from stackit.intake.models.client_config import ClientConfig as ClientConfig
75
+ from stackit.intake.models.create_intake_payload import (
76
+ CreateIntakePayload as CreateIntakePayload,
77
+ )
78
+ from stackit.intake.models.create_intake_runner_payload import (
79
+ CreateIntakeRunnerPayload as CreateIntakeRunnerPayload,
80
+ )
81
+ from stackit.intake.models.create_intake_user_payload import (
82
+ CreateIntakeUserPayload as CreateIntakeUserPayload,
83
+ )
84
+ from stackit.intake.models.dremio_auth import DremioAuth as DremioAuth
85
+ from stackit.intake.models.dremio_auth_patch import DremioAuthPatch as DremioAuthPatch
86
+ from stackit.intake.models.intake_catalog import IntakeCatalog as IntakeCatalog
87
+ from stackit.intake.models.intake_catalog_patch import (
88
+ IntakeCatalogPatch as IntakeCatalogPatch,
89
+ )
90
+ from stackit.intake.models.intake_response import IntakeResponse as IntakeResponse
91
+ from stackit.intake.models.intake_runner_response import (
92
+ IntakeRunnerResponse as IntakeRunnerResponse,
93
+ )
94
+ from stackit.intake.models.intake_user_response import (
95
+ IntakeUserResponse as IntakeUserResponse,
96
+ )
97
+ from stackit.intake.models.list_intake_runners_response import (
98
+ ListIntakeRunnersResponse as ListIntakeRunnersResponse,
99
+ )
100
+ from stackit.intake.models.list_intake_users_response import (
101
+ ListIntakeUsersResponse as ListIntakeUsersResponse,
102
+ )
103
+ from stackit.intake.models.list_intakes_response import (
104
+ ListIntakesResponse as ListIntakesResponse,
105
+ )
106
+ from stackit.intake.models.update_intake_payload import (
107
+ UpdateIntakePayload as UpdateIntakePayload,
108
+ )
109
+ from stackit.intake.models.update_intake_runner_payload import (
110
+ UpdateIntakeRunnerPayload as UpdateIntakeRunnerPayload,
111
+ )
112
+ from stackit.intake.models.update_intake_user_payload import (
113
+ UpdateIntakeUserPayload as UpdateIntakeUserPayload,
114
+ )
115
+ from stackit.intake.models.user_type import UserType as UserType
@@ -0,0 +1,4 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from stackit.intake.api.default_api import DefaultApi