|
29 | 29 | "ApiKeyError", |
30 | 30 | "ApiAttributeError", |
31 | 31 | "ApiException", |
| 32 | + "AlreadyExistsError", |
| 33 | + "Authentication", |
| 34 | + "AuthenticationList", |
| 35 | + "BadErrorResponse", |
| 36 | + "ConflictErrorResponse", |
| 37 | + "CreateAuthenticationPayload", |
32 | 38 | "CreateInstancePayload", |
| 39 | + "CreateRunnerPayload", |
| 40 | + "FeatureToggle", |
33 | 41 | "Flavor", |
34 | 42 | "GenericErrorResponse", |
35 | 43 | "Instance", |
36 | | - "InstanceFlavor", |
37 | 44 | "InternalServerErrorResponse", |
38 | 45 | "ListFlavors", |
39 | 46 | "ListInstances", |
40 | | - "ListRunnerLabels", |
| 47 | + "NotFoundErrorResponse", |
| 48 | + "PatchAuthenticationPayload", |
41 | 49 | "PatchInstancePayload", |
42 | 50 | "PatchOperation", |
43 | | - "RunnerLabel", |
44 | | - "UnauthorizedResponse", |
| 51 | + "Runner", |
| 52 | + "RunnerRuntime", |
| 53 | + "RunnerRuntimeList", |
| 54 | + "UnauthorizedErrorResponse", |
45 | 55 | ] |
46 | 56 |
|
47 | 57 | # import apis into sdk package |
|
59 | 69 | from stackit.git.exceptions import OpenApiException as OpenApiException |
60 | 70 |
|
61 | 71 | # import models into sdk package |
| 72 | +from stackit.git.models.already_exists_error import ( |
| 73 | + AlreadyExistsError as AlreadyExistsError, |
| 74 | +) |
| 75 | +from stackit.git.models.authentication import Authentication as Authentication |
| 76 | +from stackit.git.models.authentication_list import ( |
| 77 | + AuthenticationList as AuthenticationList, |
| 78 | +) |
| 79 | +from stackit.git.models.bad_error_response import BadErrorResponse as BadErrorResponse |
| 80 | +from stackit.git.models.conflict_error_response import ( |
| 81 | + ConflictErrorResponse as ConflictErrorResponse, |
| 82 | +) |
| 83 | +from stackit.git.models.create_authentication_payload import ( |
| 84 | + CreateAuthenticationPayload as CreateAuthenticationPayload, |
| 85 | +) |
62 | 86 | from stackit.git.models.create_instance_payload import ( |
63 | 87 | CreateInstancePayload as CreateInstancePayload, |
64 | 88 | ) |
| 89 | +from stackit.git.models.create_runner_payload import ( |
| 90 | + CreateRunnerPayload as CreateRunnerPayload, |
| 91 | +) |
| 92 | +from stackit.git.models.feature_toggle import FeatureToggle as FeatureToggle |
65 | 93 | from stackit.git.models.flavor import Flavor as Flavor |
66 | 94 | from stackit.git.models.generic_error_response import ( |
67 | 95 | GenericErrorResponse as GenericErrorResponse, |
68 | 96 | ) |
69 | 97 | from stackit.git.models.instance import Instance as Instance |
70 | | -from stackit.git.models.instance_flavor import InstanceFlavor as InstanceFlavor |
71 | 98 | from stackit.git.models.internal_server_error_response import ( |
72 | 99 | InternalServerErrorResponse as InternalServerErrorResponse, |
73 | 100 | ) |
74 | 101 | from stackit.git.models.list_flavors import ListFlavors as ListFlavors |
75 | 102 | from stackit.git.models.list_instances import ListInstances as ListInstances |
76 | | -from stackit.git.models.list_runner_labels import ListRunnerLabels as ListRunnerLabels |
| 103 | +from stackit.git.models.not_found_error_response import ( |
| 104 | + NotFoundErrorResponse as NotFoundErrorResponse, |
| 105 | +) |
| 106 | +from stackit.git.models.patch_authentication_payload import ( |
| 107 | + PatchAuthenticationPayload as PatchAuthenticationPayload, |
| 108 | +) |
77 | 109 | from stackit.git.models.patch_instance_payload import ( |
78 | 110 | PatchInstancePayload as PatchInstancePayload, |
79 | 111 | ) |
80 | 112 | 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, |
| 113 | +from stackit.git.models.runner import Runner as Runner |
| 114 | +from stackit.git.models.runner_runtime import RunnerRuntime as RunnerRuntime |
| 115 | +from stackit.git.models.runner_runtime_list import ( |
| 116 | + RunnerRuntimeList as RunnerRuntimeList, |
| 117 | +) |
| 118 | +from stackit.git.models.unauthorized_error_response import ( |
| 119 | + UnauthorizedErrorResponse as UnauthorizedErrorResponse, |
84 | 120 | ) |
0 commit comments