-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__init__.py
More file actions
63 lines (57 loc) · 3.25 KB
/
__init__.py
File metadata and controls
63 lines (57 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# coding: utf-8
# flake8: noqa
"""
STACKIT Cloud Foundry API
API endpoints for managing STACKIT Cloud Foundry
The version of the OpenAPI document: 1.0.0
Contact: support@stackit.cloud
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
# import models into model package
from stackit.scf.models.apply_organization_quota_payload import (
ApplyOrganizationQuotaPayload,
)
from stackit.scf.models.create_org_role_payload import CreateOrgRolePayload
from stackit.scf.models.create_organization_payload import CreateOrganizationPayload
from stackit.scf.models.create_space_payload import CreateSpacePayload
from stackit.scf.models.create_space_role_payload import CreateSpaceRolePayload
from stackit.scf.models.error_response import ErrorResponse
from stackit.scf.models.isolation_segment import IsolationSegment
from stackit.scf.models.isolation_segments_list import IsolationSegmentsList
from stackit.scf.models.org_manager import OrgManager
from stackit.scf.models.org_manager_delete_response import OrgManagerDeleteResponse
from stackit.scf.models.org_manager_response import OrgManagerResponse
from stackit.scf.models.org_role_create_bff_request import OrgRoleCreateBffRequest
from stackit.scf.models.org_role_response import OrgRoleResponse
from stackit.scf.models.org_role_type import OrgRoleType
from stackit.scf.models.organization import Organization
from stackit.scf.models.organization_create_bff_response import (
OrganizationCreateBffResponse,
)
from stackit.scf.models.organization_create_response import OrganizationCreateResponse
from stackit.scf.models.organization_delete_response import OrganizationDeleteResponse
from stackit.scf.models.organization_quota import OrganizationQuota
from stackit.scf.models.organization_usage_summary import OrganizationUsageSummary
from stackit.scf.models.organizations_list import OrganizationsList
from stackit.scf.models.organizations_list_item import OrganizationsListItem
from stackit.scf.models.pagination import Pagination
from stackit.scf.models.platform_list import PlatformList
from stackit.scf.models.platforms import Platforms
from stackit.scf.models.quota import Quota
from stackit.scf.models.quota_apps import QuotaApps
from stackit.scf.models.quota_domains import QuotaDomains
from stackit.scf.models.quota_routes import QuotaRoutes
from stackit.scf.models.quota_services import QuotaServices
from stackit.scf.models.space import Space
from stackit.scf.models.space_created_bff_response import SpaceCreatedBffResponse
from stackit.scf.models.space_delete_response import SpaceDeleteResponse
from stackit.scf.models.space_role_create_bff_request import SpaceRoleCreateBffRequest
from stackit.scf.models.space_role_create_bff_response import SpaceRoleCreateBffResponse
from stackit.scf.models.space_role_create_response import SpaceRoleCreateResponse
from stackit.scf.models.space_role_type import SpaceRoleType
from stackit.scf.models.space_with_isolation_segment import SpaceWithIsolationSegment
from stackit.scf.models.spaces_list import SpacesList
from stackit.scf.models.update_organization_payload import UpdateOrganizationPayload
from stackit.scf.models.update_space_payload import UpdateSpacePayload
from stackit.scf.models.usage_summary import UsageSummary