|
11 | 11 | Generated by OpenAPI Generator (https://openapi-generator.tech) |
12 | 12 |
|
13 | 13 | Do not edit the class manually. |
14 | | -""" # noqa: E501 docstring might be too long |
| 14 | +""" # noqa: E501 |
15 | 15 |
|
16 | 16 |
|
17 | 17 | __version__ = "1.0.0" |
18 | 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 | + "Backup", |
| 32 | + "CreateBackupResponseItem", |
| 33 | + "CreateInstancePayload", |
| 34 | + "CreateInstanceResponse", |
| 35 | + "Credentials", |
| 36 | + "CredentialsListItem", |
| 37 | + "CredentialsResponse", |
| 38 | + "Error", |
| 39 | + "GetMetricsResponse", |
| 40 | + "Instance", |
| 41 | + "InstanceLastOperation", |
| 42 | + "InstanceParameters", |
| 43 | + "InstanceSchema", |
| 44 | + "ListBackupsResponse", |
| 45 | + "ListCredentialsResponse", |
| 46 | + "ListInstancesResponse", |
| 47 | + "ListOfferingsResponse", |
| 48 | + "ListRestoresResponse", |
| 49 | + "ModelSchema", |
| 50 | + "Offering", |
| 51 | + "PartialUpdateInstancePayload", |
| 52 | + "Plan", |
| 53 | + "RawCredentials", |
| 54 | + "Restore", |
| 55 | + "TriggerRestoreResponse", |
| 56 | + "UpdateBackupsConfigPayload", |
| 57 | + "UpdateBackupsConfigResponse", |
| 58 | +] |
| 59 | + |
19 | 60 | # import apis into sdk package |
20 | | -from stackit.redis.api.default_api import DefaultApi |
21 | | -from stackit.redis.api_client import ApiClient |
| 61 | +from stackit.redis.api.default_api import DefaultApi as DefaultApi |
| 62 | +from stackit.redis.api_client import ApiClient as ApiClient |
22 | 63 |
|
23 | 64 | # import ApiClient |
24 | | -from stackit.redis.api_response import ApiResponse |
25 | | -from stackit.redis.configuration import HostConfiguration |
26 | | -from stackit.redis.exceptions import ( |
27 | | - ApiAttributeError, |
28 | | - ApiException, |
29 | | - ApiKeyError, |
30 | | - ApiTypeError, |
31 | | - ApiValueError, |
32 | | - OpenApiException, |
33 | | -) |
| 65 | +from stackit.redis.api_response import ApiResponse as ApiResponse |
| 66 | +from stackit.redis.configuration import HostConfiguration as HostConfiguration |
| 67 | +from stackit.redis.exceptions import ApiAttributeError as ApiAttributeError |
| 68 | +from stackit.redis.exceptions import ApiException as ApiException |
| 69 | +from stackit.redis.exceptions import ApiKeyError as ApiKeyError |
| 70 | +from stackit.redis.exceptions import ApiTypeError as ApiTypeError |
| 71 | +from stackit.redis.exceptions import ApiValueError as ApiValueError |
| 72 | +from stackit.redis.exceptions import OpenApiException as OpenApiException |
34 | 73 |
|
35 | 74 | # import models into sdk package |
36 | | -from stackit.redis.models.backup import Backup |
37 | | -from stackit.redis.models.create_backup_response_item import CreateBackupResponseItem |
38 | | -from stackit.redis.models.create_instance_payload import CreateInstancePayload |
39 | | -from stackit.redis.models.create_instance_response import CreateInstanceResponse |
40 | | -from stackit.redis.models.credentials import Credentials |
41 | | -from stackit.redis.models.credentials_list_item import CredentialsListItem |
42 | | -from stackit.redis.models.credentials_response import CredentialsResponse |
43 | | -from stackit.redis.models.error import Error |
44 | | -from stackit.redis.models.get_metrics_response import GetMetricsResponse |
45 | | -from stackit.redis.models.instance import Instance |
46 | | -from stackit.redis.models.instance_last_operation import InstanceLastOperation |
47 | | -from stackit.redis.models.instance_parameters import InstanceParameters |
48 | | -from stackit.redis.models.instance_schema import InstanceSchema |
49 | | -from stackit.redis.models.list_backups_response import ListBackupsResponse |
50 | | -from stackit.redis.models.list_credentials_response import ListCredentialsResponse |
51 | | -from stackit.redis.models.list_instances_response import ListInstancesResponse |
52 | | -from stackit.redis.models.list_offerings_response import ListOfferingsResponse |
53 | | -from stackit.redis.models.list_restores_response import ListRestoresResponse |
54 | | -from stackit.redis.models.model_schema import ModelSchema |
55 | | -from stackit.redis.models.offering import Offering |
| 75 | +from stackit.redis.models.backup import Backup as Backup |
| 76 | +from stackit.redis.models.create_backup_response_item import ( |
| 77 | + CreateBackupResponseItem as CreateBackupResponseItem, |
| 78 | +) |
| 79 | +from stackit.redis.models.create_instance_payload import ( |
| 80 | + CreateInstancePayload as CreateInstancePayload, |
| 81 | +) |
| 82 | +from stackit.redis.models.create_instance_response import ( |
| 83 | + CreateInstanceResponse as CreateInstanceResponse, |
| 84 | +) |
| 85 | +from stackit.redis.models.credentials import Credentials as Credentials |
| 86 | +from stackit.redis.models.credentials_list_item import ( |
| 87 | + CredentialsListItem as CredentialsListItem, |
| 88 | +) |
| 89 | +from stackit.redis.models.credentials_response import ( |
| 90 | + CredentialsResponse as CredentialsResponse, |
| 91 | +) |
| 92 | +from stackit.redis.models.error import Error as Error |
| 93 | +from stackit.redis.models.get_metrics_response import ( |
| 94 | + GetMetricsResponse as GetMetricsResponse, |
| 95 | +) |
| 96 | +from stackit.redis.models.instance import Instance as Instance |
| 97 | +from stackit.redis.models.instance_last_operation import ( |
| 98 | + InstanceLastOperation as InstanceLastOperation, |
| 99 | +) |
| 100 | +from stackit.redis.models.instance_parameters import ( |
| 101 | + InstanceParameters as InstanceParameters, |
| 102 | +) |
| 103 | +from stackit.redis.models.instance_schema import InstanceSchema as InstanceSchema |
| 104 | +from stackit.redis.models.list_backups_response import ( |
| 105 | + ListBackupsResponse as ListBackupsResponse, |
| 106 | +) |
| 107 | +from stackit.redis.models.list_credentials_response import ( |
| 108 | + ListCredentialsResponse as ListCredentialsResponse, |
| 109 | +) |
| 110 | +from stackit.redis.models.list_instances_response import ( |
| 111 | + ListInstancesResponse as ListInstancesResponse, |
| 112 | +) |
| 113 | +from stackit.redis.models.list_offerings_response import ( |
| 114 | + ListOfferingsResponse as ListOfferingsResponse, |
| 115 | +) |
| 116 | +from stackit.redis.models.list_restores_response import ( |
| 117 | + ListRestoresResponse as ListRestoresResponse, |
| 118 | +) |
| 119 | +from stackit.redis.models.model_schema import ModelSchema as ModelSchema |
| 120 | +from stackit.redis.models.offering import Offering as Offering |
56 | 121 | from stackit.redis.models.partial_update_instance_payload import ( |
57 | | - PartialUpdateInstancePayload, |
| 122 | + PartialUpdateInstancePayload as PartialUpdateInstancePayload, |
| 123 | +) |
| 124 | +from stackit.redis.models.plan import Plan as Plan |
| 125 | +from stackit.redis.models.raw_credentials import RawCredentials as RawCredentials |
| 126 | +from stackit.redis.models.restore import Restore as Restore |
| 127 | +from stackit.redis.models.trigger_restore_response import ( |
| 128 | + TriggerRestoreResponse as TriggerRestoreResponse, |
58 | 129 | ) |
59 | | -from stackit.redis.models.plan import Plan |
60 | | -from stackit.redis.models.raw_credentials import RawCredentials |
61 | | -from stackit.redis.models.restore import Restore |
62 | | -from stackit.redis.models.trigger_restore_response import TriggerRestoreResponse |
63 | 130 | from stackit.redis.models.update_backups_config_payload import ( |
64 | | - UpdateBackupsConfigPayload, |
| 131 | + UpdateBackupsConfigPayload as UpdateBackupsConfigPayload, |
65 | 132 | ) |
66 | 133 | from stackit.redis.models.update_backups_config_response import ( |
67 | | - UpdateBackupsConfigResponse, |
| 134 | + UpdateBackupsConfigResponse as UpdateBackupsConfigResponse, |
68 | 135 | ) |
0 commit comments