Skip to content

Commit e080bb2

Browse files
Generate lbapplication
1 parent 0f573e1 commit e080bb2

File tree

7 files changed

+14
-52
lines changed

7 files changed

+14
-52
lines changed

services/lbapplication/src/stackit/lbapplication/models/active_health_check.py

+3-13
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import re
1919
from typing import Any, ClassVar, Dict, List, Optional, Set
2020

21-
from pydantic import BaseModel, ConfigDict, Field, field_validator
21+
from pydantic import BaseModel, ConfigDict, Field, StrictInt, field_validator
2222
from typing_extensions import Annotated, Self
2323

2424
from stackit.lbapplication.models.http_health_checks import HttpHealthChecks
@@ -29,7 +29,7 @@ class ActiveHealthCheck(BaseModel):
2929
ActiveHealthCheck
3030
"""
3131

32-
healthy_threshold: Optional[Any] = Field(
32+
healthy_threshold: Optional[StrictInt] = Field(
3333
default=None, description="Healthy threshold of the health checking", alias="healthyThreshold"
3434
)
3535
http_health_checks: Optional[HttpHealthChecks] = Field(default=None, alias="httpHealthChecks")
@@ -44,7 +44,7 @@ class ActiveHealthCheck(BaseModel):
4444
timeout: Optional[Annotated[str, Field(strict=True)]] = Field(
4545
default=None, description="Active health checking timeout duration in seconds"
4646
)
47-
unhealthy_threshold: Optional[Any] = Field(
47+
unhealthy_threshold: Optional[StrictInt] = Field(
4848
default=None, description="Unhealthy threshold of the health checking", alias="unhealthyThreshold"
4949
)
5050
__properties: ClassVar[List[str]] = [
@@ -126,16 +126,6 @@ def to_dict(self) -> Dict[str, Any]:
126126
# override the default output from pydantic by calling `to_dict()` of http_health_checks
127127
if self.http_health_checks:
128128
_dict["httpHealthChecks"] = self.http_health_checks.to_dict()
129-
# set to None if healthy_threshold (nullable) is None
130-
# and model_fields_set contains the field
131-
if self.healthy_threshold is None and "healthy_threshold" in self.model_fields_set:
132-
_dict["healthyThreshold"] = None
133-
134-
# set to None if unhealthy_threshold (nullable) is None
135-
# and model_fields_set contains the field
136-
if self.unhealthy_threshold is None and "unhealthy_threshold" in self.model_fields_set:
137-
_dict["unhealthyThreshold"] = None
138-
139129
return _dict
140130

141131
@classmethod

services/lbapplication/src/stackit/lbapplication/models/get_quota_response.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class GetQuotaResponse(BaseModel):
2727
GetQuotaResponse
2828
"""
2929

