|
3 | 3 | # flake8: noqa |
4 | 4 |
|
5 | 5 | """ |
6 | | -STACKIT Git API |
| 6 | + STACKIT Git API |
7 | 7 |
|
8 | | -STACKIT Git management API. |
| 8 | + STACKIT Git management API. |
9 | 9 |
|
10 | | -The version of the OpenAPI document: 1beta.0.4 |
11 | | -Contact: git@stackit.cloud |
12 | | -Generated by OpenAPI Generator (https://openapi-generator.tech) |
| 10 | + The version of the OpenAPI document: 1beta.0.4 |
| 11 | + Contact: git@stackit.cloud |
| 12 | + Generated by OpenAPI Generator (https://openapi-generator.tech) |
13 | 13 |
|
14 | | -Do not edit the class manually. |
| 14 | + Do not edit the class manually. |
15 | 15 | """ # noqa: E501 |
16 | 16 |
|
| 17 | + |
17 | 18 | __version__ = "1.0.0" |
18 | 19 |
|
19 | 20 | # Define package exports |
|
36 | 37 | "CreateAuthenticationPayload", |
37 | 38 | "CreateInstancePayload", |
38 | 39 | "CreateRunnerPayload", |
| 40 | + "CreateUserPayload", |
39 | 41 | "FeatureToggle", |
40 | 42 | "Flavor", |
41 | 43 | "GenericErrorResponse", |
42 | 44 | "Instance", |
43 | 45 | "InternalServerErrorResponse", |
44 | 46 | "ListFlavors", |
45 | 47 | "ListInstances", |
| 48 | + "ListUsers", |
46 | 49 | "NotFoundErrorResponse", |
47 | 50 | "PatchAuthenticationPayload", |
48 | 51 | "PatchInstancePayload", |
49 | 52 | "PatchOperation", |
| 53 | + "PatchUserPayload", |
| 54 | + "Pipelines", |
50 | 55 | "Runner", |
51 | 56 | "RunnerRuntime", |
52 | 57 | "RunnerRuntimeList", |
53 | 58 | "UnauthorizedErrorResponse", |
| 59 | + "User", |
54 | 60 | ] |
55 | 61 |
|
56 | 62 | # import apis into sdk package |
|
88 | 94 | from stackit.git.models.create_runner_payload import ( |
89 | 95 | CreateRunnerPayload as CreateRunnerPayload, |
90 | 96 | ) |
| 97 | +from stackit.git.models.create_user_payload import ( |
| 98 | + CreateUserPayload as CreateUserPayload, |
| 99 | +) |
91 | 100 | from stackit.git.models.feature_toggle import FeatureToggle as FeatureToggle |
92 | 101 | from stackit.git.models.flavor import Flavor as Flavor |
93 | 102 | from stackit.git.models.generic_error_response import ( |
|
99 | 108 | ) |
100 | 109 | from stackit.git.models.list_flavors import ListFlavors as ListFlavors |
101 | 110 | from stackit.git.models.list_instances import ListInstances as ListInstances |
| 111 | +from stackit.git.models.list_users import ListUsers as ListUsers |
102 | 112 | from stackit.git.models.not_found_error_response import ( |
103 | 113 | NotFoundErrorResponse as NotFoundErrorResponse, |
104 | 114 | ) |
|
109 | 119 | PatchInstancePayload as PatchInstancePayload, |
110 | 120 | ) |
111 | 121 | from stackit.git.models.patch_operation import PatchOperation as PatchOperation |
| 122 | +from stackit.git.models.patch_user_payload import PatchUserPayload as PatchUserPayload |
| 123 | +from stackit.git.models.pipelines import Pipelines as Pipelines |
112 | 124 | from stackit.git.models.runner import Runner as Runner |
113 | 125 | from stackit.git.models.runner_runtime import RunnerRuntime as RunnerRuntime |
114 | 126 | from stackit.git.models.runner_runtime_list import ( |
|
117 | 129 | from stackit.git.models.unauthorized_error_response import ( |
118 | 130 | UnauthorizedErrorResponse as UnauthorizedErrorResponse, |
119 | 131 | ) |
| 132 | +from stackit.git.models.user import User as User |
0 commit comments