You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services/alb/src/stackit/alb/models/create_load_balancer_payload.py
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,10 @@ class CreateLoadBalancerPayload(BaseModel):
54
54
description="External application load balancer IP address where this application load balancer is exposed. Not changeable after creation.",
55
55
alias="externalAddress",
56
56
)
57
+
labels: Optional[Dict[str, StrictStr]] =Field(
58
+
default=None,
59
+
description="Labels represent user-defined metadata as key-value pairs. Label count should not exceed 64 per ALB. **Key Formatting Rules:** Length: 1-63 characters. Characters: Must begin and end with [a-zA-Z0-9]. May contain dashes (-), underscores (_), dots (.), and alphanumerics in between. Keys starting with 'stackit-' are system-reserved; users MUST NOT manage them. **Value Formatting Rules:** Length: 0-63 characters (empty string explicitly allowed). Characters (for non-empty values): Must begin and end with [a-zA-Z0-9]. May contain dashes (-), underscores (_), dots (.), and alphanumerics in between. ",
60
+
)
57
61
listeners: Optional[List[Listener]] =Field(default=None, description="There is a maximum listener count of 20. ")
description='Enable Web Application Firewall (WAF), referenced to a by name. See "Application Load Balancer - Web Application Firewall API" for more information.',
Copy file name to clipboardExpand all lines: services/alb/src/stackit/alb/models/load_balancer.py
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,10 @@ class LoadBalancer(BaseModel):
54
54
description="External application load balancer IP address where this application load balancer is exposed. Not changeable after creation.",
55
55
alias="externalAddress",
56
56
)
57
+
labels: Optional[Dict[str, StrictStr]] =Field(
58
+
default=None,
59
+
description="Labels represent user-defined metadata as key-value pairs. Label count should not exceed 64 per ALB. **Key Formatting Rules:** Length: 1-63 characters. Characters: Must begin and end with [a-zA-Z0-9]. May contain dashes (-), underscores (_), dots (.), and alphanumerics in between. Keys starting with 'stackit-' are system-reserved; users MUST NOT manage them. **Value Formatting Rules:** Length: 0-63 characters (empty string explicitly allowed). Characters (for non-empty values): Must begin and end with [a-zA-Z0-9]. May contain dashes (-), underscores (_), dots (.), and alphanumerics in between. ",
60
+
)
57
61
listeners: Optional[List[Listener]] =Field(default=None, description="There is a maximum listener count of 20. ")
Copy file name to clipboardExpand all lines: services/alb/src/stackit/alb/models/update_load_balancer_payload.py
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,10 @@ class UpdateLoadBalancerPayload(BaseModel):
54
54
description="External application load balancer IP address where this application load balancer is exposed. Not changeable after creation.",
55
55
alias="externalAddress",
56
56
)
57
+
labels: Optional[Dict[str, StrictStr]] =Field(
58
+
default=None,
59
+
description="Labels represent user-defined metadata as key-value pairs. Label count should not exceed 64 per ALB. **Key Formatting Rules:** Length: 1-63 characters. Characters: Must begin and end with [a-zA-Z0-9]. May contain dashes (-), underscores (_), dots (.), and alphanumerics in between. Keys starting with 'stackit-' are system-reserved; users MUST NOT manage them. **Value Formatting Rules:** Length: 0-63 characters (empty string explicitly allowed). Characters (for non-empty values): Must begin and end with [a-zA-Z0-9]. May contain dashes (-), underscores (_), dots (.), and alphanumerics in between. ",
60
+
)
57
61
listeners: Optional[List[Listener]] =Field(default=None, description="There is a maximum listener count of 20. ")
0 commit comments