Skip to content

Commit a987943

Browse files
Generator: Update SDK /services/loadbalancer (#59)
* Generate loadbalancer * Update pyproject.toml --------- Co-authored-by: Melvin <[email protected]>
1 parent 24ac3f3 commit a987943

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

services/loadbalancer/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# stackit.loadbalancer
2+
This API offers an interface to provision and manage load balancing servers in your STACKIT project. It also has the possibility of pooling target servers for load balancing purposes.
3+
4+
For each load balancer provided, two VMs are deployed in your OpenStack project subject to a fee.
5+
6+
7+
This package is part of the STACKIT Python SDK. For additional information, please visit the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.
8+
9+
10+
## Installation & Usage
11+
### pip install
12+
13+
```sh
14+
pip install stackit-loadbalancer
15+
```
16+
17+
Then import the package:
18+
```python
19+
import stackit.loadbalancer
20+
```
21+
22+
## Getting Started
23+
24+
[Examples](https://github.com/stackitcloud/stackit-sdk-python/tree/main/examples) for the usage of the package can be found in the [GitHub repository](https://github.com/stackitcloud/stackit-sdk-python) of the SDK.

services/loadbalancer/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = [
55
"OpenAPI Generator Community <[email protected]>",
66
]
77
description = "Load Balancer API"
8-
#readme = "README.md"
8+
readme = "README.md"
99
#license = "NoLicense"
1010
classifiers = [
1111
"Programming Language :: Python :: 3",
@@ -102,4 +102,4 @@ per-file-ignores = """
102102
# E501: long descriptions/string values might lead to lines that are too long
103103
# B028: stacklevel for deprecation warning is irrelevant
104104
./src/stackit/*/api/default_api.py: F841,B028,E501
105-
"""
105+
"""

0 commit comments

Comments
 (0)