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
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py
CHANGED
|
@@ -30,6 +30,8 @@ def _get_kwargs(
|
|
|
30
30
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
31
31
|
description: Union[Unset, str] = UNSET,
|
|
32
32
|
end: Union[Unset, str] = UNSET,
|
|
33
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
34
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
33
35
|
keyword: Union[Unset, str] = UNSET,
|
|
34
36
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
35
37
|
name: Union[Unset, str] = UNSET,
|
|
@@ -48,6 +50,7 @@ def _get_kwargs(
|
|
|
48
50
|
start: Union[Unset, str] = UNSET,
|
|
49
51
|
state: Union[Unset, list[MarketplaceProviderOfferingsCostsListStateItem]] = UNSET,
|
|
50
52
|
type_: Union[Unset, list[str]] = UNSET,
|
|
53
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
51
54
|
uuid_list: Union[Unset, str] = UNSET,
|
|
52
55
|
) -> dict[str, Any]:
|
|
53
56
|
params: dict[str, Any] = {}
|
|
@@ -91,6 +94,10 @@ def _get_kwargs(
|
|
|
91
94
|
|
|
92
95
|
params["end"] = end
|
|
93
96
|
|
|
97
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
98
|
+
|
|
99
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
100
|
+
|
|
94
101
|
params["keyword"] = keyword
|
|
95
102
|
|
|
96
103
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -170,6 +177,8 @@ def _get_kwargs(
|
|
|
170
177
|
|
|
171
178
|
params["type"] = json_type_
|
|
172
179
|
|
|
180
|
+
params["user_has_consent"] = user_has_consent
|
|
181
|
+
|
|
173
182
|
params["uuid_list"] = uuid_list
|
|
174
183
|
|
|
175
184
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
@@ -225,6 +234,8 @@ def sync_detailed(
|
|
|
225
234
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
226
235
|
description: Union[Unset, str] = UNSET,
|
|
227
236
|
end: Union[Unset, str] = UNSET,
|
|
237
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
238
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
228
239
|
keyword: Union[Unset, str] = UNSET,
|
|
229
240
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
230
241
|
name: Union[Unset, str] = UNSET,
|
|
@@ -243,6 +254,7 @@ def sync_detailed(
|
|
|
243
254
|
start: Union[Unset, str] = UNSET,
|
|
244
255
|
state: Union[Unset, list[MarketplaceProviderOfferingsCostsListStateItem]] = UNSET,
|
|
245
256
|
type_: Union[Unset, list[str]] = UNSET,
|
|
257
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
246
258
|
uuid_list: Union[Unset, str] = UNSET,
|
|
247
259
|
) -> Response[list["ProviderOfferingCosts"]]:
|
|
248
260
|
"""Get costs for offering.
|
|
@@ -261,6 +273,8 @@ def sync_detailed(
|
|
|
261
273
|
customer_uuid (Union[Unset, UUID]):
|
|
262
274
|
description (Union[Unset, str]):
|
|
263
275
|
end (Union[Unset, str]):
|
|
276
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
277
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
264
278
|
keyword (Union[Unset, str]):
|
|
265
279
|
modified (Union[Unset, datetime.datetime]):
|
|
266
280
|
name (Union[Unset, str]):
|
|
@@ -279,6 +293,7 @@ def sync_detailed(
|
|
|
279
293
|
start (Union[Unset, str]):
|
|
280
294
|
state (Union[Unset, list[MarketplaceProviderOfferingsCostsListStateItem]]):
|
|
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:
|
|
@@ -303,6 +318,8 @@ def sync_detailed(
|
|
|
303
318
|
customer_uuid=customer_uuid,
|
|
304
319
|
description=description,
|
|
305
320
|
end=end,
|
|
321
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
322
|
+
has_terms_of_service=has_terms_of_service,
|
|
306
323
|
keyword=keyword,
|
|
307
324
|
modified=modified,
|
|
308
325
|
name=name,
|
|
@@ -321,6 +338,7 @@ def sync_detailed(
|
|
|
321
338
|
start=start,
|
|
322
339
|
state=state,
|
|
323
340
|
type_=type_,
|
|
341
|
+
user_has_consent=user_has_consent,
|
|
324
342
|
uuid_list=uuid_list,
|
|
325
343
|
)
|
|
326
344
|
|
|
@@ -347,6 +365,8 @@ def sync(
|
|
|
347
365
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
348
366
|
description: Union[Unset, str] = UNSET,
|
|
349
367
|
end: Union[Unset, str] = UNSET,
|
|
368
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
369
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
350
370
|
keyword: Union[Unset, str] = UNSET,
|
|
351
371
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
352
372
|
name: Union[Unset, str] = UNSET,
|
|
@@ -365,6 +385,7 @@ def sync(
|
|
|
365
385
|
start: Union[Unset, str] = UNSET,
|
|
366
386
|
state: Union[Unset, list[MarketplaceProviderOfferingsCostsListStateItem]] = UNSET,
|
|
367
387
|
type_: Union[Unset, list[str]] = UNSET,
|
|
388
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
368
389
|
uuid_list: Union[Unset, str] = UNSET,
|
|
369
390
|
) -> list["ProviderOfferingCosts"]:
|
|
370
391
|
"""Get costs for offering.
|
|
@@ -383,6 +404,8 @@ def sync(
|
|
|
383
404
|
customer_uuid (Union[Unset, UUID]):
|
|
384
405
|
description (Union[Unset, str]):
|
|
385
406
|
end (Union[Unset, str]):
|
|
407
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
408
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
386
409
|
keyword (Union[Unset, str]):
|
|
387
410
|
modified (Union[Unset, datetime.datetime]):
|
|
388
411
|
name (Union[Unset, str]):
|
|
@@ -401,6 +424,7 @@ def sync(
|
|
|
401
424
|
start (Union[Unset, str]):
|
|
402
425
|
state (Union[Unset, list[MarketplaceProviderOfferingsCostsListStateItem]]):
|
|
403
426
|
type_ (Union[Unset, list[str]]):
|
|
427
|
+
user_has_consent (Union[Unset, bool]):
|
|
404
428
|
uuid_list (Union[Unset, str]):
|
|
405
429
|
|
|
406
430
|
Raises:
|
|
@@ -426,6 +450,8 @@ def sync(
|
|
|
426
450
|
customer_uuid=customer_uuid,
|
|
427
451
|
description=description,
|
|
428
452
|
end=end,
|
|
453
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
454
|
+
has_terms_of_service=has_terms_of_service,
|
|
429
455
|
keyword=keyword,
|
|
430
456
|
modified=modified,
|
|
431
457
|
name=name,
|
|
@@ -444,6 +470,7 @@ def sync(
|
|
|
444
470
|
start=start,
|
|
445
471
|
state=state,
|
|
446
472
|
type_=type_,
|
|
473
|
+
user_has_consent=user_has_consent,
|
|
447
474
|
uuid_list=uuid_list,
|
|
448
475
|
).parsed
|
|
449
476
|
|
|
@@ -464,6 +491,8 @@ async def asyncio_detailed(
|
|
|
464
491
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
465
492
|
description: Union[Unset, str] = UNSET,
|
|
466
493
|
end: Union[Unset, str] = UNSET,
|
|
494
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
495
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
467
496
|
keyword: Union[Unset, str] = UNSET,
|
|
468
497
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
469
498
|
name: Union[Unset, str] = UNSET,
|
|
@@ -482,6 +511,7 @@ async def asyncio_detailed(
|
|
|
482
511
|
start: Union[Unset, str] = UNSET,
|
|
483
512
|
state: Union[Unset, list[MarketplaceProviderOfferingsCostsListStateItem]] = UNSET,
|
|
484
513
|
type_: Union[Unset, list[str]] = UNSET,
|
|
514
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
485
515
|
uuid_list: Union[Unset, str] = UNSET,
|
|
486
516
|
) -> Response[list["ProviderOfferingCosts"]]:
|
|
487
517
|
"""Get costs for offering.
|
|
@@ -500,6 +530,8 @@ async def asyncio_detailed(
|
|
|
500
530
|
customer_uuid (Union[Unset, UUID]):
|
|
501
531
|
description (Union[Unset, str]):
|
|
502
532
|
end (Union[Unset, str]):
|
|
533
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
534
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
503
535
|
keyword (Union[Unset, str]):
|
|
504
536
|
modified (Union[Unset, datetime.datetime]):
|
|
505
537
|
name (Union[Unset, str]):
|
|
@@ -518,6 +550,7 @@ async def asyncio_detailed(
|
|
|
518
550
|
start (Union[Unset, str]):
|
|
519
551
|
state (Union[Unset, list[MarketplaceProviderOfferingsCostsListStateItem]]):
|
|
520
552
|
type_ (Union[Unset, list[str]]):
|
|
553
|
+
user_has_consent (Union[Unset, bool]):
|
|
521
554
|
uuid_list (Union[Unset, str]):
|
|
522
555
|
|
|
523
556
|
Raises:
|
|
@@ -542,6 +575,8 @@ async def asyncio_detailed(
|
|
|
542
575
|
customer_uuid=customer_uuid,
|
|
543
576
|
description=description,
|
|
544
577
|
end=end,
|
|
578
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
579
|
+
has_terms_of_service=has_terms_of_service,
|
|
545
580
|
keyword=keyword,
|
|
546
581
|
modified=modified,
|
|
547
582
|
name=name,
|
|
@@ -560,6 +595,7 @@ async def asyncio_detailed(
|
|
|
560
595
|
start=start,
|
|
561
596
|
state=state,
|
|
562
597
|
type_=type_,
|
|
598
|
+
user_has_consent=user_has_consent,
|
|
563
599
|
uuid_list=uuid_list,
|
|
564
600
|
)
|
|
565
601
|
|
|
@@ -584,6 +620,8 @@ async def asyncio(
|
|
|
584
620
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
585
621
|
description: Union[Unset, str] = UNSET,
|
|
586
622
|
end: Union[Unset, str] = UNSET,
|
|
623
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
624
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
587
625
|
keyword: Union[Unset, str] = UNSET,
|
|
588
626
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
589
627
|
name: Union[Unset, str] = UNSET,
|
|
@@ -602,6 +640,7 @@ async def asyncio(
|
|
|
602
640
|
start: Union[Unset, str] = UNSET,
|
|
603
641
|
state: Union[Unset, list[MarketplaceProviderOfferingsCostsListStateItem]] = UNSET,
|
|
604
642
|
type_: Union[Unset, list[str]] = UNSET,
|
|
643
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
605
644
|
uuid_list: Union[Unset, str] = UNSET,
|
|
606
645
|
) -> list["ProviderOfferingCosts"]:
|
|
607
646
|
"""Get costs for offering.
|
|
@@ -620,6 +659,8 @@ async def asyncio(
|
|
|
620
659
|
customer_uuid (Union[Unset, UUID]):
|
|
621
660
|
description (Union[Unset, str]):
|
|
622
661
|
end (Union[Unset, str]):
|
|
662
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
663
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
623
664
|
keyword (Union[Unset, str]):
|
|
624
665
|
modified (Union[Unset, datetime.datetime]):
|
|
625
666
|
name (Union[Unset, str]):
|
|
@@ -638,6 +679,7 @@ async def asyncio(
|
|
|
638
679
|
start (Union[Unset, str]):
|
|
639
680
|
state (Union[Unset, list[MarketplaceProviderOfferingsCostsListStateItem]]):
|
|
640
681
|
type_ (Union[Unset, list[str]]):
|
|
682
|
+
user_has_consent (Union[Unset, bool]):
|
|
641
683
|
uuid_list (Union[Unset, str]):
|
|
642
684
|
|
|
643
685
|
Raises:
|
|
@@ -664,6 +706,8 @@ async def asyncio(
|
|
|
664
706
|
customer_uuid=customer_uuid,
|
|
665
707
|
description=description,
|
|
666
708
|
end=end,
|
|
709
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
710
|
+
has_terms_of_service=has_terms_of_service,
|
|
667
711
|
keyword=keyword,
|
|
668
712
|
modified=modified,
|
|
669
713
|
name=name,
|
|
@@ -682,6 +726,7 @@ async def asyncio(
|
|
|
682
726
|
start=start,
|
|
683
727
|
state=state,
|
|
684
728
|
type_=type_,
|
|
729
|
+
user_has_consent=user_has_consent,
|
|
685
730
|
uuid_list=uuid_list,
|
|
686
731
|
)
|
|
687
732
|
).parsed
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_count.py
CHANGED
|
@@ -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[MarketplaceProviderOfferingsCountStateItem]] = 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[MarketplaceProviderOfferingsCountStateItem]] = 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[MarketplaceProviderOfferingsCountStateItem]]):
|
|
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[MarketplaceProviderOfferingsCountStateItem]] = 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[MarketplaceProviderOfferingsCountStateItem]]):
|
|
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[MarketplaceProviderOfferingsCountStateItem]] = 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[MarketplaceProviderOfferingsCountStateItem]]):
|
|
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[MarketplaceProviderOfferingsCountStateItem]] = 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[MarketplaceProviderOfferingsCountStateItem]]):
|
|
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
|
|
@@ -30,6 +30,8 @@ def _get_kwargs(
|
|
|
30
30
|
customer: Union[Unset, str] = UNSET,
|
|
31
31
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
32
32
|
description: Union[Unset, str] = UNSET,
|
|
33
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
34
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
33
35
|
keyword: Union[Unset, str] = UNSET,
|
|
34
36
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
35
37
|
name: Union[Unset, str] = UNSET,
|
|
@@ -47,6 +49,7 @@ def _get_kwargs(
|
|
|
47
49
|
shared: Union[Unset, bool] = UNSET,
|
|
48
50
|
state: Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]] = UNSET,
|
|
49
51
|
type_: Union[Unset, list[str]] = UNSET,
|
|
52
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
50
53
|
uuid_list: Union[Unset, str] = UNSET,
|
|
51
54
|
) -> dict[str, Any]:
|
|
52
55
|
params: dict[str, Any] = {}
|
|
@@ -86,6 +89,10 @@ def _get_kwargs(
|
|
|
86
89
|
|
|
87
90
|
params["description"] = description
|
|
88
91
|
|
|
92
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
93
|
+
|
|
94
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
95
|
+
|
|
89
96
|
params["keyword"] = keyword
|
|
90
97
|
|
|
91
98
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -163,6 +170,8 @@ def _get_kwargs(
|
|
|
163
170
|
|
|
164
171
|
params["type"] = json_type_
|
|
165
172
|
|
|
173
|
+
params["user_has_consent"] = user_has_consent
|
|
174
|
+
|
|
166
175
|
params["uuid_list"] = uuid_list
|
|
167
176
|
|
|
168
177
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
@@ -216,6 +225,8 @@ def sync_detailed(
|
|
|
216
225
|
customer: Union[Unset, str] = UNSET,
|
|
217
226
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
218
227
|
description: Union[Unset, str] = UNSET,
|
|
228
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
229
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
219
230
|
keyword: Union[Unset, str] = UNSET,
|
|
220
231
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
221
232
|
name: Union[Unset, str] = UNSET,
|
|
@@ -233,6 +244,7 @@ def sync_detailed(
|
|
|
233
244
|
shared: Union[Unset, bool] = UNSET,
|
|
234
245
|
state: Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]] = UNSET,
|
|
235
246
|
type_: Union[Unset, list[str]] = UNSET,
|
|
247
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
236
248
|
uuid_list: Union[Unset, str] = UNSET,
|
|
237
249
|
) -> Response[list["ProviderOfferingCustomer"]]:
|
|
238
250
|
"""Get customers for offering.
|
|
@@ -249,6 +261,8 @@ def sync_detailed(
|
|
|
249
261
|
customer (Union[Unset, str]):
|
|
250
262
|
customer_uuid (Union[Unset, UUID]):
|
|
251
263
|
description (Union[Unset, str]):
|
|
264
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
265
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
252
266
|
keyword (Union[Unset, str]):
|
|
253
267
|
modified (Union[Unset, datetime.datetime]):
|
|
254
268
|
name (Union[Unset, str]):
|
|
@@ -266,6 +280,7 @@ def sync_detailed(
|
|
|
266
280
|
shared (Union[Unset, bool]):
|
|
267
281
|
state (Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]]):
|
|
268
282
|
type_ (Union[Unset, list[str]]):
|
|
283
|
+
user_has_consent (Union[Unset, bool]):
|
|
269
284
|
uuid_list (Union[Unset, str]):
|
|
270
285
|
|
|
271
286
|
Raises:
|
|
@@ -288,6 +303,8 @@ def sync_detailed(
|
|
|
288
303
|
customer=customer,
|
|
289
304
|
customer_uuid=customer_uuid,
|
|
290
305
|
description=description,
|
|
306
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
307
|
+
has_terms_of_service=has_terms_of_service,
|
|
291
308
|
keyword=keyword,
|
|
292
309
|
modified=modified,
|
|
293
310
|
name=name,
|
|
@@ -305,6 +322,7 @@ def sync_detailed(
|
|
|
305
322
|
shared=shared,
|
|
306
323
|
state=state,
|
|
307
324
|
type_=type_,
|
|
325
|
+
user_has_consent=user_has_consent,
|
|
308
326
|
uuid_list=uuid_list,
|
|
309
327
|
)
|
|
310
328
|
|
|
@@ -329,6 +347,8 @@ def sync(
|
|
|
329
347
|
customer: Union[Unset, str] = UNSET,
|
|
330
348
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
331
349
|
description: Union[Unset, str] = UNSET,
|
|
350
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
351
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
332
352
|
keyword: Union[Unset, str] = UNSET,
|
|
333
353
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
334
354
|
name: Union[Unset, str] = UNSET,
|
|
@@ -346,6 +366,7 @@ def sync(
|
|
|
346
366
|
shared: Union[Unset, bool] = UNSET,
|
|
347
367
|
state: Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]] = UNSET,
|
|
348
368
|
type_: Union[Unset, list[str]] = UNSET,
|
|
369
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
349
370
|
uuid_list: Union[Unset, str] = UNSET,
|
|
350
371
|
) -> list["ProviderOfferingCustomer"]:
|
|
351
372
|
"""Get customers for offering.
|
|
@@ -362,6 +383,8 @@ def sync(
|
|
|
362
383
|
customer (Union[Unset, str]):
|
|
363
384
|
customer_uuid (Union[Unset, UUID]):
|
|
364
385
|
description (Union[Unset, str]):
|
|
386
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
387
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
365
388
|
keyword (Union[Unset, str]):
|
|
366
389
|
modified (Union[Unset, datetime.datetime]):
|
|
367
390
|
name (Union[Unset, str]):
|
|
@@ -379,6 +402,7 @@ def sync(
|
|
|
379
402
|
shared (Union[Unset, bool]):
|
|
380
403
|
state (Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]]):
|
|
381
404
|
type_ (Union[Unset, list[str]]):
|
|
405
|
+
user_has_consent (Union[Unset, bool]):
|
|
382
406
|
uuid_list (Union[Unset, str]):
|
|
383
407
|
|
|
384
408
|
Raises:
|
|
@@ -402,6 +426,8 @@ def sync(
|
|
|
402
426
|
customer=customer,
|
|
403
427
|
customer_uuid=customer_uuid,
|
|
404
428
|
description=description,
|
|
429
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
430
|
+
has_terms_of_service=has_terms_of_service,
|
|
405
431
|
keyword=keyword,
|
|
406
432
|
modified=modified,
|
|
407
433
|
name=name,
|
|
@@ -419,6 +445,7 @@ def sync(
|
|
|
419
445
|
shared=shared,
|
|
420
446
|
state=state,
|
|
421
447
|
type_=type_,
|
|
448
|
+
user_has_consent=user_has_consent,
|
|
422
449
|
uuid_list=uuid_list,
|
|
423
450
|
).parsed
|
|
424
451
|
|
|
@@ -437,6 +464,8 @@ async def asyncio_detailed(
|
|
|
437
464
|
customer: Union[Unset, str] = UNSET,
|
|
438
465
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
439
466
|
description: Union[Unset, str] = UNSET,
|
|
467
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
468
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
440
469
|
keyword: Union[Unset, str] = UNSET,
|
|
441
470
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
442
471
|
name: Union[Unset, str] = UNSET,
|
|
@@ -454,6 +483,7 @@ async def asyncio_detailed(
|
|
|
454
483
|
shared: Union[Unset, bool] = UNSET,
|
|
455
484
|
state: Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]] = UNSET,
|
|
456
485
|
type_: Union[Unset, list[str]] = UNSET,
|
|
486
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
457
487
|
uuid_list: Union[Unset, str] = UNSET,
|
|
458
488
|
) -> Response[list["ProviderOfferingCustomer"]]:
|
|
459
489
|
"""Get customers for offering.
|
|
@@ -470,6 +500,8 @@ async def asyncio_detailed(
|
|
|
470
500
|
customer (Union[Unset, str]):
|
|
471
501
|
customer_uuid (Union[Unset, UUID]):
|
|
472
502
|
description (Union[Unset, str]):
|
|
503
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
504
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
473
505
|
keyword (Union[Unset, str]):
|
|
474
506
|
modified (Union[Unset, datetime.datetime]):
|
|
475
507
|
name (Union[Unset, str]):
|
|
@@ -487,6 +519,7 @@ async def asyncio_detailed(
|
|
|
487
519
|
shared (Union[Unset, bool]):
|
|
488
520
|
state (Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]]):
|
|
489
521
|
type_ (Union[Unset, list[str]]):
|
|
522
|
+
user_has_consent (Union[Unset, bool]):
|
|
490
523
|
uuid_list (Union[Unset, str]):
|
|
491
524
|
|
|
492
525
|
Raises:
|
|
@@ -509,6 +542,8 @@ async def asyncio_detailed(
|
|
|
509
542
|
customer=customer,
|
|
510
543
|
customer_uuid=customer_uuid,
|
|
511
544
|
description=description,
|
|
545
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
546
|
+
has_terms_of_service=has_terms_of_service,
|
|
512
547
|
keyword=keyword,
|
|
513
548
|
modified=modified,
|
|
514
549
|
name=name,
|
|
@@ -526,6 +561,7 @@ async def asyncio_detailed(
|
|
|
526
561
|
shared=shared,
|
|
527
562
|
state=state,
|
|
528
563
|
type_=type_,
|
|
564
|
+
user_has_consent=user_has_consent,
|
|
529
565
|
uuid_list=uuid_list,
|
|
530
566
|
)
|
|
531
567
|
|
|
@@ -548,6 +584,8 @@ async def asyncio(
|
|
|
548
584
|
customer: Union[Unset, str] = UNSET,
|
|
549
585
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
550
586
|
description: Union[Unset, str] = UNSET,
|
|
587
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
588
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
551
589
|
keyword: Union[Unset, str] = UNSET,
|
|
552
590
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
553
591
|
name: Union[Unset, str] = UNSET,
|
|
@@ -565,6 +603,7 @@ async def asyncio(
|
|
|
565
603
|
shared: Union[Unset, bool] = UNSET,
|
|
566
604
|
state: Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]] = UNSET,
|
|
567
605
|
type_: Union[Unset, list[str]] = UNSET,
|
|
606
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
568
607
|
uuid_list: Union[Unset, str] = UNSET,
|
|
569
608
|
) -> list["ProviderOfferingCustomer"]:
|
|
570
609
|
"""Get customers for offering.
|
|
@@ -581,6 +620,8 @@ async def asyncio(
|
|
|
581
620
|
customer (Union[Unset, str]):
|
|
582
621
|
customer_uuid (Union[Unset, UUID]):
|
|
583
622
|
description (Union[Unset, str]):
|
|
623
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
624
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
584
625
|
keyword (Union[Unset, str]):
|
|
585
626
|
modified (Union[Unset, datetime.datetime]):
|
|
586
627
|
name (Union[Unset, str]):
|
|
@@ -598,6 +639,7 @@ async def asyncio(
|
|
|
598
639
|
shared (Union[Unset, bool]):
|
|
599
640
|
state (Union[Unset, list[MarketplaceProviderOfferingsCustomersListStateItem]]):
|
|
600
641
|
type_ (Union[Unset, list[str]]):
|
|
642
|
+
user_has_consent (Union[Unset, bool]):
|
|
601
643
|
uuid_list (Union[Unset, str]):
|
|
602
644
|
|
|
603
645
|
Raises:
|
|
@@ -622,6 +664,8 @@ async def asyncio(
|
|
|
622
664
|
customer=customer,
|
|
623
665
|
customer_uuid=customer_uuid,
|
|
624
666
|
description=description,
|
|
667
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
668
|
+
has_terms_of_service=has_terms_of_service,
|
|
625
669
|
keyword=keyword,
|
|
626
670
|
modified=modified,
|
|
627
671
|
name=name,
|
|
@@ -639,6 +683,7 @@ async def asyncio(
|
|
|
639
683
|
shared=shared,
|
|
640
684
|
state=state,
|
|
641
685
|
type_=type_,
|
|
686
|
+
user_has_consent=user_has_consent,
|
|
642
687
|
uuid_list=uuid_list,
|
|
643
688
|
)
|
|
644
689
|
).parsed
|