stackit-cost 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.
- src/stackit/cost/__init__.py +85 -0
- src/stackit/cost/api/__init__.py +4 -0
- src/stackit/cost/api/default_api.py +1285 -0
- src/stackit/cost/api_client.py +652 -0
- src/stackit/cost/api_response.py +23 -0
- src/stackit/cost/configuration.py +163 -0
- src/stackit/cost/exceptions.py +217 -0
- src/stackit/cost/models/__init__.py +30 -0
- src/stackit/cost/models/auth_error_response.py +108 -0
- src/stackit/cost/models/detailed_service_cost.py +143 -0
- src/stackit/cost/models/error_response.py +81 -0
- src/stackit/cost/models/project_cost.py +203 -0
- src/stackit/cost/models/project_cost_with_detailed_services.py +132 -0
- src/stackit/cost/models/project_cost_with_reports.py +133 -0
- src/stackit/cost/models/project_cost_with_summarized_services.py +129 -0
- src/stackit/cost/models/report_data.py +104 -0
- src/stackit/cost/models/report_data_time_period.py +83 -0
- src/stackit/cost/models/summarized_project_cost.py +113 -0
- src/stackit/cost/models/summarized_service_cost.py +113 -0
- src/stackit/cost/py.typed +0 -0
- src/stackit/cost/rest.py +164 -0
- stackit_cost-0.1.0.dist-info/METADATA +46 -0
- stackit_cost-0.1.0.dist-info/RECORD +24 -0
- stackit_cost-0.1.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
STACKIT Cost API
|
|
7
|
+
|
|
8
|
+
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: 3.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
|
+
"AuthErrorResponse",
|
|
32
|
+
"DetailedServiceCost",
|
|
33
|
+
"ErrorResponse",
|
|
34
|
+
"ProjectCost",
|
|
35
|
+
"ProjectCostWithDetailedServices",
|
|
36
|
+
"ProjectCostWithReports",
|
|
37
|
+
"ProjectCostWithSummarizedServices",
|
|
38
|
+
"ReportData",
|
|
39
|
+
"ReportDataTimePeriod",
|
|
40
|
+
"SummarizedProjectCost",
|
|
41
|
+
"SummarizedServiceCost",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
# import apis into sdk package
|
|
45
|
+
from stackit.cost.api.default_api import DefaultApi as DefaultApi
|
|
46
|
+
from stackit.cost.api_client import ApiClient as ApiClient
|
|
47
|
+
|
|
48
|
+
# import ApiClient
|
|
49
|
+
from stackit.cost.api_response import ApiResponse as ApiResponse
|
|
50
|
+
from stackit.cost.configuration import HostConfiguration as HostConfiguration
|
|
51
|
+
from stackit.cost.exceptions import ApiAttributeError as ApiAttributeError
|
|
52
|
+
from stackit.cost.exceptions import ApiException as ApiException
|
|
53
|
+
from stackit.cost.exceptions import ApiKeyError as ApiKeyError
|
|
54
|
+
from stackit.cost.exceptions import ApiTypeError as ApiTypeError
|
|
55
|
+
from stackit.cost.exceptions import ApiValueError as ApiValueError
|
|
56
|
+
from stackit.cost.exceptions import OpenApiException as OpenApiException
|
|
57
|
+
|
|
58
|
+
# import models into sdk package
|
|
59
|
+
from stackit.cost.models.auth_error_response import (
|
|
60
|
+
AuthErrorResponse as AuthErrorResponse,
|
|
61
|
+
)
|
|
62
|
+
from stackit.cost.models.detailed_service_cost import (
|
|
63
|
+
DetailedServiceCost as DetailedServiceCost,
|
|
64
|
+
)
|
|
65
|
+
from stackit.cost.models.error_response import ErrorResponse as ErrorResponse
|
|
66
|
+
from stackit.cost.models.project_cost import ProjectCost as ProjectCost
|
|
67
|
+
from stackit.cost.models.project_cost_with_detailed_services import (
|
|
68
|
+
ProjectCostWithDetailedServices as ProjectCostWithDetailedServices,
|
|
69
|
+
)
|
|
70
|
+
from stackit.cost.models.project_cost_with_reports import (
|
|
71
|
+
ProjectCostWithReports as ProjectCostWithReports,
|
|
72
|
+
)
|
|
73
|
+
from stackit.cost.models.project_cost_with_summarized_services import (
|
|
74
|
+
ProjectCostWithSummarizedServices as ProjectCostWithSummarizedServices,
|
|
75
|
+
)
|
|
76
|
+
from stackit.cost.models.report_data import ReportData as ReportData
|
|
77
|
+
from stackit.cost.models.report_data_time_period import (
|
|
78
|
+
ReportDataTimePeriod as ReportDataTimePeriod,
|
|
79
|
+
)
|
|
80
|
+
from stackit.cost.models.summarized_project_cost import (
|
|
81
|
+
SummarizedProjectCost as SummarizedProjectCost,
|
|
82
|
+
)
|
|
83
|
+
from stackit.cost.models.summarized_service_cost import (
|
|
84
|
+
SummarizedServiceCost as SummarizedServiceCost,
|
|
85
|
+
)
|