Skip to content

Commit 2ebf84b

Browse files
Generate lbapplication (#767)
Co-authored-by: Rüdiger Schmitz <[email protected]>
1 parent 9fc2fa3 commit 2ebf84b

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

Diff for: services/lbapplication/src/stackit/lbapplication/api/default_api.py

+32-32
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ def __init__(self, configuration: Configuration = None) -> None:
7575
def create_credentials(
7676
self,
7777
project_id: StrictStr,
78-
x_request_id: StrictStr,
7978
create_credentials_payload: CreateCredentialsPayload,
79+
x_request_id: Optional[StrictStr] = None,
8080
_request_timeout: Union[
8181
None,
8282
Annotated[StrictFloat, Field(gt=0)],
@@ -93,10 +93,10 @@ def create_credentials(
9393
9494
:param project_id: (required)
9595
:type project_id: str
96-
:param x_request_id: (required)
97-
:type x_request_id: str
9896
:param create_credentials_payload: (required)
9997
:type create_credentials_payload: CreateCredentialsPayload
98+
:param x_request_id:
99+
:type x_request_id: str
100100
:param _request_timeout: timeout setting for this request. If one
101101
number provided, it will be total request
102102
timeout. It can also be a pair (tuple) of
@@ -121,8 +121,8 @@ def create_credentials(
121121

122122
_param = self._create_credentials_serialize(
123123
project_id=project_id,
124-
x_request_id=x_request_id,
125124
create_credentials_payload=create_credentials_payload,
125+
x_request_id=x_request_id,
126126
_request_auth=_request_auth,
127127
_content_type=_content_type,
128128
_headers=_headers,
@@ -147,8 +147,8 @@ def create_credentials(
147147
def create_credentials_with_http_info(
148148
self,
149149
project_id: StrictStr,
150-
x_request_id: StrictStr,
151150
create_credentials_payload: CreateCredentialsPayload,
151+
x_request_id: Optional[StrictStr] = None,
152152
_request_timeout: Union[
153153
None,
154154
Annotated[StrictFloat, Field(gt=0)],
@@ -165,10 +165,10 @@ def create_credentials_with_http_info(
165165
166166
:param project_id: (required)
167167
:type project_id: str
168-
:param x_request_id: (required)
169-
:type x_request_id: str
170168
:param create_credentials_payload: (required)
171169
:type create_credentials_payload: CreateCredentialsPayload
170+
:param x_request_id:
171+
:type x_request_id: str
172172
:param _request_timeout: timeout setting for this request. If one
173173
number provided, it will be total request
174174
timeout. It can also be a pair (tuple) of
@@ -193,8 +193,8 @@ def create_credentials_with_http_info(
193193

194194
_param = self._create_credentials_serialize(
195195
project_id=project_id,
196-
x_request_id=x_request_id,
197196
create_credentials_payload=create_credentials_payload,
197+
x_request_id=x_request_id,
198198
_request_auth=_request_auth,
199199
_content_type=_content_type,
200200
_headers=_headers,
@@ -219,8 +219,8 @@ def create_credentials_with_http_info(
219219
def create_credentials_without_preload_content(
220220
self,
221221
project_id: StrictStr,
222-
x_request_id: StrictStr,
223222
create_credentials_payload: CreateCredentialsPayload,
223+
x_request_id: Optional[StrictStr] = None,
224224
_request_timeout: Union[
225225
None,
226226
Annotated[StrictFloat, Field(gt=0)],
@@ -237,10 +237,10 @@ def create_credentials_without_preload_content(
237237
238238
:param project_id: (required)
239239
:type project_id: str
240-
:param x_request_id: (required)
241-
:type x_request_id: str
242240
:param create_credentials_payload: (required)
243241
:type create_credentials_payload: CreateCredentialsPayload
242+
:param x_request_id:
243+
:type x_request_id: str
244244
:param _request_timeout: timeout setting for this request. If one
245245
number provided, it will be total request
246246
timeout. It can also be a pair (tuple) of
@@ -265,8 +265,8 @@ def create_credentials_without_preload_content(
265265

266266
_param = self._create_credentials_serialize(
267267
project_id=project_id,
268-
x_request_id=x_request_id,
269268
create_credentials_payload=create_credentials_payload,
269+
x_request_id=x_request_id,
270270
_request_auth=_request_auth,
271271
_content_type=_content_type,
272272
_headers=_headers,
@@ -286,8 +286,8 @@ def create_credentials_without_preload_content(
286286
def _create_credentials_serialize(
287287
self,
288288
project_id,
289-
x_request_id,
290289
create_credentials_payload,
290+
x_request_id,
291291
_request_auth,
292292
_content_type,
293293
_headers,
@@ -351,8 +351,8 @@ def _create_credentials_serialize(
351351
def create_load_balancer(
352352
self,
353353
project_id: StrictStr,
354-
x_request_id: StrictStr,
355354
create_load_balancer_payload: CreateLoadBalancerPayload,
355+
x_request_id: Optional[StrictStr] = None,
356356
_request_timeout: Union[
357357
None,
358358
Annotated[StrictFloat, Field(gt=0)],
@@ -369,10 +369,10 @@ def create_load_balancer(
369369
370370
:param project_id: (required)
371371
:type project_id: str
372-
:param x_request_id: (required)
373-
:type x_request_id: str
374372
:param create_load_balancer_payload: (required)
375373
:type create_load_balancer_payload: CreateLoadBalancerPayload
374+
:param x_request_id:
375+
:type x_request_id: str
376376
:param _request_timeout: timeout setting for this request. If one
377377
number provided, it will be total request
378378
timeout. It can also be a pair (tuple) of
@@ -397,8 +397,8 @@ def create_load_balancer(
397397

398398
_param = self._create_load_balancer_serialize(
399399
project_id=project_id,
400-
x_request_id=x_request_id,
401400
create_load_balancer_payload=create_load_balancer_payload,
401+
x_request_id=x_request_id,
402402
_request_auth=_request_auth,
403403
_content_type=_content_type,
404404
_headers=_headers,
@@ -424,8 +424,8 @@ def create_load_balancer(
424424
def create_load_balancer_with_http_info(
425425
self,
426426
project_id: StrictStr,
427-
x_request_id: StrictStr,
428427
create_load_balancer_payload: CreateLoadBalancerPayload,
428+
x_request_id: Optional[StrictStr] = None,
429429
_request_timeout: Union[
430430
None,
431431
Annotated[StrictFloat, Field(gt=0)],
@@ -442,10 +442,10 @@ def create_load_balancer_with_http_info(
442442
443443
:param project_id: (required)
444444
:type project_id: str
445-
:param x_request_id: (required)
446-
:type x_request_id: str
447445
:param create_load_balancer_payload: (required)
448446
:type create_load_balancer_payload: CreateLoadBalancerPayload
447+
:param x_request_id:
448+
:type x_request_id: str
449449
:param _request_timeout: timeout setting for this request. If one
450450
number provided, it will be total request
451451
timeout. It can also be a pair (tuple) of
@@ -470,8 +470,8 @@ def create_load_balancer_with_http_info(
470470

471471
_param = self._create_load_balancer_serialize(
472472
project_id=project_id,
473-
x_request_id=x_request_id,
474473
create_load_balancer_payload=create_load_balancer_payload,
474+
x_request_id=x_request_id,
475475
_request_auth=_request_auth,
476476
_content_type=_content_type,
477477
_headers=_headers,
@@ -497,8 +497,8 @@ def create_load_balancer_with_http_info(
497497
def create_load_balancer_without_preload_content(
498498
self,
499499
project_id: StrictStr,
500-
x_request_id: StrictStr,
501500
create_load_balancer_payload: CreateLoadBalancerPayload,
501+
x_request_id: Optional[StrictStr] = None,
502502
_request_timeout: Union[
503503
None,
504504
Annotated[StrictFloat, Field(gt=0)],
@@ -515,10 +515,10 @@ def create_load_balancer_without_preload_content(
515515
516516
:param project_id: (required)
517517
:type project_id: str
518-
:param x_request_id: (required)
519-
:type x_request_id: str
520518
:param create_load_balancer_payload: (required)
521519
:type create_load_balancer_payload: CreateLoadBalancerPayload
520+
:param x_request_id:
521+
:type x_request_id: str
522522
:param _request_timeout: timeout setting for this request. If one
523523
number provided, it will be total request
524524
timeout. It can also be a pair (tuple) of
@@ -543,8 +543,8 @@ def create_load_balancer_without_preload_content(
543543

544544
_param = self._create_load_balancer_serialize(
545545
project_id=project_id,
546-
x_request_id=x_request_id,
547546
create_load_balancer_payload=create_load_balancer_payload,
547+
x_request_id=x_request_id,
548548
_request_auth=_request_auth,
549549
_content_type=_content_type,
550550
_headers=_headers,
@@ -565,8 +565,8 @@ def create_load_balancer_without_preload_content(
565565
def _create_load_balancer_serialize(
566566
self,
567567
project_id,
568-
x_request_id,
569568
create_load_balancer_payload,
569+
x_request_id,
570570
_request_auth,
571571
_content_type,
572572
_headers,
@@ -1377,7 +1377,7 @@ def _disable_service_serialize(
13771377
def enable_service(
13781378
self,
13791379
project_id: StrictStr,
1380-
x_request_id: StrictStr,
1380+
x_request_id: Optional[StrictStr] = None,
13811381
_request_timeout: Union[
13821382
None,
13831383
Annotated[StrictFloat, Field(gt=0)],
@@ -1394,7 +1394,7 @@ def enable_service(
13941394
13951395
:param project_id: (required)
13961396
:type project_id: str
1397-
:param x_request_id: (required)
1397+
:param x_request_id:
13981398
:type x_request_id: str
13991399
:param _request_timeout: timeout setting for this request. If one
14001400
number provided, it will be total request
@@ -1446,7 +1446,7 @@ def enable_service(
14461446
def enable_service_with_http_info(
14471447
self,
14481448
project_id: StrictStr,
1449-
x_request_id: StrictStr,
1449+
x_request_id: Optional[StrictStr] = None,
14501450
_request_timeout: Union[
14511451
None,
14521452
Annotated[StrictFloat, Field(gt=0)],
@@ -1463,7 +1463,7 @@ def enable_service_with_http_info(
14631463
14641464
:param project_id: (required)
14651465
:type project_id: str
1466-
:param x_request_id: (required)
1466+
:param x_request_id:
14671467
:type x_request_id: str
14681468
:param _request_timeout: timeout setting for this request. If one
14691469
number provided, it will be total request
@@ -1515,7 +1515,7 @@ def enable_service_with_http_info(
15151515
def enable_service_without_preload_content(
15161516
self,
15171517
project_id: StrictStr,
1518-
x_request_id: StrictStr,
1518+
x_request_id: Optional[StrictStr] = None,
15191519
_request_timeout: Union[
15201520
None,
15211521
Annotated[StrictFloat, Field(gt=0)],
@@ -1532,7 +1532,7 @@ def enable_service_without_preload_content(
15321532
15331533
:param project_id: (required)
15341534
:type project_id: str
1535-
:param x_request_id: (required)
1535+
:param x_request_id:
15361536
:type x_request_id: str
15371537
:param _request_timeout: timeout setting for this request. If one
15381538
number provided, it will be total request

0 commit comments

Comments
 (0)