Skip to content
Closed
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 @@ -44,7 +44,9 @@ class Project(BaseModel):
)
internet_access: Optional[StrictBool] = Field(default=None, alias="internetAccess")
openstack_project_id: Optional[Annotated[str, Field(min_length=32, strict=True, max_length=32)]] = Field(
default=None, description="The identifier (ID) of an OpenStack project.", alias="openstackProjectId"
default=None,
description="The identifier (ID) of the OpenStack project in the main region eu01.",
alias="openstackProjectId",
)
project_id: Annotated[str, Field(min_length=36, strict=True, max_length=36)] = Field(
description="Universally Unique Identifier (UUID).", alias="projectId"
Expand Down Expand Up @@ -115,10 +117,12 @@ def to_dict(self) -> Dict[str, Any]:
are ignored.
* OpenAPI `readOnly` fields are excluded.
* OpenAPI `readOnly` fields are excluded.
* OpenAPI `readOnly` fields are excluded.
"""
excluded_fields: Set[str] = set(
[
"created_at",
"openstack_project_id",
"updated_at",
]
)
Expand Down
Loading