|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +# flake8: noqa |
| 4 | + |
| 5 | +""" |
| 6 | +STACKIT Container Registry API |
| 7 | +
|
| 8 | +STACKIT Container Registry management API. |
| 9 | +
|
| 10 | +The version of the OpenAPI document: 1.0.0 |
| 11 | +Contact: devex_development@stackit.cloud |
| 12 | +Generated by OpenAPI Generator (https://openapi-generator.tech) |
| 13 | +
|
| 14 | +Do not edit the class manually. |
| 15 | +""" # noqa: E501 |
| 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 | + "Artifactory", |
| 32 | + "ArtifactoryList", |
| 33 | + "BadRequestErrorResponse", |
| 34 | + "ConflictErrorResponse", |
| 35 | + "CreateArtifactoryPayload", |
| 36 | + "CreateProxyRequest", |
| 37 | + "Credentials", |
| 38 | + "ForbiddenErrorResponse", |
| 39 | + "GenericErrorResponse", |
| 40 | + "InternalServerErrorResponse", |
| 41 | + "NotFoundErrorResponse", |
| 42 | + "PatchArtifactoryPayload", |
| 43 | + "Proxy", |
| 44 | + "RedactedCredentials", |
| 45 | + "ReplicationAdapter", |
| 46 | + "ReplicationAdapterList", |
| 47 | + "UnauthorizedErrorResponse", |
| 48 | + "UpdateProxyRequest", |
| 49 | +] |
| 50 | + |
| 51 | +# import apis into sdk package |
| 52 | +from stackit.registry.api.default_api import DefaultApi as DefaultApi |
| 53 | +from stackit.registry.api_client import ApiClient as ApiClient |
| 54 | + |
| 55 | +# import ApiClient |
| 56 | +from stackit.registry.api_response import ApiResponse as ApiResponse |
| 57 | +from stackit.registry.configuration import HostConfiguration as HostConfiguration |
| 58 | +from stackit.registry.exceptions import ApiAttributeError as ApiAttributeError |
| 59 | +from stackit.registry.exceptions import ApiException as ApiException |
| 60 | +from stackit.registry.exceptions import ApiKeyError as ApiKeyError |
| 61 | +from stackit.registry.exceptions import ApiTypeError as ApiTypeError |
| 62 | +from stackit.registry.exceptions import ApiValueError as ApiValueError |
| 63 | +from stackit.registry.exceptions import OpenApiException as OpenApiException |
| 64 | + |
| 65 | +# import models into sdk package |
| 66 | +from stackit.registry.models.artifactory import Artifactory as Artifactory |
| 67 | +from stackit.registry.models.artifactory_list import ArtifactoryList as ArtifactoryList |
| 68 | +from stackit.registry.models.bad_request_error_response import ( |
| 69 | + BadRequestErrorResponse as BadRequestErrorResponse, |
| 70 | +) |
| 71 | +from stackit.registry.models.conflict_error_response import ( |
| 72 | + ConflictErrorResponse as ConflictErrorResponse, |
| 73 | +) |
| 74 | +from stackit.registry.models.create_artifactory_payload import ( |
| 75 | + CreateArtifactoryPayload as CreateArtifactoryPayload, |
| 76 | +) |
| 77 | +from stackit.registry.models.create_proxy_request import ( |
| 78 | + CreateProxyRequest as CreateProxyRequest, |
| 79 | +) |
| 80 | +from stackit.registry.models.credentials import Credentials as Credentials |
| 81 | +from stackit.registry.models.forbidden_error_response import ( |
| 82 | + ForbiddenErrorResponse as ForbiddenErrorResponse, |
| 83 | +) |
| 84 | +from stackit.registry.models.generic_error_response import ( |
| 85 | + GenericErrorResponse as GenericErrorResponse, |
| 86 | +) |
| 87 | +from stackit.registry.models.internal_server_error_response import ( |
| 88 | + InternalServerErrorResponse as InternalServerErrorResponse, |
| 89 | +) |
| 90 | +from stackit.registry.models.not_found_error_response import ( |
| 91 | + NotFoundErrorResponse as NotFoundErrorResponse, |
| 92 | +) |
| 93 | +from stackit.registry.models.patch_artifactory_payload import ( |
| 94 | + PatchArtifactoryPayload as PatchArtifactoryPayload, |
| 95 | +) |
| 96 | +from stackit.registry.models.proxy import Proxy as Proxy |
| 97 | +from stackit.registry.models.redacted_credentials import ( |
| 98 | + RedactedCredentials as RedactedCredentials, |
| 99 | +) |
| 100 | +from stackit.registry.models.replication_adapter import ( |
| 101 | + ReplicationAdapter as ReplicationAdapter, |
| 102 | +) |
| 103 | +from stackit.registry.models.replication_adapter_list import ( |
| 104 | + ReplicationAdapterList as ReplicationAdapterList, |
| 105 | +) |
| 106 | +from stackit.registry.models.unauthorized_error_response import ( |
| 107 | + UnauthorizedErrorResponse as UnauthorizedErrorResponse, |
| 108 | +) |
| 109 | +from stackit.registry.models.update_proxy_request import ( |
| 110 | + UpdateProxyRequest as UpdateProxyRequest, |
| 111 | +) |
0 commit comments