Skip to content

Commit 22cd410

Browse files
Generate logs
1 parent d38df9f commit 22cd410

15 files changed

+182
-253
lines changed

services/logs/src/stackit/logs/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,12 @@
77
88
This API provides endpoints for managing STACKIT Logs.
99
10-
The version of the OpenAPI document: 1beta.0.3
10+
The version of the OpenAPI document: 1.0.0
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
1313
Do not edit the class manually.
1414
""" # noqa: E501
1515

16-
1716
__version__ = "1.0.0"
1817

1918
# Define package exports

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

Lines changed: 164 additions & 235 deletions
Large diffs are not rendered by default.

services/logs/src/stackit/logs/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This API provides endpoints for managing STACKIT Logs.
77
8-
The version of the OpenAPI document: 1beta.0.3
8+
The version of the OpenAPI document: 1.0.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

services/logs/src/stackit/logs/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This API provides endpoints for managing STACKIT Logs.
77
8-
The version of the OpenAPI document: 1beta.0.3
8+
The version of the OpenAPI document: 1.0.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

services/logs/src/stackit/logs/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This API provides endpoints for managing STACKIT Logs.
77
8-
The version of the OpenAPI document: 1beta.0.3
8+
The version of the OpenAPI document: 1.0.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@
66
77
This API provides endpoints for managing STACKIT Logs.
88
9-
The version of the OpenAPI document: 1beta.0.3
9+
The version of the OpenAPI document: 1.0.0
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
1212
Do not edit the class manually.
1313
""" # noqa: E501
1414

15-
1615
# import models into model package
1716
from stackit.logs.models.access_token import AccessToken
1817
from stackit.logs.models.access_token_list import AccessTokenList

services/logs/src/stackit/logs/models/access_token.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This API provides endpoints for managing STACKIT Logs.
77
8-
The version of the OpenAPI document: 1beta.0.3
8+
The version of the OpenAPI document: 1.0.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.
@@ -18,6 +18,7 @@
1818
import re # noqa: F401
1919
from datetime import datetime
2020
from typing import Any, ClassVar, Dict, List, Optional, Set
21+
from uuid import UUID
2122

2223
from pydantic import (
2324
BaseModel,
@@ -46,7 +47,7 @@ class AccessToken(BaseModel):
4647
description="The displayed name of the access token.", alias="displayName"
4748
)
4849
expires: StrictBool = Field(description="Indicates if the access token can expire.")
49-
id: StrictStr = Field(description="An auto generated unique id which identifies the access token.")
50+
id: UUID = Field(description="An auto generated unique id which identifies the access token.")
5051
permissions: List[StrictStr] = Field(description="The access permissions granted to the access token.")
5152
status: StrictStr
5253
valid_until: Optional[datetime] = Field(

services/logs/src/stackit/logs/models/access_token_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This API provides endpoints for managing STACKIT Logs.
77
8-
The version of the OpenAPI document: 1beta.0.3
8+
The version of the OpenAPI document: 1.0.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

services/logs/src/stackit/logs/models/create_access_token_payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This API provides endpoints for managing STACKIT Logs.
77
8-
The version of the OpenAPI document: 1beta.0.3
8+
The version of the OpenAPI document: 1.0.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

services/logs/src/stackit/logs/models/create_logs_instance_payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
This API provides endpoints for managing STACKIT Logs.
77
8-
The version of the OpenAPI document: 1beta.0.3
8+
The version of the OpenAPI document: 1.0.0
99
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111
Do not edit the class manually.

0 commit comments

Comments
 (0)