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
2 changes: 1 addition & 1 deletion services/postgresflex/oas_commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
c09e232a83532c75ca1041153e3ebc7ce2d50eb6
e9fe931e91e0b8f067d5c12518398a52062ca794
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ class CloneInstanceOverrides(BaseModel):
CloneInstanceOverrides
""" # noqa: E501

var_class: Optional[StrictStr] = Field(
default=None, description="The storage class for the storage.", alias="class"
)
var_class: StrictStr = Field(description="The storage class for the storage.", alias="class")
name: Optional[Annotated[str, Field(min_length=3, strict=True, max_length=63)]] = Field(
default=None,
description="The name of the cloned instance. If not provided, the default naming behavior of appending '-clone' to the source instance name is used.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ class StorageCreate(BaseModel):
The object containing information about the storage size and class.
""" # noqa: E501

var_class: Optional[StrictStr] = Field(
default=None, description="The storage class for the storage.", alias="class"
)
var_class: StrictStr = Field(description="The storage class for the storage.", alias="class")
size: StrictInt = Field(description="The storage size in Gigabytes.")
__properties: ClassVar[List[str]] = ["class", "size"]

Expand Down
2 changes: 1 addition & 1 deletion services/postgresflex/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading