|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +# flake8: noqa |
| 4 | + |
| 5 | +""" |
| 6 | + STACKIT Cloud Foundry API |
| 7 | +
|
| 8 | + API endpoints for managing STACKIT Cloud Foundry |
| 9 | +
|
| 10 | + The version of the OpenAPI document: 1.0.0 |
| 11 | + Contact: support@stackit.cloud |
| 12 | + Generated by OpenAPI Generator (https://openapi-generator.tech) |
| 13 | +
|
| 14 | + Do not edit the class manually. |
| 15 | +""" # noqa: E501 |
| 16 | + |
| 17 | + |
| 18 | +__version__ = "1.0.0" |
| 19 | + |
| 20 | +# Define package exports |
| 21 | +__all__ = [ |
| 22 | + "DefaultApi", |
| 23 | + "ApiResponse", |
| 24 | + "ApiClient", |
| 25 | + "HostConfiguration", |
| 26 | + "OpenApiException", |
| 27 | + "ApiTypeError", |
| 28 | + "ApiValueError", |
| 29 | + "ApiKeyError", |
| 30 | + "ApiAttributeError", |
| 31 | + "ApiException", |
| 32 | + "ApplyOrganizationQuotaPayload", |
| 33 | + "CreateOrgRolePayload", |
| 34 | + "CreateOrganizationPayload", |
| 35 | + "CreateSpacePayload", |
| 36 | + "CreateSpaceRolePayload", |
| 37 | + "ErrorResponse", |
| 38 | + "OrgManager", |
| 39 | + "OrgManagerCreateResponse", |
| 40 | + "OrgManagerDeleteResponse", |
| 41 | + "OrgRoleCreateResponse", |
| 42 | + "Organization", |
| 43 | + "OrganizationCreateResponse", |
| 44 | + "OrganizationDeleteResponse", |
| 45 | + "OrganizationQuota", |
| 46 | + "OrganizationUsageSummary", |
| 47 | + "OrganizationsList", |
| 48 | + "OrganizationsListItem", |
| 49 | + "Pagination", |
| 50 | + "PlatformList", |
| 51 | + "Platforms", |
| 52 | + "Quota", |
| 53 | + "QuotaApps", |
| 54 | + "QuotaDomains", |
| 55 | + "QuotaRoutes", |
| 56 | + "QuotaServices", |
| 57 | + "Space", |
| 58 | + "SpaceDeleteResponse", |
| 59 | + "SpaceRoleCreateResponse", |
| 60 | + "SpacesList", |
| 61 | + "UpdateOrganizationPayload", |
| 62 | + "UpdateSpacePayload", |
| 63 | + "UsageSummary", |
| 64 | +] |
| 65 | + |
| 66 | +# import apis into sdk package |
| 67 | +from stackit.scf.api.default_api import DefaultApi as DefaultApi |
| 68 | +from stackit.scf.api_client import ApiClient as ApiClient |
| 69 | + |
| 70 | +# import ApiClient |
| 71 | +from stackit.scf.api_response import ApiResponse as ApiResponse |
| 72 | +from stackit.scf.configuration import HostConfiguration as HostConfiguration |
| 73 | +from stackit.scf.exceptions import ApiAttributeError as ApiAttributeError |
| 74 | +from stackit.scf.exceptions import ApiException as ApiException |
| 75 | +from stackit.scf.exceptions import ApiKeyError as ApiKeyError |
| 76 | +from stackit.scf.exceptions import ApiTypeError as ApiTypeError |
| 77 | +from stackit.scf.exceptions import ApiValueError as ApiValueError |
| 78 | +from stackit.scf.exceptions import OpenApiException as OpenApiException |
| 79 | + |
| 80 | +# import models into sdk package |
| 81 | +from stackit.scf.models.apply_organization_quota_payload import ( |
| 82 | + ApplyOrganizationQuotaPayload as ApplyOrganizationQuotaPayload, |
| 83 | +) |
| 84 | +from stackit.scf.models.create_org_role_payload import ( |
| 85 | + CreateOrgRolePayload as CreateOrgRolePayload, |
| 86 | +) |
| 87 | +from stackit.scf.models.create_organization_payload import ( |
| 88 | + CreateOrganizationPayload as CreateOrganizationPayload, |
| 89 | +) |
| 90 | +from stackit.scf.models.create_space_payload import ( |
| 91 | + CreateSpacePayload as CreateSpacePayload, |
| 92 | +) |
| 93 | +from stackit.scf.models.create_space_role_payload import ( |
| 94 | + CreateSpaceRolePayload as CreateSpaceRolePayload, |
| 95 | +) |
| 96 | +from stackit.scf.models.error_response import ErrorResponse as ErrorResponse |
| 97 | +from stackit.scf.models.org_manager import OrgManager as OrgManager |
| 98 | +from stackit.scf.models.org_manager_create_response import ( |
| 99 | + OrgManagerCreateResponse as OrgManagerCreateResponse, |
| 100 | +) |
| 101 | +from stackit.scf.models.org_manager_delete_response import ( |
| 102 | + OrgManagerDeleteResponse as OrgManagerDeleteResponse, |
| 103 | +) |
| 104 | +from stackit.scf.models.org_role_create_response import ( |
| 105 | + OrgRoleCreateResponse as OrgRoleCreateResponse, |
| 106 | +) |
| 107 | +from stackit.scf.models.organization import Organization as Organization |
| 108 | +from stackit.scf.models.organization_create_response import ( |
| 109 | + OrganizationCreateResponse as OrganizationCreateResponse, |
| 110 | +) |
| 111 | +from stackit.scf.models.organization_delete_response import ( |
| 112 | + OrganizationDeleteResponse as OrganizationDeleteResponse, |
| 113 | +) |
| 114 | +from stackit.scf.models.organization_quota import OrganizationQuota as OrganizationQuota |
| 115 | +from stackit.scf.models.organization_usage_summary import ( |
| 116 | + OrganizationUsageSummary as OrganizationUsageSummary, |
| 117 | +) |
| 118 | +from stackit.scf.models.organizations_list import OrganizationsList as OrganizationsList |
| 119 | +from stackit.scf.models.organizations_list_item import ( |
| 120 | + OrganizationsListItem as OrganizationsListItem, |
| 121 | +) |
| 122 | +from stackit.scf.models.pagination import Pagination as Pagination |
| 123 | +from stackit.scf.models.platform_list import PlatformList as PlatformList |
| 124 | +from stackit.scf.models.platforms import Platforms as Platforms |
| 125 | +from stackit.scf.models.quota import Quota as Quota |
| 126 | +from stackit.scf.models.quota_apps import QuotaApps as QuotaApps |
| 127 | +from stackit.scf.models.quota_domains import QuotaDomains as QuotaDomains |
| 128 | +from stackit.scf.models.quota_routes import QuotaRoutes as QuotaRoutes |
| 129 | +from stackit.scf.models.quota_services import QuotaServices as QuotaServices |
| 130 | +from stackit.scf.models.space import Space as Space |
| 131 | +from stackit.scf.models.space_delete_response import ( |
| 132 | + SpaceDeleteResponse as SpaceDeleteResponse, |
| 133 | +) |
| 134 | +from stackit.scf.models.space_role_create_response import ( |
| 135 | + SpaceRoleCreateResponse as SpaceRoleCreateResponse, |
| 136 | +) |
| 137 | +from stackit.scf.models.spaces_list import SpacesList as SpacesList |
| 138 | +from stackit.scf.models.update_organization_payload import ( |
| 139 | + UpdateOrganizationPayload as UpdateOrganizationPayload, |
| 140 | +) |
| 141 | +from stackit.scf.models.update_space_payload import ( |
| 142 | + UpdateSpacePayload as UpdateSpacePayload, |
| 143 | +) |
| 144 | +from stackit.scf.models.usage_summary import UsageSummary as UsageSummary |
0 commit comments