stackit-cost 0.1.0__tar.gz
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_cost-0.1.0/.gitignore +267 -0
- stackit_cost-0.1.0/PKG-INFO +46 -0
- stackit_cost-0.1.0/README.md +23 -0
- stackit_cost-0.1.0/pyproject.toml +111 -0
- stackit_cost-0.1.0/src/stackit/cost/__init__.py +85 -0
- stackit_cost-0.1.0/src/stackit/cost/api/__init__.py +4 -0
- stackit_cost-0.1.0/src/stackit/cost/api/default_api.py +1285 -0
- stackit_cost-0.1.0/src/stackit/cost/api_client.py +652 -0
- stackit_cost-0.1.0/src/stackit/cost/api_response.py +23 -0
- stackit_cost-0.1.0/src/stackit/cost/configuration.py +163 -0
- stackit_cost-0.1.0/src/stackit/cost/exceptions.py +217 -0
- stackit_cost-0.1.0/src/stackit/cost/models/__init__.py +30 -0
- stackit_cost-0.1.0/src/stackit/cost/models/auth_error_response.py +108 -0
- stackit_cost-0.1.0/src/stackit/cost/models/detailed_service_cost.py +143 -0
- stackit_cost-0.1.0/src/stackit/cost/models/error_response.py +81 -0
- stackit_cost-0.1.0/src/stackit/cost/models/project_cost.py +203 -0
- stackit_cost-0.1.0/src/stackit/cost/models/project_cost_with_detailed_services.py +132 -0
- stackit_cost-0.1.0/src/stackit/cost/models/project_cost_with_reports.py +133 -0
- stackit_cost-0.1.0/src/stackit/cost/models/project_cost_with_summarized_services.py +129 -0
- stackit_cost-0.1.0/src/stackit/cost/models/report_data.py +104 -0
- stackit_cost-0.1.0/src/stackit/cost/models/report_data_time_period.py +83 -0
- stackit_cost-0.1.0/src/stackit/cost/models/summarized_project_cost.py +113 -0
- stackit_cost-0.1.0/src/stackit/cost/models/summarized_service_cost.py +113 -0
- stackit_cost-0.1.0/src/stackit/cost/py.typed +0 -0
- stackit_cost-0.1.0/src/stackit/cost/rest.py +164 -0
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
### VisualStudioCode template
|
|
2
|
+
.vscode/*
|
|
3
|
+
!.vscode/settings.json
|
|
4
|
+
!.vscode/tasks.json
|
|
5
|
+
!.vscode/launch.json
|
|
6
|
+
!.vscode/extensions.json
|
|
7
|
+
!.vscode/*.code-snippets
|
|
8
|
+
|
|
9
|
+
# Local History for Visual Studio Code
|
|
10
|
+
.history/
|
|
11
|
+
|
|
12
|
+
# Built Visual Studio Code Extensions
|
|
13
|
+
*.vsix
|
|
14
|
+
|
|
15
|
+
### JetBrains template
|
|
16
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
|
17
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
18
|
+
|
|
19
|
+
# User-specific stuff
|
|
20
|
+
.idea/**/workspace.xml
|
|
21
|
+
.idea/**/tasks.xml
|
|
22
|
+
.idea/**/usage.statistics.xml
|
|
23
|
+
.idea/**/dictionaries
|
|
24
|
+
.idea/**/shelf
|
|
25
|
+
|
|
26
|
+
# AWS User-specific
|
|
27
|
+
.idea/**/aws.xml
|
|
28
|
+
|
|
29
|
+
# Generated files
|
|
30
|
+
.idea/**/contentModel.xml
|
|
31
|
+
|
|
32
|
+
# Sensitive or high-churn files
|
|
33
|
+
.idea/**/dataSources/
|
|
34
|
+
.idea/**/dataSources.ids
|
|
35
|
+
.idea/**/dataSources.local.xml
|
|
36
|
+
.idea/**/sqlDataSources.xml
|
|
37
|
+
.idea/**/dynamic.xml
|
|
38
|
+
.idea/**/uiDesigner.xml
|
|
39
|
+
.idea/**/dbnavigator.xml
|
|
40
|
+
|
|
41
|
+
# Gradle
|
|
42
|
+
.idea/**/gradle.xml
|
|
43
|
+
.idea/**/libraries
|
|
44
|
+
|
|
45
|
+
# Gradle and Maven with auto-import
|
|
46
|
+
# When using Gradle or Maven with auto-import, you should exclude module files,
|
|
47
|
+
# since they will be recreated, and may cause churn. Uncomment if using
|
|
48
|
+
# auto-import.
|
|
49
|
+
# .idea/artifacts
|
|
50
|
+
# .idea/compiler.xml
|
|
51
|
+
# .idea/jarRepositories.xml
|
|
52
|
+
# .idea/modules.xml
|
|
53
|
+
# .idea/*.iml
|
|
54
|
+
# .idea/modules
|
|
55
|
+
# *.iml
|
|
56
|
+
# *.ipr
|
|
57
|
+
|
|
58
|
+
# CMake
|
|
59
|
+
cmake-build-*/
|
|
60
|
+
|
|
61
|
+
# Mongo Explorer plugin
|
|
62
|
+
.idea/**/mongoSettings.xml
|
|
63
|
+
|
|
64
|
+
# File-based project format
|
|
65
|
+
*.iws
|
|
66
|
+
|
|
67
|
+
# IntelliJ
|
|
68
|
+
out/
|
|
69
|
+
|
|
70
|
+
# mpeltonen/sbt-idea plugin
|
|
71
|
+
.idea_modules/
|
|
72
|
+
|
|
73
|
+
# JIRA plugin
|
|
74
|
+
atlassian-ide-plugin.xml
|
|
75
|
+
|
|
76
|
+
# Cursive Clojure plugin
|
|
77
|
+
.idea/replstate.xml
|
|
78
|
+
|
|
79
|
+
# SonarLint plugin
|
|
80
|
+
.idea/sonarlint/
|
|
81
|
+
|
|
82
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
83
|
+
com_crashlytics_export_strings.xml
|
|
84
|
+
crashlytics.properties
|
|
85
|
+
crashlytics-build.properties
|
|
86
|
+
fabric.properties
|
|
87
|
+
|
|
88
|
+
# Editor-based Rest Client
|
|
89
|
+
.idea/httpRequests
|
|
90
|
+
|
|
91
|
+
# Android studio 3.1+ serialized cache file
|
|
92
|
+
.idea/caches/build_file_checksums.ser
|
|
93
|
+
|
|
94
|
+
### VirtualEnv template
|
|
95
|
+
# Virtualenv
|
|
96
|
+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
|
|
97
|
+
.Python
|
|
98
|
+
[Bb]in
|
|
99
|
+
[Ii]nclude
|
|
100
|
+
[Ll]ib
|
|
101
|
+
[Ll]ib64
|
|
102
|
+
[Ll]ocal
|
|
103
|
+
[Ss]cripts
|
|
104
|
+
pyvenv.cfg
|
|
105
|
+
.venv
|
|
106
|
+
pip-selfcheck.json
|
|
107
|
+
|
|
108
|
+
### Python template
|
|
109
|
+
# Byte-compiled / optimized / DLL files
|
|
110
|
+
__pycache__/
|
|
111
|
+
*.py[cod]
|
|
112
|
+
*$py.class
|
|
113
|
+
|
|
114
|
+
# C extensions
|
|
115
|
+
*.so
|
|
116
|
+
|
|
117
|
+
# Distribution / packaging
|
|
118
|
+
build/
|
|
119
|
+
develop-eggs/
|
|
120
|
+
dist/
|
|
121
|
+
downloads/
|
|
122
|
+
eggs/
|
|
123
|
+
.eggs/
|
|
124
|
+
lib/
|
|
125
|
+
lib64/
|
|
126
|
+
parts/
|
|
127
|
+
sdist/
|
|
128
|
+
var/
|
|
129
|
+
wheels/
|
|
130
|
+
share/python-wheels/
|
|
131
|
+
*.egg-info/
|
|
132
|
+
.installed.cfg
|
|
133
|
+
*.egg
|
|
134
|
+
MANIFEST
|
|
135
|
+
|
|
136
|
+
# PyInstaller
|
|
137
|
+
# Usually these files are written by a python script from a template
|
|
138
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
139
|
+
*.manifest
|
|
140
|
+
*.spec
|
|
141
|
+
|
|
142
|
+
# Installer logs
|
|
143
|
+
pip-log.txt
|
|
144
|
+
pip-delete-this-directory.txt
|
|
145
|
+
|
|
146
|
+
# Unit test / coverage reports
|
|
147
|
+
htmlcov/
|
|
148
|
+
.tox/
|
|
149
|
+
.nox/
|
|
150
|
+
.coverage
|
|
151
|
+
.coverage.*
|
|
152
|
+
.cache
|
|
153
|
+
nosetests.xml
|
|
154
|
+
coverage.xml
|
|
155
|
+
*.cover
|
|
156
|
+
*.py,cover
|
|
157
|
+
.hypothesis/
|
|
158
|
+
.pytest_cache/
|
|
159
|
+
cover/
|
|
160
|
+
|
|
161
|
+
# Translations
|
|
162
|
+
*.mo
|
|
163
|
+
*.pot
|
|
164
|
+
|
|
165
|
+
# Django stuff:
|
|
166
|
+
*.log
|
|
167
|
+
local_settings.py
|
|
168
|
+
db.sqlite3
|
|
169
|
+
db.sqlite3-journal
|
|
170
|
+
|
|
171
|
+
# Flask stuff:
|
|
172
|
+
instance/
|
|
173
|
+
.webassets-cache
|
|
174
|
+
|
|
175
|
+
# Scrapy stuff:
|
|
176
|
+
.scrapy
|
|
177
|
+
|
|
178
|
+
# Sphinx documentation
|
|
179
|
+
docs/_build/
|
|
180
|
+
|
|
181
|
+
# PyBuilder
|
|
182
|
+
.pybuilder/
|
|
183
|
+
target/
|
|
184
|
+
|
|
185
|
+
# Jupyter Notebook
|
|
186
|
+
.ipynb_checkpoints
|
|
187
|
+
|
|
188
|
+
# IPython
|
|
189
|
+
profile_default/
|
|
190
|
+
ipython_config.py
|
|
191
|
+
|
|
192
|
+
# pyenv
|
|
193
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
194
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
195
|
+
# .python-version
|
|
196
|
+
|
|
197
|
+
# pipenv
|
|
198
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
199
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
200
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
201
|
+
# install all needed dependencies.
|
|
202
|
+
#Pipfile.lock
|
|
203
|
+
|
|
204
|
+
# poetry
|
|
205
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
206
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
207
|
+
# commonly ignored for libraries.
|
|
208
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
209
|
+
#poetry.lock
|
|
210
|
+
|
|
211
|
+
# pdm
|
|
212
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
213
|
+
#pdm.lock
|
|
214
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
215
|
+
# in version control.
|
|
216
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
217
|
+
.pdm.toml
|
|
218
|
+
|
|
219
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
220
|
+
__pypackages__/
|
|
221
|
+
|
|
222
|
+
# Celery stuff
|
|
223
|
+
celerybeat-schedule
|
|
224
|
+
celerybeat.pid
|
|
225
|
+
|
|
226
|
+
# SageMath parsed files
|
|
227
|
+
*.sage.py
|
|
228
|
+
|
|
229
|
+
# Environments
|
|
230
|
+
.env
|
|
231
|
+
env/
|
|
232
|
+
venv/
|
|
233
|
+
ENV/
|
|
234
|
+
env.bak/
|
|
235
|
+
venv.bak/
|
|
236
|
+
|
|
237
|
+
# Spyder project settings
|
|
238
|
+
.spyderproject
|
|
239
|
+
.spyproject
|
|
240
|
+
|
|
241
|
+
# Rope project settings
|
|
242
|
+
.ropeproject
|
|
243
|
+
|
|
244
|
+
# mkdocs documentation
|
|
245
|
+
/site
|
|
246
|
+
|
|
247
|
+
# mypy
|
|
248
|
+
.mypy_cache/
|
|
249
|
+
.dmypy.json
|
|
250
|
+
dmypy.json
|
|
251
|
+
|
|
252
|
+
# Pyre type checker
|
|
253
|
+
.pyre/
|
|
254
|
+
|
|
255
|
+
# pytype static type analyzer
|
|
256
|
+
.pytype/
|
|
257
|
+
|
|
258
|
+
# Cython debug symbols
|
|
259
|
+
cython_debug/
|
|
260
|
+
|
|
261
|
+
# PyCharm
|
|
262
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
263
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
264
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
265
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
266
|
+
.idea/
|
|
267
|
+
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stackit-cost
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: STACKIT Cost API
|
|
5
|
+
Project-URL: Homepage, https://github.com/stackitcloud/stackit-sdk-python
|
|
6
|
+
Project-URL: Issues, https://github.com/stackitcloud/stackit-sdk-python/issues
|
|
7
|
+
Author-email: STACKIT Developer Tools <developer-tools@stackit.cloud>
|
|
8
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
17
|
+
Requires-Python: <4.0,>=3.9
|
|
18
|
+
Requires-Dist: pydantic>=2.9.2
|
|
19
|
+
Requires-Dist: python-dateutil>=2.9.0.post0
|
|
20
|
+
Requires-Dist: requests>=2.32.3
|
|
21
|
+
Requires-Dist: stackit-core>=0.0.1a
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
|
|
24
|
+
# stackit.cost
|
|
25
|
+
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
This package is part of the STACKIT Python SDK. For additional information, please visit the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
## Installation & Usage
|
|
33
|
+
### pip install
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
pip install stackit-cost
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Then import the package:
|
|
40
|
+
```python
|
|
41
|
+
import stackit.cost
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Getting Started
|
|
45
|
+
|
|
46
|
+
[Examples](https://github.com/stackitcloud/stackit-sdk-python/tree/main/examples) for the usage of the package can be found in the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# stackit.cost
|
|
2
|
+
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
This package is part of the STACKIT Python SDK. For additional information, please visit the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## Installation & Usage
|
|
10
|
+
### pip install
|
|
11
|
+
|
|
12
|
+
```sh
|
|
13
|
+
pip install stackit-cost
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Then import the package:
|
|
17
|
+
```python
|
|
18
|
+
import stackit.cost
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Getting Started
|
|
22
|
+
|
|
23
|
+
[Examples](https://github.com/stackitcloud/stackit-sdk-python/tree/main/examples) for the usage of the package can be found in the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "stackit-cost"
|
|
3
|
+
version = "v0.1.0"
|
|
4
|
+
description = "STACKIT Cost API"
|
|
5
|
+
authors = [{name = "STACKIT Developer Tools", email = "developer-tools@stackit.cloud"}]
|
|
6
|
+
requires-python = ">=3.9,<4.0"
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
classifiers = [
|
|
9
|
+
"Programming Language :: Python :: 3",
|
|
10
|
+
"License :: OSI Approved :: Apache Software License",
|
|
11
|
+
"Operating System :: OS Independent",
|
|
12
|
+
"Programming Language :: Python :: 3.9",
|
|
13
|
+
"Programming Language :: Python :: 3.10",
|
|
14
|
+
"Programming Language :: Python :: 3.11",
|
|
15
|
+
"Programming Language :: Python :: 3.12",
|
|
16
|
+
"Programming Language :: Python :: 3.13",
|
|
17
|
+
"Programming Language :: Python :: 3.14",
|
|
18
|
+
]
|
|
19
|
+
dependencies = [
|
|
20
|
+
"stackit-core>=0.0.1a",
|
|
21
|
+
"requests>=2.32.3",
|
|
22
|
+
"pydantic>=2.9.2",
|
|
23
|
+
"python-dateutil>=2.9.0.post0",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[project.urls]
|
|
27
|
+
Homepage = "https://github.com/stackitcloud/stackit-sdk-python"
|
|
28
|
+
Issues = "https://github.com/stackitcloud/stackit-sdk-python/issues"
|
|
29
|
+
|
|
30
|
+
[dependency-groups]
|
|
31
|
+
dev = [
|
|
32
|
+
"black>=24.8.0",
|
|
33
|
+
"pytest>=8.3.3",
|
|
34
|
+
"flake8>=5.0.3 ; python_full_version < '3.12'",
|
|
35
|
+
"flake8>=6.0.1 ; python_full_version >= '3.12'",
|
|
36
|
+
"flake8-black>=0.3.6",
|
|
37
|
+
"flake8-pyproject>=1.2.3",
|
|
38
|
+
"autoimport>=1.6.1",
|
|
39
|
+
"flake8-eol>=0.0.8",
|
|
40
|
+
"flake8-eradicate>=1.5.0",
|
|
41
|
+
"flake8-bandit>=4.1.1",
|
|
42
|
+
"flake8-bugbear>=23.1.14",
|
|
43
|
+
"flake8-quotes>=3.4.0",
|
|
44
|
+
"isort>=5.13.2",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[tool.uv]
|
|
48
|
+
default-groups = "all"
|
|
49
|
+
|
|
50
|
+
[tool.uv.sources]
|
|
51
|
+
stackit-core = { path = "../../core" }
|
|
52
|
+
|
|
53
|
+
[tool.hatch.build.targets.sdist]
|
|
54
|
+
include = ["src/stackit"]
|
|
55
|
+
|
|
56
|
+
[tool.hatch.build.targets.wheel]
|
|
57
|
+
include = ["src/stackit"]
|
|
58
|
+
|
|
59
|
+
[tool.hatch.build.targets.wheel-sources]
|
|
60
|
+
"src/stackit" = "stackit"
|
|
61
|
+
|
|
62
|
+
[build-system]
|
|
63
|
+
requires = ["hatchling"]
|
|
64
|
+
build-backend = "hatchling.build"
|
|
65
|
+
|
|
66
|
+
[tool.pytest.ini_options]
|
|
67
|
+
pythonpath = [
|
|
68
|
+
"src"
|
|
69
|
+
]
|
|
70
|
+
testpaths = [
|
|
71
|
+
"tests"
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[tool.black]
|
|
75
|
+
line-length = 120
|
|
76
|
+
exclude = """
|
|
77
|
+
/(
|
|
78
|
+
.eggs
|
|
79
|
+
| .git
|
|
80
|
+
| .hg
|
|
81
|
+
| .mypy_cache
|
|
82
|
+
| .nox
|
|
83
|
+
| .pants.d
|
|
84
|
+
| .tox
|
|
85
|
+
| .venv
|
|
86
|
+
| _build
|
|
87
|
+
| buck-out
|
|
88
|
+
| build
|
|
89
|
+
| dist
|
|
90
|
+
| node_modules
|
|
91
|
+
| venv
|
|
92
|
+
)/
|
|
93
|
+
"""
|
|
94
|
+
|
|
95
|
+
[tool.isort]
|
|
96
|
+
profile = 'black'
|
|
97
|
+
|
|
98
|
+
[tool.flake8]
|
|
99
|
+
exclude= [".eggs", ".git", ".hg", ".mypy_cache", ".tox", ".venv", ".devcontainer", "venv", "_build", "buck-out", "build", "dist"]
|
|
100
|
+
statistics = true
|
|
101
|
+
show-source = false
|
|
102
|
+
max-line-length = 120
|
|
103
|
+
# E203,W503 and E704 are incompatible with the formatter black
|
|
104
|
+
# W291 needs to be disabled because some doc-strings get generated with trailing whitespace but black won't re-format comments
|
|
105
|
+
ignore = ["E203", "W503", "E704", "W291"]
|
|
106
|
+
inline-quotes = '"'
|
|
107
|
+
docstring-quotes = '"""'
|
|
108
|
+
multiline-quotes = '"""'
|
|
109
|
+
ban-relative-imports = true
|
|
110
|
+
# Exclude generated code
|
|
111
|
+
extend-exclude = [ "src/stackit/*/models/*", "src/stackit/*/api/*", "src/stackit/*/*.py" ]
|
|
@@ -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
|
+
)
|