stackit-scf 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- stackit/scf/__init__.py +158 -0
- stackit/scf/api/__init__.py +4 -0
- stackit/scf/api/default_api.py +6710 -0
- stackit/scf/api_client.py +640 -0
- stackit/scf/api_response.py +23 -0
- stackit/scf/configuration.py +164 -0
- stackit/scf/exceptions.py +218 -0
- stackit/scf/models/__init__.py +56 -0
- stackit/scf/models/apply_organization_quota_payload.py +82 -0
- stackit/scf/models/create_org_role_payload.py +88 -0
- stackit/scf/models/create_organization_payload.py +83 -0
- stackit/scf/models/create_space_payload.py +82 -0
- stackit/scf/models/create_space_role_payload.py +88 -0
- stackit/scf/models/error_response.py +83 -0
- stackit/scf/models/org_manager.py +107 -0
- stackit/scf/models/org_manager_delete_response.py +90 -0
- stackit/scf/models/org_manager_response.py +113 -0
- stackit/scf/models/org_role_create_bff_request.py +84 -0
- stackit/scf/models/org_role_response.py +98 -0
- stackit/scf/models/org_role_type.py +39 -0
- stackit/scf/models/organization.py +118 -0
- stackit/scf/models/organization_create_response.py +92 -0
- stackit/scf/models/organization_delete_response.py +92 -0
- stackit/scf/models/organization_quota.py +94 -0
- stackit/scf/models/organization_usage_summary.py +101 -0
- stackit/scf/models/organizations_list.py +105 -0
- stackit/scf/models/organizations_list_item.py +118 -0
- stackit/scf/models/pagination.py +83 -0
- stackit/scf/models/platform_list.py +105 -0
- stackit/scf/models/platforms.py +96 -0
- stackit/scf/models/quota.py +139 -0
- stackit/scf/models/quota_apps.py +138 -0
- stackit/scf/models/quota_domains.py +89 -0
- stackit/scf/models/quota_routes.py +99 -0
- stackit/scf/models/quota_services.py +104 -0
- stackit/scf/models/space.py +110 -0
- stackit/scf/models/space_delete_response.py +90 -0
- stackit/scf/models/space_role_create_bff_request.py +84 -0
- stackit/scf/models/space_role_create_bff_response.py +99 -0
- stackit/scf/models/space_role_create_response.py +100 -0
- stackit/scf/models/space_role_type.py +39 -0
- stackit/scf/models/spaces_list.py +103 -0
- stackit/scf/models/update_organization_payload.py +85 -0
- stackit/scf/models/update_space_payload.py +82 -0
- stackit/scf/models/usage_summary.py +109 -0
- stackit/scf/py.typed +0 -0
- stackit/scf/rest.py +149 -0
- stackit_scf-0.1.0.dist-info/LICENSE.md +201 -0
- stackit_scf-0.1.0.dist-info/METADATA +46 -0
- stackit_scf-0.1.0.dist-info/NOTICE.txt +2 -0
- stackit_scf-0.1.0.dist-info/RECORD +52 -0
- stackit_scf-0.1.0.dist-info/WHEEL +4 -0
stackit/scf/__init__.py
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
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
|
+
"OrgManagerDeleteResponse",
|
|
40
|
+
"OrgManagerResponse",
|
|
41
|
+
"OrgRoleCreateBffRequest",
|
|
42
|
+
"OrgRoleResponse",
|
|
43
|
+
"OrgRoleType",
|
|
44
|
+
"Organization",
|
|
45
|
+
"OrganizationCreateResponse",
|
|
46
|
+
"OrganizationDeleteResponse",
|
|
47
|
+
"OrganizationQuota",
|
|
48
|
+
"OrganizationUsageSummary",
|
|
49
|
+
"OrganizationsList",
|
|
50
|
+
"OrganizationsListItem",
|
|
51
|
+
"Pagination",
|
|
52
|
+
"PlatformList",
|
|
53
|
+
"Platforms",
|
|
54
|
+
"Quota",
|
|
55
|
+
"QuotaApps",
|
|
56
|
+
"QuotaDomains",
|
|
57
|
+
"QuotaRoutes",
|
|
58
|
+
"QuotaServices",
|
|
59
|
+
"Space",
|
|
60
|
+
"SpaceDeleteResponse",
|
|
61
|
+
"SpaceRoleCreateBffRequest",
|
|
62
|
+
"SpaceRoleCreateBffResponse",
|
|
63
|
+
"SpaceRoleCreateResponse",
|
|
64
|
+
"SpaceRoleType",
|
|
65
|
+
"SpacesList",
|
|
66
|
+
"UpdateOrganizationPayload",
|
|
67
|
+
"UpdateSpacePayload",
|
|
68
|
+
"UsageSummary",
|
|
69
|
+
]
|
|
70
|
+
|
|
71
|
+
# import apis into sdk package
|
|
72
|
+
from stackit.scf.api.default_api import DefaultApi as DefaultApi
|
|
73
|
+
from stackit.scf.api_client import ApiClient as ApiClient
|
|
74
|
+
|
|
75
|
+
# import ApiClient
|
|
76
|
+
from stackit.scf.api_response import ApiResponse as ApiResponse
|
|
77
|
+
from stackit.scf.configuration import HostConfiguration as HostConfiguration
|
|
78
|
+
from stackit.scf.exceptions import ApiAttributeError as ApiAttributeError
|
|
79
|
+
from stackit.scf.exceptions import ApiException as ApiException
|
|
80
|
+
from stackit.scf.exceptions import ApiKeyError as ApiKeyError
|
|
81
|
+
from stackit.scf.exceptions import ApiTypeError as ApiTypeError
|
|
82
|
+
from stackit.scf.exceptions import ApiValueError as ApiValueError
|
|
83
|
+
from stackit.scf.exceptions import OpenApiException as OpenApiException
|
|
84
|
+
|
|
85
|
+
# import models into sdk package
|
|
86
|
+
from stackit.scf.models.apply_organization_quota_payload import (
|
|
87
|
+
ApplyOrganizationQuotaPayload as ApplyOrganizationQuotaPayload,
|
|
88
|
+
)
|
|
89
|
+
from stackit.scf.models.create_org_role_payload import (
|
|
90
|
+
CreateOrgRolePayload as CreateOrgRolePayload,
|
|
91
|
+
)
|
|
92
|
+
from stackit.scf.models.create_organization_payload import (
|
|
93
|
+
CreateOrganizationPayload as CreateOrganizationPayload,
|
|
94
|
+
)
|
|
95
|
+
from stackit.scf.models.create_space_payload import (
|
|
96
|
+
CreateSpacePayload as CreateSpacePayload,
|
|
97
|
+
)
|
|
98
|
+
from stackit.scf.models.create_space_role_payload import (
|
|
99
|
+
CreateSpaceRolePayload as CreateSpaceRolePayload,
|
|
100
|
+
)
|
|
101
|
+
from stackit.scf.models.error_response import ErrorResponse as ErrorResponse
|
|
102
|
+
from stackit.scf.models.org_manager import OrgManager as OrgManager
|
|
103
|
+
from stackit.scf.models.org_manager_delete_response import (
|
|
104
|
+
OrgManagerDeleteResponse as OrgManagerDeleteResponse,
|
|
105
|
+
)
|
|
106
|
+
from stackit.scf.models.org_manager_response import (
|
|
107
|
+
OrgManagerResponse as OrgManagerResponse,
|
|
108
|
+
)
|
|
109
|
+
from stackit.scf.models.org_role_create_bff_request import (
|
|
110
|
+
OrgRoleCreateBffRequest as OrgRoleCreateBffRequest,
|
|
111
|
+
)
|
|
112
|
+
from stackit.scf.models.org_role_response import OrgRoleResponse as OrgRoleResponse
|
|
113
|
+
from stackit.scf.models.org_role_type import OrgRoleType as OrgRoleType
|
|
114
|
+
from stackit.scf.models.organization import Organization as Organization
|
|
115
|
+
from stackit.scf.models.organization_create_response import (
|
|
116
|
+
OrganizationCreateResponse as OrganizationCreateResponse,
|
|
117
|
+
)
|
|
118
|
+
from stackit.scf.models.organization_delete_response import (
|
|
119
|
+
OrganizationDeleteResponse as OrganizationDeleteResponse,
|
|
120
|
+
)
|
|
121
|
+
from stackit.scf.models.organization_quota import OrganizationQuota as OrganizationQuota
|
|
122
|
+
from stackit.scf.models.organization_usage_summary import (
|
|
123
|
+
OrganizationUsageSummary as OrganizationUsageSummary,
|
|
124
|
+
)
|
|
125
|
+
from stackit.scf.models.organizations_list import OrganizationsList as OrganizationsList
|
|
126
|
+
from stackit.scf.models.organizations_list_item import (
|
|
127
|
+
OrganizationsListItem as OrganizationsListItem,
|
|
128
|
+
)
|
|
129
|
+
from stackit.scf.models.pagination import Pagination as Pagination
|
|
130
|
+
from stackit.scf.models.platform_list import PlatformList as PlatformList
|
|
131
|
+
from stackit.scf.models.platforms import Platforms as Platforms
|
|
132
|
+
from stackit.scf.models.quota import Quota as Quota
|
|
133
|
+
from stackit.scf.models.quota_apps import QuotaApps as QuotaApps
|
|
134
|
+
from stackit.scf.models.quota_domains import QuotaDomains as QuotaDomains
|
|
135
|
+
from stackit.scf.models.quota_routes import QuotaRoutes as QuotaRoutes
|
|
136
|
+
from stackit.scf.models.quota_services import QuotaServices as QuotaServices
|
|
137
|
+
from stackit.scf.models.space import Space as Space
|
|
138
|
+
from stackit.scf.models.space_delete_response import (
|
|
139
|
+
SpaceDeleteResponse as SpaceDeleteResponse,
|
|
140
|
+
)
|
|
141
|
+
from stackit.scf.models.space_role_create_bff_request import (
|
|
142
|
+
SpaceRoleCreateBffRequest as SpaceRoleCreateBffRequest,
|
|
143
|
+
)
|
|
144
|
+
from stackit.scf.models.space_role_create_bff_response import (
|
|
145
|
+
SpaceRoleCreateBffResponse as SpaceRoleCreateBffResponse,
|
|
146
|
+
)
|
|
147
|
+
from stackit.scf.models.space_role_create_response import (
|
|
148
|
+
SpaceRoleCreateResponse as SpaceRoleCreateResponse,
|
|
149
|
+
)
|
|
150
|
+
from stackit.scf.models.space_role_type import SpaceRoleType as SpaceRoleType
|
|
151
|
+
from stackit.scf.models.spaces_list import SpacesList as SpacesList
|
|
152
|
+
from stackit.scf.models.update_organization_payload import (
|
|
153
|
+
UpdateOrganizationPayload as UpdateOrganizationPayload,
|
|
154
|
+
)
|
|
155
|
+
from stackit.scf.models.update_space_payload import (
|
|
156
|
+
UpdateSpacePayload as UpdateSpacePayload,
|
|
157
|
+
)
|
|
158
|
+
from stackit.scf.models.usage_summary import UsageSummary as UsageSummary
|