Skip to content

Commit 8100a64

Browse files
committed
reformat files generate lockfile
1 parent e286960 commit 8100a64

1,825 files changed

Lines changed: 9633 additions & 9866 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

core/tests/core/test_auth.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
from stackit.core.authorization import Authorization
1414
from stackit.core.configuration import Configuration
1515

16-
1716
DEFAULT_EMAIL = "email"
1817
DEFAULT_PRIVATE_KEY_PATH = "/path/to/private.key"
1918
DEFAULT_SERVICE_ACCOUNT_TOKEN = "token"
@@ -272,9 +271,11 @@ def test_token_refresh_fails_after_retries(self, service_account_key_file_json):
272271
def set_initial_token(auth):
273272
auth.initial_token = "test-initial-token"
274273

275-
with patch.object(KeyAuth, "_KeyAuth__create_initial_token", new=set_initial_token), patch.object(
276-
KeyAuth, "_KeyAuth__start_token_refresh_task", return_value=None
277-
), patch("requests.post") as mock_post:
274+
with (
275+
patch.object(KeyAuth, "_KeyAuth__create_initial_token", new=set_initial_token),
276+
patch.object(KeyAuth, "_KeyAuth__start_token_refresh_task", return_value=None),
277+
patch("requests.post") as mock_post,
278+
):
278279
init_response = Mock()
279280
init_response.raise_for_status.return_value = None
280281
init_response.json.return_value = {

core/tests/core/test_config.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
from stackit.core.configuration import Configuration
44

5-
65
SERVICE_ACCOUNT_EMAIL = "test@example.org"
76
SERVICE_ACCOUNT_TOKEN = "token"
87
SERVICE_ACCOUNT_KEY_PATH = "/path/to/account/key"

core/uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

services/alb/src/stackit/alb/__init__.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@
33
# flake8: noqa
44

55
"""
6-
STACKIT Application Load Balancer API
6+
STACKIT Application Load Balancer API
77
8-
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
8+
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
99
10-
The version of the OpenAPI document: 2.0.0
11-
Generated by OpenAPI Generator (https://openapi-generator.tech)
10+
The version of the OpenAPI document: 2.0.0
11+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212
13-
Do not edit the class manually.
13+
Do not edit the class manually.
1414
""" # noqa: E501
1515

16-
1716
__version__ = "1.0.0"
1817

1918
# Define package exports

services/alb/src/stackit/alb/api/default_api.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
STACKIT Application Load Balancer API
4+
STACKIT Application Load Balancer API
55
6-
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
6+
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
77
8-
The version of the OpenAPI document: 2.0.0
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: 2.0.0
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
""" # noqa: E501
1313

1414
from typing import Any, Dict, List, Optional, Tuple, Union

services/alb/src/stackit/alb/api_client.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
STACKIT Application Load Balancer API
4+
STACKIT Application Load Balancer API
55
6-
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
6+
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
77
8-
The version of the OpenAPI document: 2.0.0
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: 2.0.0
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
""" # noqa: E501
1313

1414
import datetime
@@ -36,7 +36,6 @@
3636
ApiException,
3737
)
3838

39-
4039
RequestSerialized = Tuple[str, str, Dict[str, str], Optional[str], List[str]]
4140

4241

services/alb/src/stackit/alb/api_response.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
from pydantic import BaseModel, Field, StrictBytes, StrictInt
88

9-
109
T = TypeVar("T")
1110

1211

services/alb/src/stackit/alb/configuration.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
STACKIT Application Load Balancer API
4+
STACKIT Application Load Balancer API
55
6-
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
6+
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
77
8-
The version of the OpenAPI document: 2.0.0
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: 2.0.0
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
""" # noqa: E501
1313

1414
import sys
@@ -18,7 +18,6 @@
1818

1919
import os
2020

21-
2221
ServerVariablesT = Dict[str, str]
2322

2423

services/alb/src/stackit/alb/exceptions.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# coding: utf-8
22

33
"""
4-
STACKIT Application Load Balancer API
4+
STACKIT Application Load Balancer API
55
6-
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
6+
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
77
8-
The version of the OpenAPI document: 2.0.0
9-
Generated by OpenAPI Generator (https://openapi-generator.tech)
8+
The version of the OpenAPI document: 2.0.0
9+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
11-
Do not edit the class manually.
11+
Do not edit the class manually.
1212
""" # noqa: E501
1313

1414
from typing import Any, Optional

services/alb/src/stackit/alb/models/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
# flake8: noqa
44
"""
5-
STACKIT Application Load Balancer API
5+
STACKIT Application Load Balancer API
66
7-
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
7+
This API offers an interface to provision and manage Application Load Balancers in your STACKIT project.This solution offers modern L7 load balancing. Current features include TLS, path and prefix based routing aswell as routing based on headers, query parameters and keeping connections persistent with cookies and web sockets. For each Application Load Balancer provided, two VMs are deployed in your STACKIT project and are subject to fees.
88
9-
The version of the OpenAPI document: 2.0.0
10-
Generated by OpenAPI Generator (https://openapi-generator.tech)
9+
The version of the OpenAPI document: 2.0.0
10+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
12-
Do not edit the class manually.
12+
Do not edit the class manually.
1313
""" # noqa: E501
1414

1515
# import models into model package

0 commit comments

Comments
 (0)