Skip to content

Commit 78e79f5

Browse files
Generate resourcemanager
1 parent d5fef75 commit 78e79f5

14 files changed

+14
-14
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0e64886dd0847341800d7191ed193b75413be998
1+
1580d22d7dd90cfd56802bdda4a61795d1cb9813

services/resourcemanager/src/stackit/resourcemanager/models/create_folder_payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class CreateFolderPayload(BaseModel):
3535
)
3636
labels: Optional[Dict[str, StrictStr]] = Field(
3737
default=None,
38-
description="Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`.",
38+
description='Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network Area, setting the label `"networkArea": "<networkAreaID>"` is required. This can not be changed after project creation.',
3939
)
4040
members: Optional[Annotated[List[Member], Field(min_length=1)]] = Field(
4141
default=None,

services/resourcemanager/src/stackit/resourcemanager/models/create_project_payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class CreateProjectPayload(BaseModel):
3535
)
3636
labels: Optional[Dict[str, StrictStr]] = Field(
3737
default=None,
38-
description="Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`.",
38+
description='Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network Area, setting the label `"networkArea": "<networkAreaID>"` is required. This can not be changed after project creation.',
3939
)
4040
members: Annotated[List[Member], Field(min_length=1)] = Field(
4141
description="The initial members assigned to the project. At least one subject needs to be a user, and not a client or service account."

services/resourcemanager/src/stackit/resourcemanager/models/folder_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class FolderResponse(BaseModel):
3636
folder_id: UUID = Field(description="Globally unique folder identifier.", alias="folderId")
3737
labels: Optional[Dict[str, StrictStr]] = Field(
3838
default=None,
39-
description="Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`.",
39+
description='Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network Area, setting the label `"networkArea": "<networkAreaID>"` is required. This can not be changed after project creation.',
4040
)
4141
name: StrictStr = Field(description="Folder name.")
4242
parent: Parent

services/resourcemanager/src/stackit/resourcemanager/models/get_folder_details_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class GetFolderDetailsResponse(BaseModel):
3737
folder_id: UUID = Field(description="Globally unique folder identifier.", alias="folderId")
3838
labels: Optional[Dict[str, StrictStr]] = Field(
3939
default=None,
40-
description="Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`.",
40+
description='Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network Area, setting the label `"networkArea": "<networkAreaID>"` is required. This can not be changed after project creation.',
4141
)
4242
name: StrictStr = Field(description="Folder name.")
4343
parent: Parent

services/resourcemanager/src/stackit/resourcemanager/models/get_project_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class GetProjectResponse(BaseModel):
3737
creation_time: datetime = Field(description="Timestamp at which the project was created.", alias="creationTime")
3838
labels: Optional[Dict[str, StrictStr]] = Field(
3939
default=None,
40-
description="Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`.",
40+
description='Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network Area, setting the label `"networkArea": "<networkAreaID>"` is required. This can not be changed after project creation.',
4141
)
4242
lifecycle_state: LifecycleState = Field(alias="lifecycleState")
4343
name: StrictStr = Field(description="Project name.")

services/resourcemanager/src/stackit/resourcemanager/models/list_folders_response_items_inner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ListFoldersResponseItemsInner(BaseModel):
3636
folder_id: UUID = Field(description="Globally unique folder identifier.", alias="folderId")
3737
labels: Optional[Dict[str, StrictStr]] = Field(
3838
default=None,
39-
description="Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`.",
39+
description='Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network Area, setting the label `"networkArea": "<networkAreaID>"` is required. This can not be changed after project creation.',
4040
)
4141
name: StrictStr = Field(description="Name of the folder.")
4242
parent: Parent

services/resourcemanager/src/stackit/resourcemanager/models/list_organizations_response_items_inner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class ListOrganizationsResponseItemsInner(BaseModel):
3737
)
3838
labels: Optional[Dict[str, StrictStr]] = Field(
3939
default=None,
40-
description="Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`.",
40+
description='Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network Area, setting the label `"networkArea": "<networkAreaID>"` is required. This can not be changed after project creation.',
4141
)
4242
lifecycle_state: LifecycleState = Field(alias="lifecycleState")
4343
name: StrictStr = Field(description="Name of the organization.")

services/resourcemanager/src/stackit/resourcemanager/models/organization_response.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class OrganizationResponse(BaseModel):
3737
)
3838
labels: Optional[Dict[str, StrictStr]] = Field(
3939
default=None,
40-
description="Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`.",
40+
description='Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network Area, setting the label `"networkArea": "<networkAreaID>"` is required. This can not be changed after project creation.',
4141
)
4242
lifecycle_state: LifecycleState = Field(alias="lifecycleState")
4343
name: StrictStr = Field(description="Organization name.")

services/resourcemanager/src/stackit/resourcemanager/models/partial_update_folder_payload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class PartialUpdateFolderPayload(BaseModel):
3434
)
3535
labels: Optional[Dict[str, StrictStr]] = Field(
3636
default=None,
37-
description="Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`.",
37+
description='Labels are key-value string pairs that can be attached to a resource container. Some labels may be enforced via policies. - A label key must match the regex `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network Area, setting the label `"networkArea": "<networkAreaID>"` is required. This can not be changed after project creation.',
3838
)
3939
name: Optional[Annotated[str, Field(strict=True)]] = Field(
4040
default=None,

0 commit comments

Comments
 (0)