Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc42ba47

Browse files
Generator: Update SDK /services/loadbalancer (#2320)
Co-authored-by: Ruben Hoenle <Ruben.Hoenle@stackit.cloud>
1 parentdd986d0 commitc42ba47

File tree

6 files changed

+24
-1
lines changed

6 files changed

+24
-1
lines changed

‎CHANGELOG.md‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
-**Feature:** Add new field`DemoUrl` to`CatalogProductDetail` model
1010
-[v1.10.0](services/stackitmarketplace/CHANGELOG.md#v1100)
1111
-**Feature:** Added`PlanId` to`CatalogProductPricingOption` and`SubscriptionProduct`
12+
-`loadbalancer`:[v0.7.0](services/loadbalancer/CHANGELOG.md#v070)
13+
-**Feature**: Add new attribute`labels` to`LoadBalancer`,`CreateLoadBalancerPayload`,`UpdateLoadBalancerPayload` model classes
1214

1315
##Release (2025-09-11)
1416
-`cdn`:[v1.6.0](services/cdn/CHANGELOG.md#v160)

‎services/loadbalancer/CHANGELOG.md‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
##v0.7.0
2+
-**Feature**: Add new attribute`labels` to`LoadBalancer`,`CreateLoadBalancerPayload`,`UpdateLoadBalancerPayload` model classes
3+
14
##v0.6.0
25
-**Version**: Minimal version is now python 3.9
36

‎services/loadbalancer/pyproject.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "stackit-loadbalancer"
33

44
[tool.poetry]
55
name ="stackit-loadbalancer"
6-
version ="v0.6.0"
6+
version ="v0.7.0"
77
authors = [
88
"STACKIT Developer Tools <developer-tools@stackit.cloud>",
99
]

‎services/loadbalancer/src/stackit/loadbalancer/models/create_load_balancer_payload.py‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ class CreateLoadBalancerPayload(BaseModel):
5454
description="External load balancer IP address where this load balancer is exposed. Not changeable after creation.",
5555
alias="externalAddress",
5656
)
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 LB. **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+
)
5761
listeners:Optional[List[Listener]]=Field(
5862
default=None,
5963
description="There is a maximum listener count of 20. Port and protocol limitations: - UDP listeners cannot have the same port. - TCP-derived listeners cannot have the same port. A TCP-derived listener is any listener that listens on a TCP port. As of now those are: TCP, TCP_PROXY, and PROTOCOL_TLS_PASSTHROUGH. The only exception is, if all listeners for the same port are PROTOCOL_TLS_PASSTHROUGH. - PROTOCOL_TLS_PASSTHROUGH listeners cannot have the same port and at least one common domain name. - PROTOCOL_TLS_PASSTHROUGH listeners can have the same domain name and different ports though (e.g. ports 443 and 8443 for domain example.com). - PROTOCOL_TLS_PASSTHROUGH listeners without a domain name serve as a default listener and you can have only one default listener. ",
@@ -101,6 +105,7 @@ class CreateLoadBalancerPayload(BaseModel):
101105
"disableTargetSecurityGroupAssignment",
102106
"errors",
103107
"externalAddress",
108+
"labels",
104109
"listeners",
105110
"loadBalancerSecurityGroup",
106111
"name",
@@ -248,6 +253,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
248253
elseNone
249254
),
250255
"externalAddress":obj.get("externalAddress"),
256+
"labels":obj.get("labels"),
251257
"listeners": (
252258
[Listener.from_dict(_item)for_iteminobj["listeners"]]
253259
ifobj.get("listeners")isnotNone

‎services/loadbalancer/src/stackit/loadbalancer/models/load_balancer.py‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ class LoadBalancer(BaseModel):
5454
description="External load balancer IP address where this load balancer is exposed. Not changeable after creation.",
5555
alias="externalAddress",
5656
)
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 LB. **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+
)
5761
listeners:Optional[List[Listener]]=Field(
5862
default=None,
5963
description="There is a maximum listener count of 20. Port and protocol limitations: - UDP listeners cannot have the same port. - TCP-derived listeners cannot have the same port. A TCP-derived listener is any listener that listens on a TCP port. As of now those are: TCP, TCP_PROXY, and PROTOCOL_TLS_PASSTHROUGH. The only exception is, if all listeners for the same port are PROTOCOL_TLS_PASSTHROUGH. - PROTOCOL_TLS_PASSTHROUGH listeners cannot have the same port and at least one common domain name. - PROTOCOL_TLS_PASSTHROUGH listeners can have the same domain name and different ports though (e.g. ports 443 and 8443 for domain example.com). - PROTOCOL_TLS_PASSTHROUGH listeners without a domain name serve as a default listener and you can have only one default listener. ",
@@ -101,6 +105,7 @@ class LoadBalancer(BaseModel):
101105
"disableTargetSecurityGroupAssignment",
102106
"errors",
103107
"externalAddress",
108+
"labels",
104109
"listeners",
105110
"loadBalancerSecurityGroup",
106111
"name",
@@ -248,6 +253,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
248253
elseNone
249254
),
250255
"externalAddress":obj.get("externalAddress"),
256+
"labels":obj.get("labels"),
251257
"listeners": (
252258
[Listener.from_dict(_item)for_iteminobj["listeners"]]
253259
ifobj.get("listeners")isnotNone

‎services/loadbalancer/src/stackit/loadbalancer/models/update_load_balancer_payload.py‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ class UpdateLoadBalancerPayload(BaseModel):
5454
description="External load balancer IP address where this load balancer is exposed. Not changeable after creation.",
5555
alias="externalAddress",
5656
)
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 LB. **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+
)
5761
listeners:Optional[List[Listener]]=Field(
5862
default=None,
5963
description="There is a maximum listener count of 20. Port and protocol limitations: - UDP listeners cannot have the same port. - TCP-derived listeners cannot have the same port. A TCP-derived listener is any listener that listens on a TCP port. As of now those are: TCP, TCP_PROXY, and PROTOCOL_TLS_PASSTHROUGH. The only exception is, if all listeners for the same port are PROTOCOL_TLS_PASSTHROUGH. - PROTOCOL_TLS_PASSTHROUGH listeners cannot have the same port and at least one common domain name. - PROTOCOL_TLS_PASSTHROUGH listeners can have the same domain name and different ports though (e.g. ports 443 and 8443 for domain example.com). - PROTOCOL_TLS_PASSTHROUGH listeners without a domain name serve as a default listener and you can have only one default listener. ",
@@ -101,6 +105,7 @@ class UpdateLoadBalancerPayload(BaseModel):
101105
"disableTargetSecurityGroupAssignment",
102106
"errors",
103107
"externalAddress",
108+
"labels",
104109
"listeners",
105110
"loadBalancerSecurityGroup",
106111
"name",
@@ -248,6 +253,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
248253
elseNone
249254
),
250255
"externalAddress":obj.get("externalAddress"),
256+
"labels":obj.get("labels"),
251257
"listeners": (
252258
[Listener.from_dict(_item)for_iteminobj["listeners"]]
253259
ifobj.get("listeners")isnotNone

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp