Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions services/logs/src/stackit/logs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501


__version__ = "1.0.0"

# Define package exports
Expand Down
399 changes: 164 additions & 235 deletions services/logs/src/stackit/logs/api/default_api.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion services/logs/src/stackit/logs/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion services/logs/src/stackit/logs/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion services/logs/src/stackit/logs/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
3 changes: 1 addition & 2 deletions services/logs/src/stackit/logs/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,12 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501


# import models into model package
from stackit.logs.models.access_token import AccessToken
from stackit.logs.models.access_token_list import AccessTokenList
Expand Down
5 changes: 3 additions & 2 deletions services/logs/src/stackit/logs/models/access_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand All @@ -18,6 +18,7 @@
import re # noqa: F401
from datetime import datetime
from typing import Any, ClassVar, Dict, List, Optional, Set
from uuid import UUID

from pydantic import (
BaseModel,
Expand Down Expand Up @@ -46,7 +47,7 @@ class AccessToken(BaseModel):
description="The displayed name of the access token.", alias="displayName"
)
expires: StrictBool = Field(description="Indicates if the access token can expire.")
id: StrictStr = Field(description="An auto generated unique id which identifies the access token.")
id: UUID = Field(description="An auto generated unique id which identifies the access token.")
permissions: List[StrictStr] = Field(description="The access permissions granted to the access token.")
status: StrictStr
valid_until: Optional[datetime] = Field(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
5 changes: 3 additions & 2 deletions services/logs/src/stackit/logs/models/logs_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand All @@ -18,6 +18,7 @@
import re # noqa: F401
from datetime import datetime
from typing import Any, ClassVar, Dict, List, Optional, Set
from uuid import UUID

from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
from typing_extensions import Annotated, Self
Expand All @@ -41,7 +42,7 @@ class LogsInstance(BaseModel):
display_name: Annotated[str, Field(min_length=1, strict=True, max_length=32)] = Field(
description="The displayed name of the Logs instance.", alias="displayName"
)
id: StrictStr = Field(description="A auto generated unique id which identifies the Logs instance.")
id: UUID = Field(description="A auto generated unique id which identifies the Logs instance.")
ingest_otlp_url: Optional[StrictStr] = Field(
default=None, description="The Logs instance's ingest logs via OTLP URL", alias="ingestOtlpUrl"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion services/logs/src/stackit/logs/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

This API provides endpoints for managing STACKIT Logs.

The version of the OpenAPI document: 1beta.0.3
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Loading