Skip to content

Commit 1a0a178

Browse files
Generate cost
1 parent d14550d commit 1a0a178

20 files changed

Lines changed: 97 additions & 91 deletions

services/cost/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4407196dbbef4e53e6798809e856725cbc84ae05
1+
876a48fb56473c7c844baa697906d461c0675f47

services/cost/src/stackit/cost/__init__.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@
33
# flake8: noqa
44

55
"""
6-
STACKIT Cost API
6+
STACKIT Cost API
77
8-
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
8+
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
99
10-
The version of the OpenAPI document: 3.0
11-
Generated by OpenAPI Generator (https://openapi-generator.tech)
10+
The version of the OpenAPI document: 3.0
11+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
13-
Do not edit the class manually.
13+
Do not edit the class manually.
1414
""" # noqa: E501
1515

16+
1617
__version__ = "1.0.0"
1718

1819
# Define package exports

services/cost/src/stackit/cost/api/default_api.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
STACKIT Cost API
4+
STACKIT Cost API
55
6-
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
6+
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
77
8-
The version of the OpenAPI document: 3.0
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: 3.0
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
""" # noqa: E501
1313

1414
from datetime import date

services/cost/src/stackit/cost/api_client.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
STACKIT Cost API
4+
STACKIT Cost API
55
6-
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
6+
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
77
8-
The version of the OpenAPI document: 3.0
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: 3.0
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
""" # noqa: E501
1313

1414
import datetime
@@ -36,6 +36,7 @@
3636
ApiException,
3737
)
3838

39+
3940
RequestSerialized = Tuple[str, str, Dict[str, str], Optional[str], List[str]]
4041

4142

services/cost/src/stackit/cost/api_response.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
from pydantic import BaseModel, Field, StrictBytes, StrictInt
88

9+
910
T = TypeVar("T")
1011

1112

services/cost/src/stackit/cost/configuration.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
STACKIT Cost API
4+
STACKIT Cost API
55
6-
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
6+
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
77
8-
The version of the OpenAPI document: 3.0
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: 3.0
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
""" # noqa: E501
1313

1414
import sys
@@ -18,6 +18,7 @@
1818

1919
import os
2020

21+
2122
ServerVariablesT = Dict[str, str]
2223

2324

services/cost/src/stackit/cost/exceptions.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
STACKIT Cost API
4+
STACKIT Cost API
55
6-
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
6+
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
77
8-
The version of the OpenAPI document: 3.0
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: 3.0
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
""" # noqa: E501
1313

1414
from typing import Any, Optional

services/cost/src/stackit/cost/models/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
# flake8: noqa
44
"""
5-
STACKIT Cost API
5+
STACKIT Cost API
66
7-
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
7+
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
88
9-
The version of the OpenAPI document: 3.0
10-
Generated by OpenAPI Generator (https://openapi-generator.tech)
9+
The version of the OpenAPI document: 3.0
10+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
12-
Do not edit the class manually.
12+
Do not edit the class manually.
1313
""" # noqa: E501
1414

1515
# import models into model package

services/cost/src/stackit/cost/models/auth_error_response.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
STACKIT Cost API
4+
STACKIT Cost API
55
6-
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
6+
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
77
8-
The version of the OpenAPI document: 3.0
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: 3.0
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
""" # noqa: E501
1313

1414
from __future__ import annotations

services/cost/src/stackit/cost/models/detailed_service_cost.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
STACKIT Cost API
4+
STACKIT Cost API
55
6-
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
6+
The cost API provides detailed reports on the costs for a customer or project over a certain amount of time
77
8-
The version of the OpenAPI document: 3.0
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: 3.0
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
""" # noqa: E501
1313

1414
from __future__ import annotations

0 commit comments

Comments
 (0)