|
14 | 14 | Do not edit the class manually. |
15 | 15 | """ # noqa: E501 |
16 | 16 |
|
17 | | - |
18 | 17 | __version__ = "1.0.0" |
19 | 18 |
|
20 | 19 | # Define package exports |
|
29 | 28 | "ApiKeyError", |
30 | 29 | "ApiAttributeError", |
31 | 30 | "ApiException", |
| 31 | + "Authentication", |
| 32 | + "AuthenticationList", |
| 33 | + "CreateAuthenticationPayload", |
32 | 34 | "CreateInstancePayload", |
| 35 | + "CreateRunnerPayload", |
| 36 | + "FeatureToggle", |
33 | 37 | "Flavor", |
| 38 | + "FlavorsList", |
34 | 39 | "GenericErrorResponse", |
35 | 40 | "Instance", |
36 | | - "InstanceFlavor", |
| 41 | + "InstanceList", |
37 | 42 | "InternalServerErrorResponse", |
38 | | - "ListFlavors", |
39 | | - "ListInstances", |
40 | | - "ListRunnerLabels", |
| 43 | + "PatchAuthenticationPayload", |
41 | 44 | "PatchInstancePayload", |
42 | 45 | "PatchOperation", |
43 | | - "RunnerLabel", |
44 | | - "UnauthorizedResponse", |
| 46 | + "Runner", |
| 47 | + "RunnerRuntime", |
| 48 | + "RunnerRuntimeList", |
45 | 49 | ] |
46 | 50 |
|
47 | 51 | # import apis into sdk package |
|
59 | 63 | from stackit.git.exceptions import OpenApiException as OpenApiException |
60 | 64 |
|
61 | 65 | # import models into sdk package |
| 66 | +from stackit.git.models.authentication import Authentication as Authentication |
| 67 | +from stackit.git.models.authentication_list import ( |
| 68 | + AuthenticationList as AuthenticationList, |
| 69 | +) |
| 70 | +from stackit.git.models.create_authentication_payload import ( |
| 71 | + CreateAuthenticationPayload as CreateAuthenticationPayload, |
| 72 | +) |
62 | 73 | from stackit.git.models.create_instance_payload import ( |
63 | 74 | CreateInstancePayload as CreateInstancePayload, |
64 | 75 | ) |
| 76 | +from stackit.git.models.create_runner_payload import ( |
| 77 | + CreateRunnerPayload as CreateRunnerPayload, |
| 78 | +) |
| 79 | +from stackit.git.models.feature_toggle import FeatureToggle as FeatureToggle |
65 | 80 | from stackit.git.models.flavor import Flavor as Flavor |
| 81 | +from stackit.git.models.flavors_list import FlavorsList as FlavorsList |
66 | 82 | from stackit.git.models.generic_error_response import ( |
67 | 83 | GenericErrorResponse as GenericErrorResponse, |
68 | 84 | ) |
69 | 85 | from stackit.git.models.instance import Instance as Instance |
70 | | -from stackit.git.models.instance_flavor import InstanceFlavor as InstanceFlavor |
| 86 | +from stackit.git.models.instance_list import InstanceList as InstanceList |
71 | 87 | from stackit.git.models.internal_server_error_response import ( |
72 | 88 | InternalServerErrorResponse as InternalServerErrorResponse, |
73 | 89 | ) |
74 | | -from stackit.git.models.list_flavors import ListFlavors as ListFlavors |
75 | | -from stackit.git.models.list_instances import ListInstances as ListInstances |
76 | | -from stackit.git.models.list_runner_labels import ListRunnerLabels as ListRunnerLabels |
| 90 | +from stackit.git.models.patch_authentication_payload import ( |
| 91 | + PatchAuthenticationPayload as PatchAuthenticationPayload, |
| 92 | +) |
77 | 93 | from stackit.git.models.patch_instance_payload import ( |
78 | 94 | PatchInstancePayload as PatchInstancePayload, |
79 | 95 | ) |
80 | 96 | from stackit.git.models.patch_operation import PatchOperation as PatchOperation |
81 | | -from stackit.git.models.runner_label import RunnerLabel as RunnerLabel |
82 | | -from stackit.git.models.unauthorized_response import ( |
83 | | - UnauthorizedResponse as UnauthorizedResponse, |
| 97 | +from stackit.git.models.runner import Runner as Runner |
| 98 | +from stackit.git.models.runner_runtime import RunnerRuntime as RunnerRuntime |
| 99 | +from stackit.git.models.runner_runtime_list import ( |
| 100 | + RunnerRuntimeList as RunnerRuntimeList, |
84 | 101 | ) |
0 commit comments