waldur-api-client 7.7.8__py3-none-any.whl → 7.8.0__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/marketplace_offering_users/marketplace_offering_users_count.py +15 -0
- waldur_api_client/api/marketplace_offering_users/marketplace_offering_users_list.py +15 -0
- waldur_api_client/api/{rancher_clusters/rancher_clusters_destroy.py → marketplace_orders/marketplace_orders_delete_attachment.py} +6 -4
- waldur_api_client/api/{rancher_clusters/rancher_clusters_create.py → marketplace_orders/marketplace_orders_update_attachment.py} +47 -29
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_component_stats_list.py +45 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py +45 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_count.py +45 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_customers_list.py +45 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_count.py +45 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py +45 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list.py +45 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_count.py +45 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_list.py +45 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py +45 -0
- waldur_api_client/models/__init__.py +10 -4
- waldur_api_client/models/booking_offerings_list_field_item.py +1 -0
- waldur_api_client/models/booking_offerings_retrieve_field_item.py +1 -0
- waldur_api_client/models/constance_settings.py +9 -0
- waldur_api_client/models/constance_settings_request.py +9 -0
- waldur_api_client/models/country_enum.py +211 -0
- waldur_api_client/models/course_account.py +14 -15
- waldur_api_client/models/course_account_request.py +0 -9
- waldur_api_client/models/customer_request.py +9 -0
- waldur_api_client/models/deployment_mode_enum.py +9 -0
- waldur_api_client/models/identity_provider.py +57 -0
- waldur_api_client/models/identity_provider_request.py +57 -0
- waldur_api_client/models/issue.py +8 -17
- waldur_api_client/models/issue_request.py +8 -17
- waldur_api_client/models/issue_type_enum.py +4 -4
- waldur_api_client/models/marketplace_offering_users_list_field_item.py +2 -0
- waldur_api_client/models/marketplace_offering_users_retrieve_field_item.py +2 -0
- waldur_api_client/models/marketplace_orders_list_field_item.py +2 -0
- waldur_api_client/models/marketplace_orders_retrieve_field_item.py +2 -0
- waldur_api_client/models/marketplace_public_offerings_list_field_item.py +1 -0
- waldur_api_client/models/marketplace_public_offerings_retrieve_field_item.py +1 -0
- 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/offering.py +9 -0
- waldur_api_client/models/offering_create.py +9 -8
- waldur_api_client/models/offering_create_request.py +9 -0
- waldur_api_client/models/offering_overview_update_request.py +9 -0
- waldur_api_client/models/offering_terms_of_service.py +42 -1
- waldur_api_client/models/offering_user.py +18 -0
- waldur_api_client/models/open_stack_tenant_create_order_attributes.py +0 -18
- waldur_api_client/models/open_stack_tenant_request.py +18 -0
- waldur_api_client/models/order_attachment.py +71 -0
- waldur_api_client/models/order_attachment_request.py +84 -0
- waldur_api_client/models/order_create.py +58 -16
- waldur_api_client/models/order_create_request.py +44 -62
- waldur_api_client/models/order_details.py +65 -16
- waldur_api_client/models/patched_customer_request.py +9 -0
- waldur_api_client/models/patched_identity_provider_request.py +58 -0
- waldur_api_client/models/patched_project_request.py +9 -0
- waldur_api_client/models/patched_protected_call_request.py +9 -0
- waldur_api_client/models/patched_protected_round_request.py +2 -2
- waldur_api_client/models/patched_service_provider_request.py +9 -0
- waldur_api_client/models/patched_user_request.py +9 -0
- waldur_api_client/models/project_request.py +9 -0
- waldur_api_client/models/protected_call_request.py +9 -0
- waldur_api_client/models/protected_round.py +2 -2
- waldur_api_client/models/protected_round_request.py +2 -2
- waldur_api_client/models/provider_offering_details_request.py +9 -0
- waldur_api_client/models/public_offering_details.py +9 -0
- waldur_api_client/models/rancher_cluster_request.py +1 -48
- waldur_api_client/models/resource_update_limits_request.py +56 -1
- waldur_api_client/models/robot_account.py +12 -4
- waldur_api_client/models/robot_account_details.py +12 -4
- waldur_api_client/models/robot_account_states.py +13 -0
- waldur_api_client/models/service_provider_request.py +9 -0
- waldur_api_client/models/user_consent_info.py +86 -0
- waldur_api_client/models/user_request.py +9 -0
- {waldur_api_client-7.7.8.dist-info → waldur_api_client-7.8.0.dist-info}/METADATA +4 -2
- {waldur_api_client-7.7.8.dist-info → waldur_api_client-7.8.0.dist-info}/RECORD +75 -72
- {waldur_api_client-7.7.8.dist-info → waldur_api_client-7.8.0.dist-info}/WHEEL +1 -1
- waldur_api_client/models/marketplace_managed_rancher_create_order_attributes.py +0 -144
- waldur_api_client/models/marketplace_rancher_create_order_attributes.py +0 -145
- {waldur_api_client-7.7.8.dist-info → waldur_api_client-7.8.0.dist-info/licenses}/LICENSE +0 -0
|
@@ -24,6 +24,8 @@ def _get_kwargs(
|
|
|
24
24
|
customer: Union[Unset, str] = UNSET,
|
|
25
25
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
26
26
|
description: Union[Unset, str] = UNSET,
|
|
27
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
28
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
27
29
|
keyword: Union[Unset, str] = UNSET,
|
|
28
30
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
29
31
|
name: Union[Unset, str] = UNSET,
|
|
@@ -41,6 +43,7 @@ def _get_kwargs(
|
|
|
41
43
|
shared: Union[Unset, bool] = UNSET,
|
|
42
44
|
state: Union[Unset, list[MarketplacePublicOfferingsCountStateItem]] = UNSET,
|
|
43
45
|
type_: Union[Unset, list[str]] = UNSET,
|
|
46
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
44
47
|
uuid_list: Union[Unset, str] = UNSET,
|
|
45
48
|
) -> dict[str, Any]:
|
|
46
49
|
params: dict[str, Any] = {}
|
|
@@ -80,6 +83,10 @@ def _get_kwargs(
|
|
|
80
83
|
|
|
81
84
|
params["description"] = description
|
|
82
85
|
|
|
86
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
87
|
+
|
|
88
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
89
|
+
|
|
83
90
|
params["keyword"] = keyword
|
|
84
91
|
|
|
85
92
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -157,6 +164,8 @@ def _get_kwargs(
|
|
|
157
164
|
|
|
158
165
|
params["type"] = json_type_
|
|
159
166
|
|
|
167
|
+
params["user_has_consent"] = user_has_consent
|
|
168
|
+
|
|
160
169
|
params["uuid_list"] = uuid_list
|
|
161
170
|
|
|
162
171
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
@@ -207,6 +216,8 @@ def sync_detailed(
|
|
|
207
216
|
customer: Union[Unset, str] = UNSET,
|
|
208
217
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
209
218
|
description: Union[Unset, str] = UNSET,
|
|
219
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
220
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
210
221
|
keyword: Union[Unset, str] = UNSET,
|
|
211
222
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
212
223
|
name: Union[Unset, str] = UNSET,
|
|
@@ -224,6 +235,7 @@ def sync_detailed(
|
|
|
224
235
|
shared: Union[Unset, bool] = UNSET,
|
|
225
236
|
state: Union[Unset, list[MarketplacePublicOfferingsCountStateItem]] = UNSET,
|
|
226
237
|
type_: Union[Unset, list[str]] = UNSET,
|
|
238
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
227
239
|
uuid_list: Union[Unset, str] = UNSET,
|
|
228
240
|
) -> Response[int]:
|
|
229
241
|
"""Get number of items in the collection matching the request parameters.
|
|
@@ -239,6 +251,8 @@ def sync_detailed(
|
|
|
239
251
|
customer (Union[Unset, str]):
|
|
240
252
|
customer_uuid (Union[Unset, UUID]):
|
|
241
253
|
description (Union[Unset, str]):
|
|
254
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
255
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
242
256
|
keyword (Union[Unset, str]):
|
|
243
257
|
modified (Union[Unset, datetime.datetime]):
|
|
244
258
|
name (Union[Unset, str]):
|
|
@@ -256,6 +270,7 @@ def sync_detailed(
|
|
|
256
270
|
shared (Union[Unset, bool]):
|
|
257
271
|
state (Union[Unset, list[MarketplacePublicOfferingsCountStateItem]]):
|
|
258
272
|
type_ (Union[Unset, list[str]]):
|
|
273
|
+
user_has_consent (Union[Unset, bool]):
|
|
259
274
|
uuid_list (Union[Unset, str]):
|
|
260
275
|
|
|
261
276
|
Raises:
|
|
@@ -277,6 +292,8 @@ def sync_detailed(
|
|
|
277
292
|
customer=customer,
|
|
278
293
|
customer_uuid=customer_uuid,
|
|
279
294
|
description=description,
|
|
295
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
296
|
+
has_terms_of_service=has_terms_of_service,
|
|
280
297
|
keyword=keyword,
|
|
281
298
|
modified=modified,
|
|
282
299
|
name=name,
|
|
@@ -294,6 +311,7 @@ def sync_detailed(
|
|
|
294
311
|
shared=shared,
|
|
295
312
|
state=state,
|
|
296
313
|
type_=type_,
|
|
314
|
+
user_has_consent=user_has_consent,
|
|
297
315
|
uuid_list=uuid_list,
|
|
298
316
|
)
|
|
299
317
|
|
|
@@ -317,6 +335,8 @@ def sync(
|
|
|
317
335
|
customer: Union[Unset, str] = UNSET,
|
|
318
336
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
319
337
|
description: Union[Unset, str] = UNSET,
|
|
338
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
339
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
320
340
|
keyword: Union[Unset, str] = UNSET,
|
|
321
341
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
322
342
|
name: Union[Unset, str] = UNSET,
|
|
@@ -334,6 +354,7 @@ def sync(
|
|
|
334
354
|
shared: Union[Unset, bool] = UNSET,
|
|
335
355
|
state: Union[Unset, list[MarketplacePublicOfferingsCountStateItem]] = UNSET,
|
|
336
356
|
type_: Union[Unset, list[str]] = UNSET,
|
|
357
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
337
358
|
uuid_list: Union[Unset, str] = UNSET,
|
|
338
359
|
) -> int:
|
|
339
360
|
"""Get number of items in the collection matching the request parameters.
|
|
@@ -349,6 +370,8 @@ def sync(
|
|
|
349
370
|
customer (Union[Unset, str]):
|
|
350
371
|
customer_uuid (Union[Unset, UUID]):
|
|
351
372
|
description (Union[Unset, str]):
|
|
373
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
374
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
352
375
|
keyword (Union[Unset, str]):
|
|
353
376
|
modified (Union[Unset, datetime.datetime]):
|
|
354
377
|
name (Union[Unset, str]):
|
|
@@ -366,6 +389,7 @@ def sync(
|
|
|
366
389
|
shared (Union[Unset, bool]):
|
|
367
390
|
state (Union[Unset, list[MarketplacePublicOfferingsCountStateItem]]):
|
|
368
391
|
type_ (Union[Unset, list[str]]):
|
|
392
|
+
user_has_consent (Union[Unset, bool]):
|
|
369
393
|
uuid_list (Union[Unset, str]):
|
|
370
394
|
|
|
371
395
|
Raises:
|
|
@@ -388,6 +412,8 @@ def sync(
|
|
|
388
412
|
customer=customer,
|
|
389
413
|
customer_uuid=customer_uuid,
|
|
390
414
|
description=description,
|
|
415
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
416
|
+
has_terms_of_service=has_terms_of_service,
|
|
391
417
|
keyword=keyword,
|
|
392
418
|
modified=modified,
|
|
393
419
|
name=name,
|
|
@@ -405,6 +431,7 @@ def sync(
|
|
|
405
431
|
shared=shared,
|
|
406
432
|
state=state,
|
|
407
433
|
type_=type_,
|
|
434
|
+
user_has_consent=user_has_consent,
|
|
408
435
|
uuid_list=uuid_list,
|
|
409
436
|
).parsed
|
|
410
437
|
|
|
@@ -422,6 +449,8 @@ async def asyncio_detailed(
|
|
|
422
449
|
customer: Union[Unset, str] = UNSET,
|
|
423
450
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
424
451
|
description: Union[Unset, str] = UNSET,
|
|
452
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
453
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
425
454
|
keyword: Union[Unset, str] = UNSET,
|
|
426
455
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
427
456
|
name: Union[Unset, str] = UNSET,
|
|
@@ -439,6 +468,7 @@ async def asyncio_detailed(
|
|
|
439
468
|
shared: Union[Unset, bool] = UNSET,
|
|
440
469
|
state: Union[Unset, list[MarketplacePublicOfferingsCountStateItem]] = UNSET,
|
|
441
470
|
type_: Union[Unset, list[str]] = UNSET,
|
|
471
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
442
472
|
uuid_list: Union[Unset, str] = UNSET,
|
|
443
473
|
) -> Response[int]:
|
|
444
474
|
"""Get number of items in the collection matching the request parameters.
|
|
@@ -454,6 +484,8 @@ async def asyncio_detailed(
|
|
|
454
484
|
customer (Union[Unset, str]):
|
|
455
485
|
customer_uuid (Union[Unset, UUID]):
|
|
456
486
|
description (Union[Unset, str]):
|
|
487
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
488
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
457
489
|
keyword (Union[Unset, str]):
|
|
458
490
|
modified (Union[Unset, datetime.datetime]):
|
|
459
491
|
name (Union[Unset, str]):
|
|
@@ -471,6 +503,7 @@ async def asyncio_detailed(
|
|
|
471
503
|
shared (Union[Unset, bool]):
|
|
472
504
|
state (Union[Unset, list[MarketplacePublicOfferingsCountStateItem]]):
|
|
473
505
|
type_ (Union[Unset, list[str]]):
|
|
506
|
+
user_has_consent (Union[Unset, bool]):
|
|
474
507
|
uuid_list (Union[Unset, str]):
|
|
475
508
|
|
|
476
509
|
Raises:
|
|
@@ -492,6 +525,8 @@ async def asyncio_detailed(
|
|
|
492
525
|
customer=customer,
|
|
493
526
|
customer_uuid=customer_uuid,
|
|
494
527
|
description=description,
|
|
528
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
529
|
+
has_terms_of_service=has_terms_of_service,
|
|
495
530
|
keyword=keyword,
|
|
496
531
|
modified=modified,
|
|
497
532
|
name=name,
|
|
@@ -509,6 +544,7 @@ async def asyncio_detailed(
|
|
|
509
544
|
shared=shared,
|
|
510
545
|
state=state,
|
|
511
546
|
type_=type_,
|
|
547
|
+
user_has_consent=user_has_consent,
|
|
512
548
|
uuid_list=uuid_list,
|
|
513
549
|
)
|
|
514
550
|
|
|
@@ -530,6 +566,8 @@ async def asyncio(
|
|
|
530
566
|
customer: Union[Unset, str] = UNSET,
|
|
531
567
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
532
568
|
description: Union[Unset, str] = UNSET,
|
|
569
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
570
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
533
571
|
keyword: Union[Unset, str] = UNSET,
|
|
534
572
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
535
573
|
name: Union[Unset, str] = UNSET,
|
|
@@ -547,6 +585,7 @@ async def asyncio(
|
|
|
547
585
|
shared: Union[Unset, bool] = UNSET,
|
|
548
586
|
state: Union[Unset, list[MarketplacePublicOfferingsCountStateItem]] = UNSET,
|
|
549
587
|
type_: Union[Unset, list[str]] = UNSET,
|
|
588
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
550
589
|
uuid_list: Union[Unset, str] = UNSET,
|
|
551
590
|
) -> int:
|
|
552
591
|
"""Get number of items in the collection matching the request parameters.
|
|
@@ -562,6 +601,8 @@ async def asyncio(
|
|
|
562
601
|
customer (Union[Unset, str]):
|
|
563
602
|
customer_uuid (Union[Unset, UUID]):
|
|
564
603
|
description (Union[Unset, str]):
|
|
604
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
605
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
565
606
|
keyword (Union[Unset, str]):
|
|
566
607
|
modified (Union[Unset, datetime.datetime]):
|
|
567
608
|
name (Union[Unset, str]):
|
|
@@ -579,6 +620,7 @@ async def asyncio(
|
|
|
579
620
|
shared (Union[Unset, bool]):
|
|
580
621
|
state (Union[Unset, list[MarketplacePublicOfferingsCountStateItem]]):
|
|
581
622
|
type_ (Union[Unset, list[str]]):
|
|
623
|
+
user_has_consent (Union[Unset, bool]):
|
|
582
624
|
uuid_list (Union[Unset, str]):
|
|
583
625
|
|
|
584
626
|
Raises:
|
|
@@ -602,6 +644,8 @@ async def asyncio(
|
|
|
602
644
|
customer=customer,
|
|
603
645
|
customer_uuid=customer_uuid,
|
|
604
646
|
description=description,
|
|
647
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
648
|
+
has_terms_of_service=has_terms_of_service,
|
|
605
649
|
keyword=keyword,
|
|
606
650
|
modified=modified,
|
|
607
651
|
name=name,
|
|
@@ -619,6 +663,7 @@ async def asyncio(
|
|
|
619
663
|
shared=shared,
|
|
620
664
|
state=state,
|
|
621
665
|
type_=type_,
|
|
666
|
+
user_has_consent=user_has_consent,
|
|
622
667
|
uuid_list=uuid_list,
|
|
623
668
|
)
|
|
624
669
|
).parsed
|
|
@@ -27,6 +27,8 @@ def _get_kwargs(
|
|
|
27
27
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
28
28
|
description: Union[Unset, str] = UNSET,
|
|
29
29
|
field: Union[Unset, list[MarketplacePublicOfferingsListFieldItem]] = UNSET,
|
|
30
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
31
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
30
32
|
keyword: Union[Unset, str] = UNSET,
|
|
31
33
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
32
34
|
name: Union[Unset, str] = UNSET,
|
|
@@ -44,6 +46,7 @@ def _get_kwargs(
|
|
|
44
46
|
shared: Union[Unset, bool] = UNSET,
|
|
45
47
|
state: Union[Unset, list[MarketplacePublicOfferingsListStateItem]] = UNSET,
|
|
46
48
|
type_: Union[Unset, list[str]] = UNSET,
|
|
49
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
47
50
|
uuid_list: Union[Unset, str] = UNSET,
|
|
48
51
|
) -> dict[str, Any]:
|
|
49
52
|
params: dict[str, Any] = {}
|
|
@@ -92,6 +95,10 @@ def _get_kwargs(
|
|
|
92
95
|
|
|
93
96
|
params["field"] = json_field
|
|
94
97
|
|
|
98
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
99
|
+
|
|
100
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
101
|
+
|
|
95
102
|
params["keyword"] = keyword
|
|
96
103
|
|
|
97
104
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -169,6 +176,8 @@ def _get_kwargs(
|
|
|
169
176
|
|
|
170
177
|
params["type"] = json_type_
|
|
171
178
|
|
|
179
|
+
params["user_has_consent"] = user_has_consent
|
|
180
|
+
|
|
172
181
|
params["uuid_list"] = uuid_list
|
|
173
182
|
|
|
174
183
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
@@ -222,6 +231,8 @@ def sync_detailed(
|
|
|
222
231
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
223
232
|
description: Union[Unset, str] = UNSET,
|
|
224
233
|
field: Union[Unset, list[MarketplacePublicOfferingsListFieldItem]] = UNSET,
|
|
234
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
235
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
225
236
|
keyword: Union[Unset, str] = UNSET,
|
|
226
237
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
227
238
|
name: Union[Unset, str] = UNSET,
|
|
@@ -239,6 +250,7 @@ def sync_detailed(
|
|
|
239
250
|
shared: Union[Unset, bool] = UNSET,
|
|
240
251
|
state: Union[Unset, list[MarketplacePublicOfferingsListStateItem]] = UNSET,
|
|
241
252
|
type_: Union[Unset, list[str]] = UNSET,
|
|
253
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
242
254
|
uuid_list: Union[Unset, str] = UNSET,
|
|
243
255
|
) -> Response[list["PublicOfferingDetails"]]:
|
|
244
256
|
"""Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
@@ -255,6 +267,8 @@ def sync_detailed(
|
|
|
255
267
|
customer_uuid (Union[Unset, UUID]):
|
|
256
268
|
description (Union[Unset, str]):
|
|
257
269
|
field (Union[Unset, list[MarketplacePublicOfferingsListFieldItem]]):
|
|
270
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
271
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
258
272
|
keyword (Union[Unset, str]):
|
|
259
273
|
modified (Union[Unset, datetime.datetime]):
|
|
260
274
|
name (Union[Unset, str]):
|
|
@@ -272,6 +286,7 @@ def sync_detailed(
|
|
|
272
286
|
shared (Union[Unset, bool]):
|
|
273
287
|
state (Union[Unset, list[MarketplacePublicOfferingsListStateItem]]):
|
|
274
288
|
type_ (Union[Unset, list[str]]):
|
|
289
|
+
user_has_consent (Union[Unset, bool]):
|
|
275
290
|
uuid_list (Union[Unset, str]):
|
|
276
291
|
|
|
277
292
|
Raises:
|
|
@@ -294,6 +309,8 @@ def sync_detailed(
|
|
|
294
309
|
customer_uuid=customer_uuid,
|
|
295
310
|
description=description,
|
|
296
311
|
field=field,
|
|
312
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
313
|
+
has_terms_of_service=has_terms_of_service,
|
|
297
314
|
keyword=keyword,
|
|
298
315
|
modified=modified,
|
|
299
316
|
name=name,
|
|
@@ -311,6 +328,7 @@ def sync_detailed(
|
|
|
311
328
|
shared=shared,
|
|
312
329
|
state=state,
|
|
313
330
|
type_=type_,
|
|
331
|
+
user_has_consent=user_has_consent,
|
|
314
332
|
uuid_list=uuid_list,
|
|
315
333
|
)
|
|
316
334
|
|
|
@@ -335,6 +353,8 @@ def sync(
|
|
|
335
353
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
336
354
|
description: Union[Unset, str] = UNSET,
|
|
337
355
|
field: Union[Unset, list[MarketplacePublicOfferingsListFieldItem]] = UNSET,
|
|
356
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
357
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
338
358
|
keyword: Union[Unset, str] = UNSET,
|
|
339
359
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
340
360
|
name: Union[Unset, str] = UNSET,
|
|
@@ -352,6 +372,7 @@ def sync(
|
|
|
352
372
|
shared: Union[Unset, bool] = UNSET,
|
|
353
373
|
state: Union[Unset, list[MarketplacePublicOfferingsListStateItem]] = UNSET,
|
|
354
374
|
type_: Union[Unset, list[str]] = UNSET,
|
|
375
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
355
376
|
uuid_list: Union[Unset, str] = UNSET,
|
|
356
377
|
) -> list["PublicOfferingDetails"]:
|
|
357
378
|
"""Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
@@ -368,6 +389,8 @@ def sync(
|
|
|
368
389
|
customer_uuid (Union[Unset, UUID]):
|
|
369
390
|
description (Union[Unset, str]):
|
|
370
391
|
field (Union[Unset, list[MarketplacePublicOfferingsListFieldItem]]):
|
|
392
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
393
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
371
394
|
keyword (Union[Unset, str]):
|
|
372
395
|
modified (Union[Unset, datetime.datetime]):
|
|
373
396
|
name (Union[Unset, str]):
|
|
@@ -385,6 +408,7 @@ def sync(
|
|
|
385
408
|
shared (Union[Unset, bool]):
|
|
386
409
|
state (Union[Unset, list[MarketplacePublicOfferingsListStateItem]]):
|
|
387
410
|
type_ (Union[Unset, list[str]]):
|
|
411
|
+
user_has_consent (Union[Unset, bool]):
|
|
388
412
|
uuid_list (Union[Unset, str]):
|
|
389
413
|
|
|
390
414
|
Raises:
|
|
@@ -408,6 +432,8 @@ def sync(
|
|
|
408
432
|
customer_uuid=customer_uuid,
|
|
409
433
|
description=description,
|
|
410
434
|
field=field,
|
|
435
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
436
|
+
has_terms_of_service=has_terms_of_service,
|
|
411
437
|
keyword=keyword,
|
|
412
438
|
modified=modified,
|
|
413
439
|
name=name,
|
|
@@ -425,6 +451,7 @@ def sync(
|
|
|
425
451
|
shared=shared,
|
|
426
452
|
state=state,
|
|
427
453
|
type_=type_,
|
|
454
|
+
user_has_consent=user_has_consent,
|
|
428
455
|
uuid_list=uuid_list,
|
|
429
456
|
).parsed
|
|
430
457
|
|
|
@@ -443,6 +470,8 @@ async def asyncio_detailed(
|
|
|
443
470
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
444
471
|
description: Union[Unset, str] = UNSET,
|
|
445
472
|
field: Union[Unset, list[MarketplacePublicOfferingsListFieldItem]] = UNSET,
|
|
473
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
474
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
446
475
|
keyword: Union[Unset, str] = UNSET,
|
|
447
476
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
448
477
|
name: Union[Unset, str] = UNSET,
|
|
@@ -460,6 +489,7 @@ async def asyncio_detailed(
|
|
|
460
489
|
shared: Union[Unset, bool] = UNSET,
|
|
461
490
|
state: Union[Unset, list[MarketplacePublicOfferingsListStateItem]] = UNSET,
|
|
462
491
|
type_: Union[Unset, list[str]] = UNSET,
|
|
492
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
463
493
|
uuid_list: Union[Unset, str] = UNSET,
|
|
464
494
|
) -> Response[list["PublicOfferingDetails"]]:
|
|
465
495
|
"""Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
@@ -476,6 +506,8 @@ async def asyncio_detailed(
|
|
|
476
506
|
customer_uuid (Union[Unset, UUID]):
|
|
477
507
|
description (Union[Unset, str]):
|
|
478
508
|
field (Union[Unset, list[MarketplacePublicOfferingsListFieldItem]]):
|
|
509
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
510
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
479
511
|
keyword (Union[Unset, str]):
|
|
480
512
|
modified (Union[Unset, datetime.datetime]):
|
|
481
513
|
name (Union[Unset, str]):
|
|
@@ -493,6 +525,7 @@ async def asyncio_detailed(
|
|
|
493
525
|
shared (Union[Unset, bool]):
|
|
494
526
|
state (Union[Unset, list[MarketplacePublicOfferingsListStateItem]]):
|
|
495
527
|
type_ (Union[Unset, list[str]]):
|
|
528
|
+
user_has_consent (Union[Unset, bool]):
|
|
496
529
|
uuid_list (Union[Unset, str]):
|
|
497
530
|
|
|
498
531
|
Raises:
|
|
@@ -515,6 +548,8 @@ async def asyncio_detailed(
|
|
|
515
548
|
customer_uuid=customer_uuid,
|
|
516
549
|
description=description,
|
|
517
550
|
field=field,
|
|
551
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
552
|
+
has_terms_of_service=has_terms_of_service,
|
|
518
553
|
keyword=keyword,
|
|
519
554
|
modified=modified,
|
|
520
555
|
name=name,
|
|
@@ -532,6 +567,7 @@ async def asyncio_detailed(
|
|
|
532
567
|
shared=shared,
|
|
533
568
|
state=state,
|
|
534
569
|
type_=type_,
|
|
570
|
+
user_has_consent=user_has_consent,
|
|
535
571
|
uuid_list=uuid_list,
|
|
536
572
|
)
|
|
537
573
|
|
|
@@ -554,6 +590,8 @@ async def asyncio(
|
|
|
554
590
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
555
591
|
description: Union[Unset, str] = UNSET,
|
|
556
592
|
field: Union[Unset, list[MarketplacePublicOfferingsListFieldItem]] = UNSET,
|
|
593
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
594
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
557
595
|
keyword: Union[Unset, str] = UNSET,
|
|
558
596
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
559
597
|
name: Union[Unset, str] = UNSET,
|
|
@@ -571,6 +609,7 @@ async def asyncio(
|
|
|
571
609
|
shared: Union[Unset, bool] = UNSET,
|
|
572
610
|
state: Union[Unset, list[MarketplacePublicOfferingsListStateItem]] = UNSET,
|
|
573
611
|
type_: Union[Unset, list[str]] = UNSET,
|
|
612
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
574
613
|
uuid_list: Union[Unset, str] = UNSET,
|
|
575
614
|
) -> list["PublicOfferingDetails"]:
|
|
576
615
|
"""Mixin to optimize HEAD requests for DRF views bypassing serializer processing
|
|
@@ -587,6 +626,8 @@ async def asyncio(
|
|
|
587
626
|
customer_uuid (Union[Unset, UUID]):
|
|
588
627
|
description (Union[Unset, str]):
|
|
589
628
|
field (Union[Unset, list[MarketplacePublicOfferingsListFieldItem]]):
|
|
629
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
630
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
590
631
|
keyword (Union[Unset, str]):
|
|
591
632
|
modified (Union[Unset, datetime.datetime]):
|
|
592
633
|
name (Union[Unset, str]):
|
|
@@ -604,6 +645,7 @@ async def asyncio(
|
|
|
604
645
|
shared (Union[Unset, bool]):
|
|
605
646
|
state (Union[Unset, list[MarketplacePublicOfferingsListStateItem]]):
|
|
606
647
|
type_ (Union[Unset, list[str]]):
|
|
648
|
+
user_has_consent (Union[Unset, bool]):
|
|
607
649
|
uuid_list (Union[Unset, str]):
|
|
608
650
|
|
|
609
651
|
Raises:
|
|
@@ -628,6 +670,8 @@ async def asyncio(
|
|
|
628
670
|
customer_uuid=customer_uuid,
|
|
629
671
|
description=description,
|
|
630
672
|
field=field,
|
|
673
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
674
|
+
has_terms_of_service=has_terms_of_service,
|
|
631
675
|
keyword=keyword,
|
|
632
676
|
modified=modified,
|
|
633
677
|
name=name,
|
|
@@ -645,6 +689,7 @@ async def asyncio(
|
|
|
645
689
|
shared=shared,
|
|
646
690
|
state=state,
|
|
647
691
|
type_=type_,
|
|
692
|
+
user_has_consent=user_has_consent,
|
|
648
693
|
uuid_list=uuid_list,
|
|
649
694
|
)
|
|
650
695
|
).parsed
|
waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py
CHANGED
|
@@ -32,6 +32,8 @@ def _get_kwargs(
|
|
|
32
32
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
33
33
|
description: Union[Unset, str] = UNSET,
|
|
34
34
|
field: Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]] = UNSET,
|
|
35
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
36
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
35
37
|
keyword: Union[Unset, str] = UNSET,
|
|
36
38
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
37
39
|
name: Union[Unset, str] = UNSET,
|
|
@@ -49,6 +51,7 @@ def _get_kwargs(
|
|
|
49
51
|
shared: Union[Unset, bool] = UNSET,
|
|
50
52
|
state: Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]] = UNSET,
|
|
51
53
|
type_: Union[Unset, list[str]] = UNSET,
|
|
54
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
52
55
|
uuid_list: Union[Unset, str] = UNSET,
|
|
53
56
|
) -> dict[str, Any]:
|
|
54
57
|
params: dict[str, Any] = {}
|
|
@@ -97,6 +100,10 @@ def _get_kwargs(
|
|
|
97
100
|
|
|
98
101
|
params["field"] = json_field
|
|
99
102
|
|
|
103
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
104
|
+
|
|
105
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
106
|
+
|
|
100
107
|
params["keyword"] = keyword
|
|
101
108
|
|
|
102
109
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -174,6 +181,8 @@ def _get_kwargs(
|
|
|
174
181
|
|
|
175
182
|
params["type"] = json_type_
|
|
176
183
|
|
|
184
|
+
params["user_has_consent"] = user_has_consent
|
|
185
|
+
|
|
177
186
|
params["uuid_list"] = uuid_list
|
|
178
187
|
|
|
179
188
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
@@ -228,6 +237,8 @@ def sync_detailed(
|
|
|
228
237
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
229
238
|
description: Union[Unset, str] = UNSET,
|
|
230
239
|
field: Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]] = UNSET,
|
|
240
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
241
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
231
242
|
keyword: Union[Unset, str] = UNSET,
|
|
232
243
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
233
244
|
name: Union[Unset, str] = UNSET,
|
|
@@ -245,6 +256,7 @@ def sync_detailed(
|
|
|
245
256
|
shared: Union[Unset, bool] = UNSET,
|
|
246
257
|
state: Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]] = UNSET,
|
|
247
258
|
type_: Union[Unset, list[str]] = UNSET,
|
|
259
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
248
260
|
uuid_list: Union[Unset, str] = UNSET,
|
|
249
261
|
) -> Response[list["ProviderOffering"]]:
|
|
250
262
|
"""Return offerings of service provider.
|
|
@@ -262,6 +274,8 @@ def sync_detailed(
|
|
|
262
274
|
customer_uuid (Union[Unset, UUID]):
|
|
263
275
|
description (Union[Unset, str]):
|
|
264
276
|
field (Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]]):
|
|
277
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
278
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
265
279
|
keyword (Union[Unset, str]):
|
|
266
280
|
modified (Union[Unset, datetime.datetime]):
|
|
267
281
|
name (Union[Unset, str]):
|
|
@@ -279,6 +293,7 @@ def sync_detailed(
|
|
|
279
293
|
shared (Union[Unset, bool]):
|
|
280
294
|
state (Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]]):
|
|
281
295
|
type_ (Union[Unset, list[str]]):
|
|
296
|
+
user_has_consent (Union[Unset, bool]):
|
|
282
297
|
uuid_list (Union[Unset, str]):
|
|
283
298
|
|
|
284
299
|
Raises:
|
|
@@ -302,6 +317,8 @@ def sync_detailed(
|
|
|
302
317
|
customer_uuid=customer_uuid,
|
|
303
318
|
description=description,
|
|
304
319
|
field=field,
|
|
320
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
321
|
+
has_terms_of_service=has_terms_of_service,
|
|
305
322
|
keyword=keyword,
|
|
306
323
|
modified=modified,
|
|
307
324
|
name=name,
|
|
@@ -319,6 +336,7 @@ def sync_detailed(
|
|
|
319
336
|
shared=shared,
|
|
320
337
|
state=state,
|
|
321
338
|
type_=type_,
|
|
339
|
+
user_has_consent=user_has_consent,
|
|
322
340
|
uuid_list=uuid_list,
|
|
323
341
|
)
|
|
324
342
|
|
|
@@ -344,6 +362,8 @@ def sync(
|
|
|
344
362
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
345
363
|
description: Union[Unset, str] = UNSET,
|
|
346
364
|
field: Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]] = UNSET,
|
|
365
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
366
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
347
367
|
keyword: Union[Unset, str] = UNSET,
|
|
348
368
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
349
369
|
name: Union[Unset, str] = UNSET,
|
|
@@ -361,6 +381,7 @@ def sync(
|
|
|
361
381
|
shared: Union[Unset, bool] = UNSET,
|
|
362
382
|
state: Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]] = UNSET,
|
|
363
383
|
type_: Union[Unset, list[str]] = UNSET,
|
|
384
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
364
385
|
uuid_list: Union[Unset, str] = UNSET,
|
|
365
386
|
) -> list["ProviderOffering"]:
|
|
366
387
|
"""Return offerings of service provider.
|
|
@@ -378,6 +399,8 @@ def sync(
|
|
|
378
399
|
customer_uuid (Union[Unset, UUID]):
|
|
379
400
|
description (Union[Unset, str]):
|
|
380
401
|
field (Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]]):
|
|
402
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
403
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
381
404
|
keyword (Union[Unset, str]):
|
|
382
405
|
modified (Union[Unset, datetime.datetime]):
|
|
383
406
|
name (Union[Unset, str]):
|
|
@@ -395,6 +418,7 @@ def sync(
|
|
|
395
418
|
shared (Union[Unset, bool]):
|
|
396
419
|
state (Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]]):
|
|
397
420
|
type_ (Union[Unset, list[str]]):
|
|
421
|
+
user_has_consent (Union[Unset, bool]):
|
|
398
422
|
uuid_list (Union[Unset, str]):
|
|
399
423
|
|
|
400
424
|
Raises:
|
|
@@ -419,6 +443,8 @@ def sync(
|
|
|
419
443
|
customer_uuid=customer_uuid,
|
|
420
444
|
description=description,
|
|
421
445
|
field=field,
|
|
446
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
447
|
+
has_terms_of_service=has_terms_of_service,
|
|
422
448
|
keyword=keyword,
|
|
423
449
|
modified=modified,
|
|
424
450
|
name=name,
|
|
@@ -436,6 +462,7 @@ def sync(
|
|
|
436
462
|
shared=shared,
|
|
437
463
|
state=state,
|
|
438
464
|
type_=type_,
|
|
465
|
+
user_has_consent=user_has_consent,
|
|
439
466
|
uuid_list=uuid_list,
|
|
440
467
|
).parsed
|
|
441
468
|
|
|
@@ -455,6 +482,8 @@ async def asyncio_detailed(
|
|
|
455
482
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
456
483
|
description: Union[Unset, str] = UNSET,
|
|
457
484
|
field: Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]] = UNSET,
|
|
485
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
486
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
458
487
|
keyword: Union[Unset, str] = UNSET,
|
|
459
488
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
460
489
|
name: Union[Unset, str] = UNSET,
|
|
@@ -472,6 +501,7 @@ async def asyncio_detailed(
|
|
|
472
501
|
shared: Union[Unset, bool] = UNSET,
|
|
473
502
|
state: Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]] = UNSET,
|
|
474
503
|
type_: Union[Unset, list[str]] = UNSET,
|
|
504
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
475
505
|
uuid_list: Union[Unset, str] = UNSET,
|
|
476
506
|
) -> Response[list["ProviderOffering"]]:
|
|
477
507
|
"""Return offerings of service provider.
|
|
@@ -489,6 +519,8 @@ async def asyncio_detailed(
|
|
|
489
519
|
customer_uuid (Union[Unset, UUID]):
|
|
490
520
|
description (Union[Unset, str]):
|
|
491
521
|
field (Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]]):
|
|
522
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
523
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
492
524
|
keyword (Union[Unset, str]):
|
|
493
525
|
modified (Union[Unset, datetime.datetime]):
|
|
494
526
|
name (Union[Unset, str]):
|
|
@@ -506,6 +538,7 @@ async def asyncio_detailed(
|
|
|
506
538
|
shared (Union[Unset, bool]):
|
|
507
539
|
state (Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]]):
|
|
508
540
|
type_ (Union[Unset, list[str]]):
|
|
541
|
+
user_has_consent (Union[Unset, bool]):
|
|
509
542
|
uuid_list (Union[Unset, str]):
|
|
510
543
|
|
|
511
544
|
Raises:
|
|
@@ -529,6 +562,8 @@ async def asyncio_detailed(
|
|
|
529
562
|
customer_uuid=customer_uuid,
|
|
530
563
|
description=description,
|
|
531
564
|
field=field,
|
|
565
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
566
|
+
has_terms_of_service=has_terms_of_service,
|
|
532
567
|
keyword=keyword,
|
|
533
568
|
modified=modified,
|
|
534
569
|
name=name,
|
|
@@ -546,6 +581,7 @@ async def asyncio_detailed(
|
|
|
546
581
|
shared=shared,
|
|
547
582
|
state=state,
|
|
548
583
|
type_=type_,
|
|
584
|
+
user_has_consent=user_has_consent,
|
|
549
585
|
uuid_list=uuid_list,
|
|
550
586
|
)
|
|
551
587
|
|
|
@@ -569,6 +605,8 @@ async def asyncio(
|
|
|
569
605
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
570
606
|
description: Union[Unset, str] = UNSET,
|
|
571
607
|
field: Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]] = UNSET,
|
|
608
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
609
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
572
610
|
keyword: Union[Unset, str] = UNSET,
|
|
573
611
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
574
612
|
name: Union[Unset, str] = UNSET,
|
|
@@ -586,6 +624,7 @@ async def asyncio(
|
|
|
586
624
|
shared: Union[Unset, bool] = UNSET,
|
|
587
625
|
state: Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]] = UNSET,
|
|
588
626
|
type_: Union[Unset, list[str]] = UNSET,
|
|
627
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
589
628
|
uuid_list: Union[Unset, str] = UNSET,
|
|
590
629
|
) -> list["ProviderOffering"]:
|
|
591
630
|
"""Return offerings of service provider.
|
|
@@ -603,6 +642,8 @@ async def asyncio(
|
|
|
603
642
|
customer_uuid (Union[Unset, UUID]):
|
|
604
643
|
description (Union[Unset, str]):
|
|
605
644
|
field (Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]]):
|
|
645
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
646
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
606
647
|
keyword (Union[Unset, str]):
|
|
607
648
|
modified (Union[Unset, datetime.datetime]):
|
|
608
649
|
name (Union[Unset, str]):
|
|
@@ -620,6 +661,7 @@ async def asyncio(
|
|
|
620
661
|
shared (Union[Unset, bool]):
|
|
621
662
|
state (Union[Unset, list[MarketplaceServiceProvidersOfferingsListStateItem]]):
|
|
622
663
|
type_ (Union[Unset, list[str]]):
|
|
664
|
+
user_has_consent (Union[Unset, bool]):
|
|
623
665
|
uuid_list (Union[Unset, str]):
|
|
624
666
|
|
|
625
667
|
Raises:
|
|
@@ -645,6 +687,8 @@ async def asyncio(
|
|
|
645
687
|
customer_uuid=customer_uuid,
|
|
646
688
|
description=description,
|
|
647
689
|
field=field,
|
|
690
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
691
|
+
has_terms_of_service=has_terms_of_service,
|
|
648
692
|
keyword=keyword,
|
|
649
693
|
modified=modified,
|
|
650
694
|
name=name,
|
|
@@ -662,6 +706,7 @@ async def asyncio(
|
|
|
662
706
|
shared=shared,
|
|
663
707
|
state=state,
|
|
664
708
|
type_=type_,
|
|
709
|
+
user_has_consent=user_has_consent,
|
|
665
710
|
uuid_list=uuid_list,
|
|
666
711
|
)
|
|
667
712
|
).parsed
|