30-
max_load_balancers: Optional[Any] = Field(
30+
max_load_balancers: Optional[Annotated[int, Field(le=999, strict=True, ge=-1)]] = Field(
3131
default=None,
3232
description="The maximum number of load balancing servers in this project. Unlimited if set to -1.",
3333
alias="maxLoadBalancers",
@@ -91,11 +91,6 @@ def to_dict(self) -> Dict[str, Any]:
9191
exclude=excluded_fields,
9292
exclude_none=True,
9393
)
94-
# set to None if max_load_balancers (nullable) is None
95-
# and model_fields_set contains the field
96-
if self.max_load_balancers is None and "max_load_balancers" in self.model_fields_set:
97-
_dict["maxLoadBalancers"] = None
98-
9994
return _dict
10095

10196
@classmethod

services/lbapplication/src/stackit/lbapplication/models/listener.py

+4-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from typing import Any, ClassVar, Dict, List, Optional, Set
1919

2020
from pydantic import BaseModel, ConfigDict, Field, StrictStr, field_validator
21-
from typing_extensions import Self
21+
from typing_extensions import Annotated, Self
2222

2323
from stackit.lbapplication.models.protocol_options_https import ProtocolOptionsHTTPS
2424
from stackit.lbapplication.models.rule import Rule
@@ -36,7 +36,9 @@ class Listener(BaseModel):
3636
default=None,
3737
description="Will be used to reference a listener and will replace display name in the future. Currently uses <protocol>-<port> as the name if no display name is given.",
3838
)
39-
port: Optional[Any] = Field(default=None, description="Port number where we listen for traffic")
39+
port: Optional[Annotated[int, Field(le=65535, strict=True, ge=1)]] = Field(
40+
default=None, description="Port number where we listen for traffic"
41+
)
4042
protocol: Optional[StrictStr] = Field(
4143
default=None,
4244
description="Protocol is the highest network protocol we understand to load balance. Currently PROTOCOL_HTTP and PROTOCOL_HTTPS are supported.",
@@ -108,11 +110,6 @@ def to_dict(self) -> Dict[str, Any]:
108110
if _item:
109111
_items.append(_item.to_dict())
110112
_dict["rules"] = _items
111-
# set to None if port (nullable) is None
112-
# and model_fields_set contains the field
113-
if self.port is None and "port" in self.model_fields_set:
114-
_dict["port"] = None
115-
116113
return _dict
117114

118115
@classmethod

services/lbapplication/src/stackit/lbapplication/models/plan_details.py

+2-7
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import pprint
1818
from typing import Any, ClassVar, Dict, List, Optional, Set
1919

20-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
20+
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
2121
from typing_extensions import Self
2222

2323

@@ -28,7 +28,7 @@ class PlanDetails(BaseModel):
2828

2929
description: Optional[StrictStr] = Field(default=None, description="Description")
3030
flavor_name: Optional[StrictStr] = Field(default=None, description="Flavor Name", alias="flavorName")
31-
max_connections: Optional[Any] = Field(
31+
max_connections: Optional[StrictInt] = Field(
3232
default=None,
3333
description="Maximum number of concurrent connections per application load balancer VM instance.",
3434
alias="maxConnections",
@@ -74,11 +74,6 @@ def to_dict(self) -> Dict[str, Any]:
7474
exclude=excluded_fields,
7575
exclude_none=True,
7676
)
77-
# set to None if max_connections (nullable) is None
78-
# and model_fields_set contains the field
79-
if self.max_connections is None and "max_connections" in self.model_fields_set:
80-
_dict["maxConnections"] = None
81-
8277
return _dict
8378

8479
@classmethod

services/lbapplication/src/stackit/lbapplication/models/status.py

+2-7
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import pprint
1818
from typing import Any, ClassVar, Dict, List, Optional, Set
1919

20-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
20+
from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr
2121
from typing_extensions import Self
2222

2323
from stackit.lbapplication.models.google_protobuf_any import GoogleProtobufAny
@@ -28,7 +28,7 @@ class Status(BaseModel):
2828
The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
2929
"""
3030

31-
code: Optional[Any] = Field(
31+
code: Optional[StrictInt] = Field(
3232
default=None,
3333
description="The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].",
3434
)
@@ -86,11 +86,6 @@ def to_dict(self) -> Dict[str, Any]:
8686
if _item:
8787
_items.append(_item.to_dict())
8888
_dict["details"] = _items
89-
# set to None if code (nullable) is None
90-
# and model_fields_set contains the field
91-
if self.code is None and "code" in self.model_fields_set:
92-
_dict["code"] = None
93-
9489
return _dict
9590

9691
@classmethod

services/lbapplication/src/stackit/lbapplication/models/target_pool.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class TargetPool(BaseModel):
3232

3333
active_health_check: Optional[ActiveHealthCheck] = Field(default=None, alias="activeHealthCheck")
3434
name: Optional[Annotated[str, Field(strict=True)]] = Field(default=None, description="Target pool name")
35-
target_port: Optional[Any] = Field(
35+
target_port: Optional[Annotated[int, Field(le=65535, strict=True, ge=1)]] = Field(
3636
default=None,
3737
description="The number identifying the port where each target listens for traffic.",
3838
alias="targetPort",
@@ -99,11 +99,6 @@ def to_dict(self) -> Dict[str, Any]:
9999
if _item:
100100
_items.append(_item.to_dict())
101101
_dict["targets"] = _items
102-
# set to None if target_port (nullable) is None
103-
# and model_fields_set contains the field
104-
if self.target_port is None and "target_port" in self.model_fields_set:
105-
_dict["targetPort"] = None
106-
107102
return _dict
108103

109104
@classmethod

services/lbapplication/src/stackit/lbapplication/models/update_target_pool_payload.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class UpdateTargetPoolPayload(BaseModel):
3232

3333
active_health_check: Optional[ActiveHealthCheck] = Field(default=None, alias="activeHealthCheck")
3434
name: Optional[Annotated[str, Field(strict=True)]] = Field(default=None, description="Target pool name")
35-
target_port: Optional[Any] = Field(
35+
target_port: Optional[Annotated[int, Field(le=65535, strict=True, ge=1)]] = Field(
3636
default=None,
3737
description="The number identifying the port where each target listens for traffic.",
3838
alias="targetPort",
@@ -99,11 +99,6 @@ def to_dict(self) -> Dict[str, Any]:
9999
if _item:
100100
_items.append(_item.to_dict())
101101
_dict["targets"] = _items
102-
# set to None if target_port (nullable) is None
103-
# and model_fields_set contains the field
104-
if self.target_port is None and "target_port" in self.model_fields_set:
105-
_dict["targetPort"] = None
106-
107102
return _dict
108103

109104
@classmethod

0 commit comments

Comments
 (0)