Skip to content

Commit 382a1a6

Browse files
Generate git
1 parent d14550d commit 382a1a6

37 files changed

Lines changed: 2238 additions & 356 deletions

services/git/oas_commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0e64886dd0847341800d7191ed193b75413be998
1+
876a48fb56473c7c844baa697906d461c0675f47

services/git/src/stackit/git/__init__.py

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

55
"""
6-
STACKIT Git API
6+
STACKIT Git API
77
8-
STACKIT Git management API.
8+
STACKIT Git management API.
99
10-
The version of the OpenAPI document: 1beta.0.4
11-
Contact: git@stackit.cloud
12-
Generated by OpenAPI Generator (https://openapi-generator.tech)
10+
The version of the OpenAPI document: 1beta.0.4
11+
Contact: git@stackit.cloud
12+
Generated by OpenAPI Generator (https://openapi-generator.tech)
1313
14-
Do not edit the class manually.
14+
Do not edit the class manually.
1515
""" # noqa: E501
1616

17+
1718
__version__ = "1.0.0"
1819

1920
# Define package exports
@@ -36,21 +37,26 @@
3637
"CreateAuthenticationPayload",
3738
"CreateInstancePayload",
3839
"CreateRunnerPayload",
40+
"CreateUserPayload",
3941
"FeatureToggle",
4042
"Flavor",
4143
"GenericErrorResponse",
4244
"Instance",
4345
"InternalServerErrorResponse",
4446
"ListFlavors",
4547
"ListInstances",
48+
"ListUsers",
4649
"NotFoundErrorResponse",
4750
"PatchAuthenticationPayload",
4851
"PatchInstancePayload",
4952
"PatchOperation",
53+
"PatchUserPayload",
54+
"Pipelines",
5055
"Runner",
5156
"RunnerRuntime",
5257
"RunnerRuntimeList",
5358
"UnauthorizedErrorResponse",
59+
"User",
5460
]
5561

5662
# import apis into sdk package
@@ -88,6 +94,9 @@
8894
from stackit.git.models.create_runner_payload import (
8995
CreateRunnerPayload as CreateRunnerPayload,
9096
)
97+
from stackit.git.models.create_user_payload import (
98+
CreateUserPayload as CreateUserPayload,
99+
)
91100
from stackit.git.models.feature_toggle import FeatureToggle as FeatureToggle
92101
from stackit.git.models.flavor import Flavor as Flavor
93102
from stackit.git.models.generic_error_response import (
@@ -99,6 +108,7 @@
99108
)
100109
from stackit.git.models.list_flavors import ListFlavors as ListFlavors
101110
from stackit.git.models.list_instances import ListInstances as ListInstances
111+
from stackit.git.models.list_users import ListUsers as ListUsers
102112
from stackit.git.models.not_found_error_response import (
103113
NotFoundErrorResponse as NotFoundErrorResponse,
104114
)
@@ -109,6 +119,8 @@
109119
PatchInstancePayload as PatchInstancePayload,
110120
)
111121
from stackit.git.models.patch_operation import PatchOperation as PatchOperation
122+
from stackit.git.models.patch_user_payload import PatchUserPayload as PatchUserPayload
123+
from stackit.git.models.pipelines import Pipelines as Pipelines
112124
from stackit.git.models.runner import Runner as Runner
113125
from stackit.git.models.runner_runtime import RunnerRuntime as RunnerRuntime
114126
from stackit.git.models.runner_runtime_list import (
@@ -117,3 +129,4 @@
117129
from stackit.git.models.unauthorized_error_response import (
118130
UnauthorizedErrorResponse as UnauthorizedErrorResponse,
119131
)
132+
from stackit.git.models.user import User as User

0 commit comments

Comments
 (0)