waldur-api-client 0.2.0__py3-none-any.whl → 7.6.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of waldur-api-client might be problematic. Click here for more details.
- waldur_api_client/api/autoprovisioning_rule_plans/__init__.py +1 -0
- waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_create.py +148 -0
- waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_destroy.py +89 -0
- waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_list.py +169 -0
- waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_partial_update.py +162 -0
- waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_retrieve.py +140 -0
- waldur_api_client/api/autoprovisioning_rule_plans/autoprovisioning_rule_plans_update.py +162 -0
- waldur_api_client/api/autoprovisioning_rules/__init__.py +1 -0
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_create.py +148 -0
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_destroy.py +89 -0
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_list.py +167 -0
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_partial_update.py +162 -0
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_retrieve.py +140 -0
- waldur_api_client/api/autoprovisioning_rules/autoprovisioning_rules_update.py +162 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_component_stats_list.py +15 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py +15 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_customers_list.py +15 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py +15 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list.py +15 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_list.py +15 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py +15 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_users_list.py +15 -0
- waldur_api_client/api/users/users_list.py +15 -0
- waldur_api_client/models/__init__.py +24 -0
- waldur_api_client/models/constance_settings.py +9 -0
- waldur_api_client/models/constance_settings_request.py +9 -0
- waldur_api_client/models/identity_provider.py +11 -11
- waldur_api_client/models/identity_provider_request.py +11 -11
- waldur_api_client/models/merged_plugin_options.py +27 -0
- waldur_api_client/models/merged_plugin_options_request.py +27 -0
- waldur_api_client/models/patched_identity_provider_request.py +11 -11
- waldur_api_client/models/patched_rule_plans_request.py +108 -0
- waldur_api_client/models/patched_rule_plans_request_attributes.py +44 -0
- waldur_api_client/models/patched_rule_plans_request_limits.py +44 -0
- waldur_api_client/models/patched_rule_request.py +101 -0
- waldur_api_client/models/rancher_cluster.py +11 -0
- waldur_api_client/models/rancher_clusters_list_field_item.py +1 -0
- waldur_api_client/models/rancher_clusters_retrieve_field_item.py +1 -0
- waldur_api_client/models/rule.py +128 -0
- waldur_api_client/models/rule_plans.py +126 -0
- waldur_api_client/models/rule_plans_attributes.py +44 -0
- waldur_api_client/models/rule_plans_limits.py +44 -0
- waldur_api_client/models/rule_plans_request.py +109 -0
- waldur_api_client/models/rule_plans_request_attributes.py +44 -0
- waldur_api_client/models/rule_plans_request_limits.py +44 -0
- waldur_api_client/models/rule_request.py +103 -0
- {waldur_api_client-0.2.0.dist-info → waldur_api_client-7.6.5.dist-info}/METADATA +1 -1
- {waldur_api_client-0.2.0.dist-info → waldur_api_client-7.6.5.dist-info}/RECORD +50 -24
- {waldur_api_client-0.2.0.dist-info → waldur_api_client-7.6.5.dist-info}/LICENSE +0 -0
- {waldur_api_client-0.2.0.dist-info → waldur_api_client-7.6.5.dist-info}/WHEEL +0 -0
|
@@ -47,6 +47,7 @@ def _get_kwargs(
|
|
|
47
47
|
shared: Union[Unset, bool] = UNSET,
|
|
48
48
|
state: Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]] = UNSET,
|
|
49
49
|
type_: Union[Unset, list[str]] = UNSET,
|
|
50
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
50
51
|
) -> dict[str, Any]:
|
|
51
52
|
params: dict[str, Any] = {}
|
|
52
53
|
|
|
@@ -165,6 +166,8 @@ def _get_kwargs(
|
|
|
165
166
|
|
|
166
167
|
params["type"] = json_type_
|
|
167
168
|
|
|
169
|
+
params["uuid_list"] = uuid_list
|
|
170
|
+
|
|
168
171
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
169
172
|
|
|
170
173
|
_kwargs: dict[str, Any] = {
|
|
@@ -233,6 +236,7 @@ def sync_detailed(
|
|
|
233
236
|
shared: Union[Unset, bool] = UNSET,
|
|
234
237
|
state: Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]] = UNSET,
|
|
235
238
|
type_: Union[Unset, list[str]] = UNSET,
|
|
239
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
236
240
|
) -> Response[list["ProviderOfferingCustomer"]]:
|
|
237
241
|
"""Get customers for offering.
|
|
238
242
|
|
|
@@ -265,6 +269,7 @@ def sync_detailed(
|
|
|
265
269
|
shared (Union[Unset, bool]):
|
|
266
270
|
state (Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]]):
|
|
267
271
|
type_ (Union[Unset, list[str]]):
|
|
272
|
+
uuid_list (Union[Unset, str]):
|
|
268
273
|
|
|
269
274
|
Raises:
|
|
270
275
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -303,6 +308,7 @@ def sync_detailed(
|
|
|
303
308
|
shared=shared,
|
|
304
309
|
state=state,
|
|
305
310
|
type_=type_,
|
|
311
|
+
uuid_list=uuid_list,
|
|
306
312
|
)
|
|
307
313
|
|
|
308
314
|
response = client.get_httpx_client().request(
|
|
@@ -343,6 +349,7 @@ def sync(
|
|
|
343
349
|
shared: Union[Unset, bool] = UNSET,
|
|
344
350
|
state: Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]] = UNSET,
|
|
345
351
|
type_: Union[Unset, list[str]] = UNSET,
|
|
352
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
346
353
|
) -> list["ProviderOfferingCustomer"]:
|
|
347
354
|
"""Get customers for offering.
|
|
348
355
|
|
|
@@ -375,6 +382,7 @@ def sync(
|
|
|
375
382
|
shared (Union[Unset, bool]):
|
|
376
383
|
state (Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]]):
|
|
377
384
|
type_ (Union[Unset, list[str]]):
|
|
385
|
+
uuid_list (Union[Unset, str]):
|
|
378
386
|
|
|
379
387
|
Raises:
|
|
380
388
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -414,6 +422,7 @@ def sync(
|
|
|
414
422
|
shared=shared,
|
|
415
423
|
state=state,
|
|
416
424
|
type_=type_,
|
|
425
|
+
uuid_list=uuid_list,
|
|
417
426
|
).parsed
|
|
418
427
|
|
|
419
428
|
|
|
@@ -448,6 +457,7 @@ async def asyncio_detailed(
|
|
|
448
457
|
shared: Union[Unset, bool] = UNSET,
|
|
449
458
|
state: Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]] = UNSET,
|
|
450
459
|
type_: Union[Unset, list[str]] = UNSET,
|
|
460
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
451
461
|
) -> Response[list["ProviderOfferingCustomer"]]:
|
|
452
462
|
"""Get customers for offering.
|
|
453
463
|
|
|
@@ -480,6 +490,7 @@ async def asyncio_detailed(
|
|
|
480
490
|
shared (Union[Unset, bool]):
|
|
481
491
|
state (Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]]):
|
|
482
492
|
type_ (Union[Unset, list[str]]):
|
|
493
|
+
uuid_list (Union[Unset, str]):
|
|
483
494
|
|
|
484
495
|
Raises:
|
|
485
496
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -518,6 +529,7 @@ async def asyncio_detailed(
|
|
|
518
529
|
shared=shared,
|
|
519
530
|
state=state,
|
|
520
531
|
type_=type_,
|
|
532
|
+
uuid_list=uuid_list,
|
|
521
533
|
)
|
|
522
534
|
|
|
523
535
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
@@ -556,6 +568,7 @@ async def asyncio(
|
|
|
556
568
|
shared: Union[Unset, bool] = UNSET,
|
|
557
569
|
state: Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]] = UNSET,
|
|
558
570
|
type_: Union[Unset, list[str]] = UNSET,
|
|
571
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
559
572
|
) -> list["ProviderOfferingCustomer"]:
|
|
560
573
|
"""Get customers for offering.
|
|
561
574
|
|
|
@@ -588,6 +601,7 @@ async def asyncio(
|
|
|
588
601
|
shared (Union[Unset, bool]):
|
|
589
602
|
state (Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]]):
|
|
590
603
|
type_ (Union[Unset, list[str]]):
|
|
604
|
+
uuid_list (Union[Unset, str]):
|
|
591
605
|
|
|
592
606
|
Raises:
|
|
593
607
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -628,5 +642,6 @@ async def asyncio(
|
|
|
628
642
|
shared=shared,
|
|
629
643
|
state=state,
|
|
630
644
|
type_=type_,
|
|
645
|
+
uuid_list=uuid_list,
|
|
631
646
|
)
|
|
632
647
|
).parsed
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py
CHANGED
|
@@ -44,6 +44,7 @@ def _get_kwargs(
|
|
|
44
44
|
shared: Union[Unset, bool] = UNSET,
|
|
45
45
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]] = UNSET,
|
|
46
46
|
type_: Union[Unset, list[str]] = UNSET,
|
|
47
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
47
48
|
) -> dict[str, Any]:
|
|
48
49
|
params: dict[str, Any] = {}
|
|
49
50
|
|
|
@@ -162,6 +163,8 @@ def _get_kwargs(
|
|
|
162
163
|
|
|
163
164
|
params["type"] = json_type_
|
|
164
165
|
|
|
166
|
+
params["uuid_list"] = uuid_list
|
|
167
|
+
|
|
165
168
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
166
169
|
|
|
167
170
|
_kwargs: dict[str, Any] = {
|
|
@@ -227,6 +230,7 @@ def sync_detailed(
|
|
|
227
230
|
shared: Union[Unset, bool] = UNSET,
|
|
228
231
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]] = UNSET,
|
|
229
232
|
type_: Union[Unset, list[str]] = UNSET,
|
|
233
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
230
234
|
) -> Response[list["OfferingGroups"]]:
|
|
231
235
|
"""
|
|
232
236
|
Args:
|
|
@@ -257,6 +261,7 @@ def sync_detailed(
|
|
|
257
261
|
shared (Union[Unset, bool]):
|
|
258
262
|
state (Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]]):
|
|
259
263
|
type_ (Union[Unset, list[str]]):
|
|
264
|
+
uuid_list (Union[Unset, str]):
|
|
260
265
|
|
|
261
266
|
Raises:
|
|
262
267
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -294,6 +299,7 @@ def sync_detailed(
|
|
|
294
299
|
shared=shared,
|
|
295
300
|
state=state,
|
|
296
301
|
type_=type_,
|
|
302
|
+
uuid_list=uuid_list,
|
|
297
303
|
)
|
|
298
304
|
|
|
299
305
|
response = client.get_httpx_client().request(
|
|
@@ -333,6 +339,7 @@ def sync(
|
|
|
333
339
|
shared: Union[Unset, bool] = UNSET,
|
|
334
340
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]] = UNSET,
|
|
335
341
|
type_: Union[Unset, list[str]] = UNSET,
|
|
342
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
336
343
|
) -> list["OfferingGroups"]:
|
|
337
344
|
"""
|
|
338
345
|
Args:
|
|
@@ -363,6 +370,7 @@ def sync(
|
|
|
363
370
|
shared (Union[Unset, bool]):
|
|
364
371
|
state (Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]]):
|
|
365
372
|
type_ (Union[Unset, list[str]]):
|
|
373
|
+
uuid_list (Union[Unset, str]):
|
|
366
374
|
|
|
367
375
|
Raises:
|
|
368
376
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -401,6 +409,7 @@ def sync(
|
|
|
401
409
|
shared=shared,
|
|
402
410
|
state=state,
|
|
403
411
|
type_=type_,
|
|
412
|
+
uuid_list=uuid_list,
|
|
404
413
|
).parsed
|
|
405
414
|
|
|
406
415
|
|
|
@@ -434,6 +443,7 @@ async def asyncio_detailed(
|
|
|
434
443
|
shared: Union[Unset, bool] = UNSET,
|
|
435
444
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]] = UNSET,
|
|
436
445
|
type_: Union[Unset, list[str]] = UNSET,
|
|
446
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
437
447
|
) -> Response[list["OfferingGroups"]]:
|
|
438
448
|
"""
|
|
439
449
|
Args:
|
|
@@ -464,6 +474,7 @@ async def asyncio_detailed(
|
|
|
464
474
|
shared (Union[Unset, bool]):
|
|
465
475
|
state (Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]]):
|
|
466
476
|
type_ (Union[Unset, list[str]]):
|
|
477
|
+
uuid_list (Union[Unset, str]):
|
|
467
478
|
|
|
468
479
|
Raises:
|
|
469
480
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -501,6 +512,7 @@ async def asyncio_detailed(
|
|
|
501
512
|
shared=shared,
|
|
502
513
|
state=state,
|
|
503
514
|
type_=type_,
|
|
515
|
+
uuid_list=uuid_list,
|
|
504
516
|
)
|
|
505
517
|
|
|
506
518
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
@@ -538,6 +550,7 @@ async def asyncio(
|
|
|
538
550
|
shared: Union[Unset, bool] = UNSET,
|
|
539
551
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]] = UNSET,
|
|
540
552
|
type_: Union[Unset, list[str]] = UNSET,
|
|
553
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
541
554
|
) -> list["OfferingGroups"]:
|
|
542
555
|
"""
|
|
543
556
|
Args:
|
|
@@ -568,6 +581,7 @@ async def asyncio(
|
|
|
568
581
|
shared (Union[Unset, bool]):
|
|
569
582
|
state (Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]]):
|
|
570
583
|
type_ (Union[Unset, list[str]]):
|
|
584
|
+
uuid_list (Union[Unset, str]):
|
|
571
585
|
|
|
572
586
|
Raises:
|
|
573
587
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -607,5 +621,6 @@ async def asyncio(
|
|
|
607
621
|
shared=shared,
|
|
608
622
|
state=state,
|
|
609
623
|
type_=type_,
|
|
624
|
+
uuid_list=uuid_list,
|
|
610
625
|
)
|
|
611
626
|
).parsed
|
|
@@ -44,6 +44,7 @@ def _get_kwargs(
|
|
|
44
44
|
shared: Union[Unset, bool] = UNSET,
|
|
45
45
|
state: Union[Unset, list[MarketplaceProviderOfferingsListStateItem]] = UNSET,
|
|
46
46
|
type_: Union[Unset, list[str]] = UNSET,
|
|
47
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
47
48
|
) -> dict[str, Any]:
|
|
48
49
|
params: dict[str, Any] = {}
|
|
49
50
|
|
|
@@ -171,6 +172,8 @@ def _get_kwargs(
|
|
|
171
172
|
|
|
172
173
|
params["type"] = json_type_
|
|
173
174
|
|
|
175
|
+
params["uuid_list"] = uuid_list
|
|
176
|
+
|
|
174
177
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
175
178
|
|
|
176
179
|
_kwargs: dict[str, Any] = {
|
|
@@ -239,6 +242,7 @@ def sync_detailed(
|
|
|
239
242
|
shared: Union[Unset, bool] = UNSET,
|
|
240
243
|
state: Union[Unset, list[MarketplaceProviderOfferingsListStateItem]] = UNSET,
|
|
241
244
|
type_: Union[Unset, list[str]] = UNSET,
|
|
245
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
242
246
|
) -> Response[list["ProviderOfferingDetails"]]:
|
|
243
247
|
"""
|
|
244
248
|
Args:
|
|
@@ -270,6 +274,7 @@ def sync_detailed(
|
|
|
270
274
|
shared (Union[Unset, bool]):
|
|
271
275
|
state (Union[Unset, list[MarketplaceProviderOfferingsListStateItem]]):
|
|
272
276
|
type_ (Union[Unset, list[str]]):
|
|
277
|
+
uuid_list (Union[Unset, str]):
|
|
273
278
|
|
|
274
279
|
Raises:
|
|
275
280
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -308,6 +313,7 @@ def sync_detailed(
|
|
|
308
313
|
shared=shared,
|
|
309
314
|
state=state,
|
|
310
315
|
type_=type_,
|
|
316
|
+
uuid_list=uuid_list,
|
|
311
317
|
)
|
|
312
318
|
|
|
313
319
|
response = client.get_httpx_client().request(
|
|
@@ -348,6 +354,7 @@ def sync(
|
|
|
348
354
|
shared: Union[Unset, bool] = UNSET,
|
|
349
355
|
state: Union[Unset, list[MarketplaceProviderOfferingsListStateItem]] = UNSET,
|
|
350
356
|
type_: Union[Unset, list[str]] = UNSET,
|
|
357
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
351
358
|
) -> list["ProviderOfferingDetails"]:
|
|
352
359
|
"""
|
|
353
360
|
Args:
|
|
@@ -379,6 +386,7 @@ def sync(
|
|
|
379
386
|
shared (Union[Unset, bool]):
|
|
380
387
|
state (Union[Unset, list[MarketplaceProviderOfferingsListStateItem]]):
|
|
381
388
|
type_ (Union[Unset, list[str]]):
|
|
389
|
+
uuid_list (Union[Unset, str]):
|
|
382
390
|
|
|
383
391
|
Raises:
|
|
384
392
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -418,6 +426,7 @@ def sync(
|
|
|
418
426
|
shared=shared,
|
|
419
427
|
state=state,
|
|
420
428
|
type_=type_,
|
|
429
|
+
uuid_list=uuid_list,
|
|
421
430
|
).parsed
|
|
422
431
|
|
|
423
432
|
|
|
@@ -452,6 +461,7 @@ async def asyncio_detailed(
|
|
|
452
461
|
shared: Union[Unset, bool] = UNSET,
|
|
453
462
|
state: Union[Unset, list[MarketplaceProviderOfferingsListStateItem]] = UNSET,
|
|
454
463
|
type_: Union[Unset, list[str]] = UNSET,
|
|
464
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
455
465
|
) -> Response[list["ProviderOfferingDetails"]]:
|
|
456
466
|
"""
|
|
457
467
|
Args:
|
|
@@ -483,6 +493,7 @@ async def asyncio_detailed(
|
|
|
483
493
|
shared (Union[Unset, bool]):
|
|
484
494
|
state (Union[Unset, list[MarketplaceProviderOfferingsListStateItem]]):
|
|
485
495
|
type_ (Union[Unset, list[str]]):
|
|
496
|
+
uuid_list (Union[Unset, str]):
|
|
486
497
|
|
|
487
498
|
Raises:
|
|
488
499
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -521,6 +532,7 @@ async def asyncio_detailed(
|
|
|
521
532
|
shared=shared,
|
|
522
533
|
state=state,
|
|
523
534
|
type_=type_,
|
|
535
|
+
uuid_list=uuid_list,
|
|
524
536
|
)
|
|
525
537
|
|
|
526
538
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
@@ -559,6 +571,7 @@ async def asyncio(
|
|
|
559
571
|
shared: Union[Unset, bool] = UNSET,
|
|
560
572
|
state: Union[Unset, list[MarketplaceProviderOfferingsListStateItem]] = UNSET,
|
|
561
573
|
type_: Union[Unset, list[str]] = UNSET,
|
|
574
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
562
575
|
) -> list["ProviderOfferingDetails"]:
|
|
563
576
|
"""
|
|
564
577
|
Args:
|
|
@@ -590,6 +603,7 @@ async def asyncio(
|
|
|
590
603
|
shared (Union[Unset, bool]):
|
|
591
604
|
state (Union[Unset, list[MarketplaceProviderOfferingsListStateItem]]):
|
|
592
605
|
type_ (Union[Unset, list[str]]):
|
|
606
|
+
uuid_list (Union[Unset, str]):
|
|
593
607
|
|
|
594
608
|
Raises:
|
|
595
609
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -630,5 +644,6 @@ async def asyncio(
|
|
|
630
644
|
shared=shared,
|
|
631
645
|
state=state,
|
|
632
646
|
type_=type_,
|
|
647
|
+
uuid_list=uuid_list,
|
|
633
648
|
)
|
|
634
649
|
).parsed
|
|
@@ -44,6 +44,7 @@ def _get_kwargs(
|
|
|
44
44
|
shared: Union[Unset, bool] = UNSET,
|
|
45
45
|
state: Union[Unset, list[MarketplacePublicOfferingsListStateItem]] = UNSET,
|
|
46
46
|
type_: Union[Unset, list[str]] = UNSET,
|
|
47
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
47
48
|
) -> dict[str, Any]:
|
|
48
49
|
params: dict[str, Any] = {}
|
|
49
50
|
|
|
@@ -171,6 +172,8 @@ def _get_kwargs(
|
|
|
171
172
|
|
|
172
173
|
params["type"] = json_type_
|
|
173
174
|
|
|
175
|
+
params["uuid_list"] = uuid_list
|
|
176
|
+
|
|
174
177
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
175
178
|
|
|
176
179
|
_kwargs: dict[str, Any] = {
|
|
@@ -239,6 +242,7 @@ def sync_detailed(
|
|
|
239
242
|
shared: Union[Unset, bool] = UNSET,
|
|
240
243
|
state: Union[Unset, list[MarketplacePublicOfferingsListStateItem]] = UNSET,
|
|
241
244
|
type_: Union[Unset, list[str]] = UNSET,
|
|
245
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
242
246
|
) -> Response[list["PublicOfferingDetails"]]:
|
|
243
247
|
"""
|
|
244
248
|
Args:
|
|
@@ -270,6 +274,7 @@ def sync_detailed(
|
|
|
270
274
|
shared (Union[Unset, bool]):
|
|
271
275
|
state (Union[Unset, list[MarketplacePublicOfferingsListStateItem]]):
|
|
272
276
|
type_ (Union[Unset, list[str]]):
|
|
277
|
+
uuid_list (Union[Unset, str]):
|
|
273
278
|
|
|
274
279
|
Raises:
|
|
275
280
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -308,6 +313,7 @@ def sync_detailed(
|
|
|
308
313
|
shared=shared,
|
|
309
314
|
state=state,
|
|
310
315
|
type_=type_,
|
|
316
|
+
uuid_list=uuid_list,
|
|
311
317
|
)
|
|
312
318
|
|
|
313
319
|
response = client.get_httpx_client().request(
|
|
@@ -348,6 +354,7 @@ def sync(
|
|
|
348
354
|
shared: Union[Unset, bool] = UNSET,
|
|
349
355
|
state: Union[Unset, list[MarketplacePublicOfferingsListStateItem]] = UNSET,
|
|
350
356
|
type_: Union[Unset, list[str]] = UNSET,
|
|
357
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
351
358
|
) -> list["PublicOfferingDetails"]:
|
|
352
359
|
"""
|
|
353
360
|
Args:
|
|
@@ -379,6 +386,7 @@ def sync(
|
|
|
379
386
|
shared (Union[Unset, bool]):
|
|
380
387
|
state (Union[Unset, list[MarketplacePublicOfferingsListStateItem]]):
|
|
381
388
|
type_ (Union[Unset, list[str]]):
|
|
389
|
+
uuid_list (Union[Unset, str]):
|
|
382
390
|
|
|
383
391
|
Raises:
|
|
384
392
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -418,6 +426,7 @@ def sync(
|
|
|
418
426
|
shared=shared,
|
|
419
427
|
state=state,
|
|
420
428
|
type_=type_,
|
|
429
|
+
uuid_list=uuid_list,
|
|
421
430
|
).parsed
|
|
422
431
|
|
|
423
432
|
|
|
@@ -452,6 +461,7 @@ async def asyncio_detailed(
|
|
|
452
461
|
shared: Union[Unset, bool] = UNSET,
|
|
453
462
|
state: Union[Unset, list[MarketplacePublicOfferingsListStateItem]] = UNSET,
|
|
454
463
|
type_: Union[Unset, list[str]] = UNSET,
|
|
464
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
455
465
|
) -> Response[list["PublicOfferingDetails"]]:
|
|
456
466
|
"""
|
|
457
467
|
Args:
|
|
@@ -483,6 +493,7 @@ async def asyncio_detailed(
|
|
|
483
493
|
shared (Union[Unset, bool]):
|
|
484
494
|
state (Union[Unset, list[MarketplacePublicOfferingsListStateItem]]):
|
|
485
495
|
type_ (Union[Unset, list[str]]):
|
|
496
|
+
uuid_list (Union[Unset, str]):
|
|
486
497
|
|
|
487
498
|
Raises:
|
|
488
499
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -521,6 +532,7 @@ async def asyncio_detailed(
|
|
|
521
532
|
shared=shared,
|
|
522
533
|
state=state,
|
|
523
534
|
type_=type_,
|
|
535
|
+
uuid_list=uuid_list,
|
|
524
536
|
)
|
|
525
537
|
|
|
526
538
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
@@ -559,6 +571,7 @@ async def asyncio(
|
|
|
559
571
|
shared: Union[Unset, bool] = UNSET,
|
|
560
572
|
state: Union[Unset, list[MarketplacePublicOfferingsListStateItem]] = UNSET,
|
|
561
573
|
type_: Union[Unset, list[str]] = UNSET,
|
|
574
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
562
575
|
) -> list["PublicOfferingDetails"]:
|
|
563
576
|
"""
|
|
564
577
|
Args:
|
|
@@ -590,6 +603,7 @@ async def asyncio(
|
|
|
590
603
|
shared (Union[Unset, bool]):
|
|
591
604
|
state (Union[Unset, list[MarketplacePublicOfferingsListStateItem]]):
|
|
592
605
|
type_ (Union[Unset, list[str]]):
|
|
606
|
+
uuid_list (Union[Unset, str]):
|
|
593
607
|
|
|
594
608
|
Raises:
|
|
595
609
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -630,5 +644,6 @@ async def asyncio(
|
|
|
630
644
|
shared=shared,
|
|
631
645
|
state=state,
|
|
632
646
|
type_=type_,
|
|
647
|
+
uuid_list=uuid_list,
|
|
633
648
|
)
|
|
634
649
|
).parsed
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py
CHANGED
|
@@ -49,6 +49,7 @@ def _get_kwargs(
|
|
|
49
49
|
shared: Union[Unset, bool] = UNSET,
|
|
50
50
|
state: Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]] = UNSET,
|
|
51
51
|
type_: Union[Unset, list[str]] = UNSET,
|
|
52
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
52
53
|
) -> dict[str, Any]:
|
|
53
54
|
params: dict[str, Any] = {}
|
|
54
55
|
|
|
@@ -176,6 +177,8 @@ def _get_kwargs(
|
|
|
176
177
|
|
|
177
178
|
params["type"] = json_type_
|
|
178
179
|
|
|
180
|
+
params["uuid_list"] = uuid_list
|
|
181
|
+
|
|
179
182
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
180
183
|
|
|
181
184
|
_kwargs: dict[str, Any] = {
|
|
@@ -245,6 +248,7 @@ def sync_detailed(
|
|
|
245
248
|
shared: Union[Unset, bool] = UNSET,
|
|
246
249
|
state: Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]] = UNSET,
|
|
247
250
|
type_: Union[Unset, list[str]] = UNSET,
|
|
251
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
248
252
|
) -> Response[list["ProviderOffering"]]:
|
|
249
253
|
"""Return offerings of service provider.
|
|
250
254
|
|
|
@@ -278,6 +282,7 @@ def sync_detailed(
|
|
|
278
282
|
shared (Union[Unset, bool]):
|
|
279
283
|
state (Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]]):
|
|
280
284
|
type_ (Union[Unset, list[str]]):
|
|
285
|
+
uuid_list (Union[Unset, str]):
|
|
281
286
|
|
|
282
287
|
Raises:
|
|
283
288
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -317,6 +322,7 @@ def sync_detailed(
|
|
|
317
322
|
shared=shared,
|
|
318
323
|
state=state,
|
|
319
324
|
type_=type_,
|
|
325
|
+
uuid_list=uuid_list,
|
|
320
326
|
)
|
|
321
327
|
|
|
322
328
|
response = client.get_httpx_client().request(
|
|
@@ -358,6 +364,7 @@ def sync(
|
|
|
358
364
|
shared: Union[Unset, bool] = UNSET,
|
|
359
365
|
state: Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]] = UNSET,
|
|
360
366
|
type_: Union[Unset, list[str]] = UNSET,
|
|
367
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
361
368
|
) -> list["ProviderOffering"]:
|
|
362
369
|
"""Return offerings of service provider.
|
|
363
370
|
|
|
@@ -391,6 +398,7 @@ def sync(
|
|
|
391
398
|
shared (Union[Unset, bool]):
|
|
392
399
|
state (Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]]):
|
|
393
400
|
type_ (Union[Unset, list[str]]):
|
|
401
|
+
uuid_list (Union[Unset, str]):
|
|
394
402
|
|
|
395
403
|
Raises:
|
|
396
404
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -431,6 +439,7 @@ def sync(
|
|
|
431
439
|
shared=shared,
|
|
432
440
|
state=state,
|
|
433
441
|
type_=type_,
|
|
442
|
+
uuid_list=uuid_list,
|
|
434
443
|
).parsed
|
|
435
444
|
|
|
436
445
|
|
|
@@ -466,6 +475,7 @@ async def asyncio_detailed(
|
|
|
466
475
|
shared: Union[Unset, bool] = UNSET,
|
|
467
476
|
state: Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]] = UNSET,
|
|
468
477
|
type_: Union[Unset, list[str]] = UNSET,
|
|
478
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
469
479
|
) -> Response[list["ProviderOffering"]]:
|
|
470
480
|
"""Return offerings of service provider.
|
|
471
481
|
|
|
@@ -499,6 +509,7 @@ async def asyncio_detailed(
|
|
|
499
509
|
shared (Union[Unset, bool]):
|
|
500
510
|
state (Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]]):
|
|
501
511
|
type_ (Union[Unset, list[str]]):
|
|
512
|
+
uuid_list (Union[Unset, str]):
|
|
502
513
|
|
|
503
514
|
Raises:
|
|
504
515
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -538,6 +549,7 @@ async def asyncio_detailed(
|
|
|
538
549
|
shared=shared,
|
|
539
550
|
state=state,
|
|
540
551
|
type_=type_,
|
|
552
|
+
uuid_list=uuid_list,
|
|
541
553
|
)
|
|
542
554
|
|
|
543
555
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
@@ -577,6 +589,7 @@ async def asyncio(
|
|
|
577
589
|
shared: Union[Unset, bool] = UNSET,
|
|
578
590
|
state: Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]] = UNSET,
|
|
579
591
|
type_: Union[Unset, list[str]] = UNSET,
|
|
592
|
+
uuid_list: Union[Unset, str] = UNSET,
|
|
580
593
|
) -> list["ProviderOffering"]:
|
|
581
594
|
"""Return offerings of service provider.
|
|
582
595
|
|
|
@@ -610,6 +623,7 @@ async def asyncio(
|
|
|
610
623
|
shared (Union[Unset, bool]):
|
|
611
624
|
state (Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]]):
|
|
612
625
|
type_ (Union[Unset, list[str]]):
|
|
626
|
+
uuid_list (Union[Unset, str]):
|
|
613
627
|
|
|
614
628
|
Raises:
|
|
615
629
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -651,5 +665,6 @@ async def asyncio(
|
|
|
651
665
|
shared=shared,
|
|
652
666
|
state=state,
|
|
653
667
|
type_=type_,
|
|
668
|
+
uuid_list=uuid_list,
|
|
654
669
|
)
|
|
655
670
|
).parsed
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_users_list.py
CHANGED
|
@@ -42,6 +42,7 @@ def _get_kwargs(
|
|
|
42
42
|
registration_method: Union[Unset, str] = UNSET,
|
|
43
43
|
user_keyword: Union[Unset, str] = UNSET,
|
|
44
44
|
username: Union[Unset, str] = UNSET,
|
|
45
|
+
username_list: Union[Unset, str] = UNSET,
|
|
45
46
|
) -> dict[str, Any]:
|
|
46
47
|
params: dict[str, Any] = {}
|
|
47
48
|
|
|
@@ -126,6 +127,8 @@ def _get_kwargs(
|
|
|
126
127
|
|
|
127
128
|
params["username"] = username
|
|
128
129
|
|
|
130
|
+
params["username_list"] = username_list
|
|
131
|
+
|
|
129
132
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
130
133
|
|
|
131
134
|
_kwargs: dict[str, Any] = {
|
|
@@ -193,6 +196,7 @@ def sync_detailed(
|
|
|
193
196
|
registration_method: Union[Unset, str] = UNSET,
|
|
194
197
|
user_keyword: Union[Unset, str] = UNSET,
|
|
195
198
|
username: Union[Unset, str] = UNSET,
|
|
199
|
+
username_list: Union[Unset, str] = UNSET,
|
|
196
200
|
) -> Response[list["MarketplaceServiceProviderUser"]]:
|
|
197
201
|
"""Return users of service provider.
|
|
198
202
|
|
|
@@ -224,6 +228,7 @@ def sync_detailed(
|
|
|
224
228
|
registration_method (Union[Unset, str]):
|
|
225
229
|
user_keyword (Union[Unset, str]):
|
|
226
230
|
username (Union[Unset, str]):
|
|
231
|
+
username_list (Union[Unset, str]):
|
|
227
232
|
|
|
228
233
|
Raises:
|
|
229
234
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -261,6 +266,7 @@ def sync_detailed(
|
|
|
261
266
|
registration_method=registration_method,
|
|
262
267
|
user_keyword=user_keyword,
|
|
263
268
|
username=username,
|
|
269
|
+
username_list=username_list,
|
|
264
270
|
)
|
|
265
271
|
|
|
266
272
|
response = client.get_httpx_client().request(
|
|
@@ -300,6 +306,7 @@ def sync(
|
|
|
300
306
|
registration_method: Union[Unset, str] = UNSET,
|
|
301
307
|
user_keyword: Union[Unset, str] = UNSET,
|
|
302
308
|
username: Union[Unset, str] = UNSET,
|
|
309
|
+
username_list: Union[Unset, str] = UNSET,
|
|
303
310
|
) -> list["MarketplaceServiceProviderUser"]:
|
|
304
311
|
"""Return users of service provider.
|
|
305
312
|
|
|
@@ -331,6 +338,7 @@ def sync(
|
|
|
331
338
|
registration_method (Union[Unset, str]):
|
|
332
339
|
user_keyword (Union[Unset, str]):
|
|
333
340
|
username (Union[Unset, str]):
|
|
341
|
+
username_list (Union[Unset, str]):
|
|
334
342
|
|
|
335
343
|
Raises:
|
|
336
344
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -369,6 +377,7 @@ def sync(
|
|
|
369
377
|
registration_method=registration_method,
|
|
370
378
|
user_keyword=user_keyword,
|
|
371
379
|
username=username,
|
|
380
|
+
username_list=username_list,
|
|
372
381
|
).parsed
|
|
373
382
|
|
|
374
383
|
|
|
@@ -402,6 +411,7 @@ async def asyncio_detailed(
|
|
|
402
411
|
registration_method: Union[Unset, str] = UNSET,
|
|
403
412
|
user_keyword: Union[Unset, str] = UNSET,
|
|
404
413
|
username: Union[Unset, str] = UNSET,
|
|
414
|
+
username_list: Union[Unset, str] = UNSET,
|
|
405
415
|
) -> Response[list["MarketplaceServiceProviderUser"]]:
|
|
406
416
|
"""Return users of service provider.
|
|
407
417
|
|
|
@@ -433,6 +443,7 @@ async def asyncio_detailed(
|
|
|
433
443
|
registration_method (Union[Unset, str]):
|
|
434
444
|
user_keyword (Union[Unset, str]):
|
|
435
445
|
username (Union[Unset, str]):
|
|
446
|
+
username_list (Union[Unset, str]):
|
|
436
447
|
|
|
437
448
|
Raises:
|
|
438
449
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -470,6 +481,7 @@ async def asyncio_detailed(
|
|
|
470
481
|
registration_method=registration_method,
|
|
471
482
|
user_keyword=user_keyword,
|
|
472
483
|
username=username,
|
|
484
|
+
username_list=username_list,
|
|
473
485
|
)
|
|
474
486
|
|
|
475
487
|
response = await client.get_async_httpx_client().request(**kwargs)
|
|
@@ -507,6 +519,7 @@ async def asyncio(
|
|
|
507
519
|
registration_method: Union[Unset, str] = UNSET,
|
|
508
520
|
user_keyword: Union[Unset, str] = UNSET,
|
|
509
521
|
username: Union[Unset, str] = UNSET,
|
|
522
|
+
username_list: Union[Unset, str] = UNSET,
|
|
510
523
|
) -> list["MarketplaceServiceProviderUser"]:
|
|
511
524
|
"""Return users of service provider.
|
|
512
525
|
|
|
@@ -538,6 +551,7 @@ async def asyncio(
|
|
|
538
551
|
registration_method (Union[Unset, str]):
|
|
539
552
|
user_keyword (Union[Unset, str]):
|
|
540
553
|
username (Union[Unset, str]):
|
|
554
|
+
username_list (Union[Unset, str]):
|
|
541
555
|
|
|
542
556
|
Raises:
|
|
543
557
|
errors.UnexpectedStatus: If the server returns an undocumented status code.
|
|
@@ -577,5 +591,6 @@ async def asyncio(
|
|
|
577
591
|
registration_method=registration_method,
|
|
578
592
|
user_keyword=user_keyword,
|
|
579
593
|
username=username,
|
|
594
|
+
username_list=username_list,
|
|
580
595
|
)
|
|
581
596
|
).parsed
|