|
29 | 29 | "ApiKeyError", |
30 | 30 | "ApiAttributeError", |
31 | 31 | "ApiException", |
| 32 | + "Authentication", |
| 33 | + "AuthenticationList", |
| 34 | + "CreateAuthenticationPayload", |
32 | 35 | "CreateInstancePayload", |
| 36 | + "CreateRunnerPayload", |
| 37 | + "FeatureToggle", |
33 | 38 | "Flavor", |
| 39 | + "FlavorsList", |
34 | 40 | "GenericErrorResponse", |
35 | 41 | "Instance", |
36 | | - "InstanceFlavor", |
| 42 | + "InstanceList", |
37 | 43 | "InternalServerErrorResponse", |
38 | | - "ListFlavors", |
39 | | - "ListInstances", |
40 | | - "ListRunnerLabels", |
| 44 | + "PatchAuthenticationPayload", |
41 | 45 | "PatchInstancePayload", |
42 | 46 | "PatchOperation", |
43 | | - "RunnerLabel", |
44 | | - "UnauthorizedResponse", |
| 47 | + "Runner", |
| 48 | + "RunnerRuntime", |
| 49 | + "RunnerRuntimeList", |
45 | 50 | ] |
46 | 51 |
|
47 | 52 | # import apis into sdk package |
|
59 | 64 | from stackit.git.exceptions import OpenApiException as OpenApiException |
60 | 65 |
|
61 | 66 | # import models into sdk package |
| 67 | +from stackit.git.models.authentication import Authentication as Authentication |
| 68 | +from stackit.git.models.authentication_list import ( |
| 69 | + AuthenticationList as AuthenticationList, |
| 70 | +) |
| 71 | +from stackit.git.models.create_authentication_payload import ( |
| 72 | + CreateAuthenticationPayload as CreateAuthenticationPayload, |
| 73 | +) |
62 | 74 | from stackit.git.models.create_instance_payload import ( |
63 | 75 | CreateInstancePayload as CreateInstancePayload, |
64 | 76 | ) |
| 77 | +from stackit.git.models.create_runner_payload import ( |
| 78 | + CreateRunnerPayload as CreateRunnerPayload, |
| 79 | +) |
| 80 | +from stackit.git.models.feature_toggle import FeatureToggle as FeatureToggle |
65 | 81 | from stackit.git.models.flavor import Flavor as Flavor |
| 82 | +from stackit.git.models.flavors_list import FlavorsList as FlavorsList |
66 | 83 | from stackit.git.models.generic_error_response import ( |
67 | 84 | GenericErrorResponse as GenericErrorResponse, |
68 | 85 | ) |
69 | 86 | from stackit.git.models.instance import Instance as Instance |
70 | | -from stackit.git.models.instance_flavor import InstanceFlavor as InstanceFlavor |
| 87 | +from stackit.git.models.instance_list import InstanceList as InstanceList |
71 | 88 | from stackit.git.models.internal_server_error_response import ( |
72 | 89 | InternalServerErrorResponse as InternalServerErrorResponse, |
73 | 90 | ) |
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 |
| 91 | +from stackit.git.models.patch_authentication_payload import ( |
| 92 | + PatchAuthenticationPayload as PatchAuthenticationPayload, |
| 93 | +) |
77 | 94 | from stackit.git.models.patch_instance_payload import ( |
78 | 95 | PatchInstancePayload as PatchInstancePayload, |
79 | 96 | ) |
80 | 97 | 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, |
| 98 | +from stackit.git.models.runner import Runner as Runner |
| 99 | +from stackit.git.models.runner_runtime import RunnerRuntime as RunnerRuntime |
| 100 | +from stackit.git.models.runner_runtime_list import ( |
| 101 | + RunnerRuntimeList as RunnerRuntimeList, |
84 | 102 | ) |
0 commit comments