|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +# flake8: noqa |
| 4 | + |
| 5 | +""" |
| 6 | + STACKIT Key Value Store API |
| 7 | +
|
| 8 | + The STACKIT Key Value Store API provides endpoints to list service offerings, manage service instances and service credentials within STACKIT portal projects. |
| 9 | +
|
| 10 | + The version of the OpenAPI document: 2.0 |
| 11 | + Generated by OpenAPI Generator (https://openapi-generator.tech) |
| 12 | +
|
| 13 | + Do not edit the class manually. |
| 14 | +""" # noqa: E501 |
| 15 | + |
| 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 | + "Backup", |
| 32 | + "CreateBackupResponseItem", |
| 33 | + "CreateCredentialsPayload", |
| 34 | + "CreateInstancePayload", |
| 35 | + "CreateInstanceResponse", |
| 36 | + "Credentials", |
| 37 | + "CredentialsListItem", |
| 38 | + "CredentialsResponse", |
| 39 | + "Error", |
| 40 | + "GetMetricsResponse", |
| 41 | + "Instance", |
| 42 | + "InstanceLastOperation", |
| 43 | + "InstanceParameters", |
| 44 | + "InstanceSchema", |
| 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 | + |
| 60 | +# import apis into sdk package |
| 61 | +from stackit.valkey.api.default_api import DefaultApi as DefaultApi |
| 62 | +from stackit.valkey.api_client import ApiClient as ApiClient |
| 63 | + |
| 64 | +# import ApiClient |
| 65 | +from stackit.valkey.api_response import ApiResponse as ApiResponse |
| 66 | +from stackit.valkey.configuration import HostConfiguration as HostConfiguration |
| 67 | +from stackit.valkey.exceptions import ApiAttributeError as ApiAttributeError |
| 68 | +from stackit.valkey.exceptions import ApiException as ApiException |
| 69 | +from stackit.valkey.exceptions import ApiKeyError as ApiKeyError |
| 70 | +from stackit.valkey.exceptions import ApiTypeError as ApiTypeError |
| 71 | +from stackit.valkey.exceptions import ApiValueError as ApiValueError |
| 72 | +from stackit.valkey.exceptions import OpenApiException as OpenApiException |
| 73 | + |
| 74 | +# import models into sdk package |
| 75 | +from stackit.valkey.models.backup import Backup as Backup |
| 76 | +from stackit.valkey.models.create_backup_response_item import ( |
| 77 | + CreateBackupResponseItem as CreateBackupResponseItem, |
| 78 | +) |
| 79 | +from stackit.valkey.models.create_credentials_payload import ( |
| 80 | + CreateCredentialsPayload as CreateCredentialsPayload, |
| 81 | +) |
| 82 | +from stackit.valkey.models.create_instance_payload import ( |
| 83 | + CreateInstancePayload as CreateInstancePayload, |
| 84 | +) |
| 85 | +from stackit.valkey.models.create_instance_response import ( |
| 86 | + CreateInstanceResponse as CreateInstanceResponse, |
| 87 | +) |
| 88 | +from stackit.valkey.models.credentials import Credentials as Credentials |
| 89 | +from stackit.valkey.models.credentials_list_item import ( |
| 90 | + CredentialsListItem as CredentialsListItem, |
| 91 | +) |
| 92 | +from stackit.valkey.models.credentials_response import ( |
| 93 | + CredentialsResponse as CredentialsResponse, |
| 94 | +) |
| 95 | +from stackit.valkey.models.error import Error as Error |
| 96 | +from stackit.valkey.models.get_metrics_response import ( |
| 97 | + GetMetricsResponse as GetMetricsResponse, |
| 98 | +) |
| 99 | +from stackit.valkey.models.instance import Instance as Instance |
| 100 | +from stackit.valkey.models.instance_last_operation import ( |
| 101 | + InstanceLastOperation as InstanceLastOperation, |
| 102 | +) |
| 103 | +from stackit.valkey.models.instance_parameters import ( |
| 104 | + InstanceParameters as InstanceParameters, |
| 105 | +) |
| 106 | +from stackit.valkey.models.instance_schema import InstanceSchema as InstanceSchema |
| 107 | +from stackit.valkey.models.list_credentials_response import ( |
| 108 | + ListCredentialsResponse as ListCredentialsResponse, |
| 109 | +) |
| 110 | +from stackit.valkey.models.list_instances_response import ( |
| 111 | + ListInstancesResponse as ListInstancesResponse, |
| 112 | +) |
| 113 | +from stackit.valkey.models.list_offerings_response import ( |
| 114 | + ListOfferingsResponse as ListOfferingsResponse, |
| 115 | +) |
| 116 | +from stackit.valkey.models.list_restores_response import ( |
| 117 | + ListRestoresResponse as ListRestoresResponse, |
| 118 | +) |
| 119 | +from stackit.valkey.models.model_schema import ModelSchema as ModelSchema |
| 120 | +from stackit.valkey.models.offering import Offering as Offering |
| 121 | +from stackit.valkey.models.partial_update_instance_payload import ( |
| 122 | + PartialUpdateInstancePayload as PartialUpdateInstancePayload, |
| 123 | +) |
| 124 | +from stackit.valkey.models.plan import Plan as Plan |
| 125 | +from stackit.valkey.models.raw_credentials import RawCredentials as RawCredentials |
| 126 | +from stackit.valkey.models.restore import Restore as Restore |
| 127 | +from stackit.valkey.models.trigger_restore_response import ( |
| 128 | + TriggerRestoreResponse as TriggerRestoreResponse, |
| 129 | +) |
| 130 | +from stackit.valkey.models.update_backups_config_payload import ( |
| 131 | + UpdateBackupsConfigPayload as UpdateBackupsConfigPayload, |
| 132 | +) |
| 133 | +from stackit.valkey.models.update_backups_config_response import ( |
| 134 | + UpdateBackupsConfigResponse as UpdateBackupsConfigResponse, |
| 135 | +) |
0 commit comments