Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@

from typing import ClassVar

_OPENAPI_TYPES_LOGSARCHIVESTORAGECLASSS3TYPE = {
"value": (str,),
}


class LogsArchiveStorageClassS3Type(ModelSimple):
"""
Expand All @@ -35,9 +39,8 @@ class LogsArchiveStorageClassS3Type(ModelSimple):

@cached_property
def openapi_types(_):
return {
"value": (str,),
}
# Move the dictionary creation to a constant to avoid repeated instantiation
return _OPENAPI_TYPES_LOGSARCHIVESTORAGECLASSS3TYPE


LogsArchiveStorageClassS3Type.STANDARD = LogsArchiveStorageClassS3Type("STANDARD")
Expand Down