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_groups_count.py
CHANGED
|
@@ -26,6 +26,8 @@ def _get_kwargs(
|
|
|
26
26
|
customer: Union[Unset, str] = UNSET,
|
|
27
27
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
28
28
|
description: Union[Unset, str] = UNSET,
|
|
29
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
30
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
29
31
|
keyword: Union[Unset, str] = UNSET,
|
|
30
32
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
31
33
|
name: Union[Unset, str] = UNSET,
|
|
@@ -43,6 +45,7 @@ def _get_kwargs(
|
|
|
43
45
|
shared: Union[Unset, bool] = UNSET,
|
|
44
46
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsCountStateItem]] = UNSET,
|
|
45
47
|
type_: Union[Unset, list[str]] = UNSET,
|
|
48
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
46
49
|
uuid_list: Union[Unset, str] = UNSET,
|
|
47
50
|
) -> dict[str, Any]:
|
|
48
51
|
params: dict[str, Any] = {}
|
|
@@ -82,6 +85,10 @@ def _get_kwargs(
|
|
|
82
85
|
|
|
83
86
|
params["description"] = description
|
|
84
87
|
|
|
88
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
89
|
+
|
|
90
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
91
|
+
|
|
85
92
|
params["keyword"] = keyword
|
|
86
93
|
|
|
87
94
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -159,6 +166,8 @@ def _get_kwargs(
|
|
|
159
166
|
|
|
160
167
|
params["type"] = json_type_
|
|
161
168
|
|
|
169
|
+
params["user_has_consent"] = user_has_consent
|
|
170
|
+
|
|
162
171
|
params["uuid_list"] = uuid_list
|
|
163
172
|
|
|
164
173
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
@@ -209,6 +218,8 @@ def sync_detailed(
|
|
|
209
218
|
customer: Union[Unset, str] = UNSET,
|
|
210
219
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
211
220
|
description: Union[Unset, str] = UNSET,
|
|
221
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
222
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
212
223
|
keyword: Union[Unset, str] = UNSET,
|
|
213
224
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
214
225
|
name: Union[Unset, str] = UNSET,
|
|
@@ -226,6 +237,7 @@ def sync_detailed(
|
|
|
226
237
|
shared: Union[Unset, bool] = UNSET,
|
|
227
238
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsCountStateItem]] = UNSET,
|
|
228
239
|
type_: Union[Unset, list[str]] = UNSET,
|
|
240
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
229
241
|
uuid_list: Union[Unset, str] = UNSET,
|
|
230
242
|
) -> Response[int]:
|
|
231
243
|
"""Get number of items in the collection matching the request parameters.
|
|
@@ -241,6 +253,8 @@ def sync_detailed(
|
|
|
241
253
|
customer (Union[Unset, str]):
|
|
242
254
|
customer_uuid (Union[Unset, UUID]):
|
|
243
255
|
description (Union[Unset, str]):
|
|
256
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
257
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
244
258
|
keyword (Union[Unset, str]):
|
|
245
259
|
modified (Union[Unset, datetime.datetime]):
|
|
246
260
|
name (Union[Unset, str]):
|
|
@@ -258,6 +272,7 @@ def sync_detailed(
|
|
|
258
272
|
shared (Union[Unset, bool]):
|
|
259
273
|
state (Union[Unset, list[MarketplaceProviderOfferingsGroupsCountStateItem]]):
|
|
260
274
|
type_ (Union[Unset, list[str]]):
|
|
275
|
+
user_has_consent (Union[Unset, bool]):
|
|
261
276
|
uuid_list (Union[Unset, str]):
|
|
262
277
|
|
|
263
278
|
Raises:
|
|
@@ -279,6 +294,8 @@ def sync_detailed(
|
|
|
279
294
|
customer=customer,
|
|
280
295
|
customer_uuid=customer_uuid,
|
|
281
296
|
description=description,
|
|
297
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
298
|
+
has_terms_of_service=has_terms_of_service,
|
|
282
299
|
keyword=keyword,
|
|
283
300
|
modified=modified,
|
|
284
301
|
name=name,
|
|
@@ -296,6 +313,7 @@ def sync_detailed(
|
|
|
296
313
|
shared=shared,
|
|
297
314
|
state=state,
|
|
298
315
|
type_=type_,
|
|
316
|
+
user_has_consent=user_has_consent,
|
|
299
317
|
uuid_list=uuid_list,
|
|
300
318
|
)
|
|
301
319
|
|
|
@@ -319,6 +337,8 @@ def sync(
|
|
|
319
337
|
customer: Union[Unset, str] = UNSET,
|
|
320
338
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
321
339
|
description: Union[Unset, str] = UNSET,
|
|
340
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
341
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
322
342
|
keyword: Union[Unset, str] = UNSET,
|
|
323
343
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
324
344
|
name: Union[Unset, str] = UNSET,
|
|
@@ -336,6 +356,7 @@ def sync(
|
|
|
336
356
|
shared: Union[Unset, bool] = UNSET,
|
|
337
357
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsCountStateItem]] = UNSET,
|
|
338
358
|
type_: Union[Unset, list[str]] = UNSET,
|
|
359
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
339
360
|
uuid_list: Union[Unset, str] = UNSET,
|
|
340
361
|
) -> int:
|
|
341
362
|
"""Get number of items in the collection matching the request parameters.
|
|
@@ -351,6 +372,8 @@ def sync(
|
|
|
351
372
|
customer (Union[Unset, str]):
|
|
352
373
|
customer_uuid (Union[Unset, UUID]):
|
|
353
374
|
description (Union[Unset, str]):
|
|
375
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
376
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
354
377
|
keyword (Union[Unset, str]):
|
|
355
378
|
modified (Union[Unset, datetime.datetime]):
|
|
356
379
|
name (Union[Unset, str]):
|
|
@@ -368,6 +391,7 @@ def sync(
|
|
|
368
391
|
shared (Union[Unset, bool]):
|
|
369
392
|
state (Union[Unset, list[MarketplaceProviderOfferingsGroupsCountStateItem]]):
|
|
370
393
|
type_ (Union[Unset, list[str]]):
|
|
394
|
+
user_has_consent (Union[Unset, bool]):
|
|
371
395
|
uuid_list (Union[Unset, str]):
|
|
372
396
|
|
|
373
397
|
Raises:
|
|
@@ -390,6 +414,8 @@ def sync(
|
|
|
390
414
|
customer=customer,
|
|
391
415
|
customer_uuid=customer_uuid,
|
|
392
416
|
description=description,
|
|
417
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
418
|
+
has_terms_of_service=has_terms_of_service,
|
|
393
419
|
keyword=keyword,
|
|
394
420
|
modified=modified,
|
|
395
421
|
name=name,
|
|
@@ -407,6 +433,7 @@ def sync(
|
|
|
407
433
|
shared=shared,
|
|
408
434
|
state=state,
|
|
409
435
|
type_=type_,
|
|
436
|
+
user_has_consent=user_has_consent,
|
|
410
437
|
uuid_list=uuid_list,
|
|
411
438
|
).parsed
|
|
412
439
|
|
|
@@ -424,6 +451,8 @@ async def asyncio_detailed(
|
|
|
424
451
|
customer: Union[Unset, str] = UNSET,
|
|
425
452
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
426
453
|
description: Union[Unset, str] = UNSET,
|
|
454
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
455
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
427
456
|
keyword: Union[Unset, str] = UNSET,
|
|
428
457
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
429
458
|
name: Union[Unset, str] = UNSET,
|
|
@@ -441,6 +470,7 @@ async def asyncio_detailed(
|
|
|
441
470
|
shared: Union[Unset, bool] = UNSET,
|
|
442
471
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsCountStateItem]] = UNSET,
|
|
443
472
|
type_: Union[Unset, list[str]] = UNSET,
|
|
473
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
444
474
|
uuid_list: Union[Unset, str] = UNSET,
|
|
445
475
|
) -> Response[int]:
|
|
446
476
|
"""Get number of items in the collection matching the request parameters.
|
|
@@ -456,6 +486,8 @@ async def asyncio_detailed(
|
|
|
456
486
|
customer (Union[Unset, str]):
|
|
457
487
|
customer_uuid (Union[Unset, UUID]):
|
|
458
488
|
description (Union[Unset, str]):
|
|
489
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
490
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
459
491
|
keyword (Union[Unset, str]):
|
|
460
492
|
modified (Union[Unset, datetime.datetime]):
|
|
461
493
|
name (Union[Unset, str]):
|
|
@@ -473,6 +505,7 @@ async def asyncio_detailed(
|
|
|
473
505
|
shared (Union[Unset, bool]):
|
|
474
506
|
state (Union[Unset, list[MarketplaceProviderOfferingsGroupsCountStateItem]]):
|
|
475
507
|
type_ (Union[Unset, list[str]]):
|
|
508
|
+
user_has_consent (Union[Unset, bool]):
|
|
476
509
|
uuid_list (Union[Unset, str]):
|
|
477
510
|
|
|
478
511
|
Raises:
|
|
@@ -494,6 +527,8 @@ async def asyncio_detailed(
|
|
|
494
527
|
customer=customer,
|
|
495
528
|
customer_uuid=customer_uuid,
|
|
496
529
|
description=description,
|
|
530
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
531
|
+
has_terms_of_service=has_terms_of_service,
|
|
497
532
|
keyword=keyword,
|
|
498
533
|
modified=modified,
|
|
499
534
|
name=name,
|
|
@@ -511,6 +546,7 @@ async def asyncio_detailed(
|
|
|
511
546
|
shared=shared,
|
|
512
547
|
state=state,
|
|
513
548
|
type_=type_,
|
|
549
|
+
user_has_consent=user_has_consent,
|
|
514
550
|
uuid_list=uuid_list,
|
|
515
551
|
)
|
|
516
552
|
|
|
@@ -532,6 +568,8 @@ async def asyncio(
|
|
|
532
568
|
customer: Union[Unset, str] = UNSET,
|
|
533
569
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
534
570
|
description: Union[Unset, str] = UNSET,
|
|
571
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
572
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
535
573
|
keyword: Union[Unset, str] = UNSET,
|
|
536
574
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
537
575
|
name: Union[Unset, str] = UNSET,
|
|
@@ -549,6 +587,7 @@ async def asyncio(
|
|
|
549
587
|
shared: Union[Unset, bool] = UNSET,
|
|
550
588
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsCountStateItem]] = UNSET,
|
|
551
589
|
type_: Union[Unset, list[str]] = UNSET,
|
|
590
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
552
591
|
uuid_list: Union[Unset, str] = UNSET,
|
|
553
592
|
) -> int:
|
|
554
593
|
"""Get number of items in the collection matching the request parameters.
|
|
@@ -564,6 +603,8 @@ async def asyncio(
|
|
|
564
603
|
customer (Union[Unset, str]):
|
|
565
604
|
customer_uuid (Union[Unset, UUID]):
|
|
566
605
|
description (Union[Unset, str]):
|
|
606
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
607
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
567
608
|
keyword (Union[Unset, str]):
|
|
568
609
|
modified (Union[Unset, datetime.datetime]):
|
|
569
610
|
name (Union[Unset, str]):
|
|
@@ -581,6 +622,7 @@ async def asyncio(
|
|
|
581
622
|
shared (Union[Unset, bool]):
|
|
582
623
|
state (Union[Unset, list[MarketplaceProviderOfferingsGroupsCountStateItem]]):
|
|
583
624
|
type_ (Union[Unset, list[str]]):
|
|
625
|
+
user_has_consent (Union[Unset, bool]):
|
|
584
626
|
uuid_list (Union[Unset, str]):
|
|
585
627
|
|
|
586
628
|
Raises:
|
|
@@ -604,6 +646,8 @@ async def asyncio(
|
|
|
604
646
|
customer=customer,
|
|
605
647
|
customer_uuid=customer_uuid,
|
|
606
648
|
description=description,
|
|
649
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
650
|
+
has_terms_of_service=has_terms_of_service,
|
|
607
651
|
keyword=keyword,
|
|
608
652
|
modified=modified,
|
|
609
653
|
name=name,
|
|
@@ -621,6 +665,7 @@ async def asyncio(
|
|
|
621
665
|
shared=shared,
|
|
622
666
|
state=state,
|
|
623
667
|
type_=type_,
|
|
668
|
+
user_has_consent=user_has_consent,
|
|
624
669
|
uuid_list=uuid_list,
|
|
625
670
|
)
|
|
626
671
|
).parsed
|
waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py
CHANGED
|
@@ -27,6 +27,8 @@ def _get_kwargs(
|
|
|
27
27
|
customer: Union[Unset, str] = UNSET,
|
|
28
28
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
29
29
|
description: Union[Unset, str] = 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[MarketplaceProviderOfferingsGroupsListStateItem]] = 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] = {}
|
|
@@ -83,6 +86,10 @@ def _get_kwargs(
|
|
|
83
86
|
|
|
84
87
|
params["description"] = description
|
|
85
88
|
|
|
89
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
90
|
+
|
|
91
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
92
|
+
|
|
86
93
|
params["keyword"] = keyword
|
|
87
94
|
|
|
88
95
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -160,6 +167,8 @@ def _get_kwargs(
|
|
|
160
167
|
|
|
161
168
|
params["type"] = json_type_
|
|
162
169
|
|
|
170
|
+
params["user_has_consent"] = user_has_consent
|
|
171
|
+
|
|
163
172
|
params["uuid_list"] = uuid_list
|
|
164
173
|
|
|
165
174
|
params = {k: v for k, v in params.items() if v is not UNSET and v is not None}
|
|
@@ -210,6 +219,8 @@ def sync_detailed(
|
|
|
210
219
|
customer: Union[Unset, str] = UNSET,
|
|
211
220
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
212
221
|
description: Union[Unset, str] = UNSET,
|
|
222
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
223
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
213
224
|
keyword: Union[Unset, str] = UNSET,
|
|
214
225
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
215
226
|
name: Union[Unset, str] = UNSET,
|
|
@@ -227,6 +238,7 @@ def sync_detailed(
|
|
|
227
238
|
shared: Union[Unset, bool] = UNSET,
|
|
228
239
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]] = UNSET,
|
|
229
240
|
type_: Union[Unset, list[str]] = UNSET,
|
|
241
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
230
242
|
uuid_list: Union[Unset, str] = UNSET,
|
|
231
243
|
) -> Response[list["OfferingGroups"]]:
|
|
232
244
|
"""
|
|
@@ -241,6 +253,8 @@ def sync_detailed(
|
|
|
241
253
|
customer (Union[Unset, str]):
|
|
242
254
|
customer_uuid (Union[Unset, UUID]):
|
|
243
255
|
description (Union[Unset, str]):
|
|
256
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
257
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
244
258
|
keyword (Union[Unset, str]):
|
|
245
259
|
modified (Union[Unset, datetime.datetime]):
|
|
246
260
|
name (Union[Unset, str]):
|
|
@@ -258,6 +272,7 @@ def sync_detailed(
|
|
|
258
272
|
shared (Union[Unset, bool]):
|
|
259
273
|
state (Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]]):
|
|
260
274
|
type_ (Union[Unset, list[str]]):
|
|
275
|
+
user_has_consent (Union[Unset, bool]):
|
|
261
276
|
uuid_list (Union[Unset, str]):
|
|
262
277
|
|
|
263
278
|
Raises:
|
|
@@ -279,6 +294,8 @@ def sync_detailed(
|
|
|
279
294
|
customer=customer,
|
|
280
295
|
customer_uuid=customer_uuid,
|
|
281
296
|
description=description,
|
|
297
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
298
|
+
has_terms_of_service=has_terms_of_service,
|
|
282
299
|
keyword=keyword,
|
|
283
300
|
modified=modified,
|
|
284
301
|
name=name,
|
|
@@ -296,6 +313,7 @@ def sync_detailed(
|
|
|
296
313
|
shared=shared,
|
|
297
314
|
state=state,
|
|
298
315
|
type_=type_,
|
|
316
|
+
user_has_consent=user_has_consent,
|
|
299
317
|
uuid_list=uuid_list,
|
|
300
318
|
)
|
|
301
319
|
|
|
@@ -319,6 +337,8 @@ def sync(
|
|
|
319
337
|
customer: Union[Unset, str] = UNSET,
|
|
320
338
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
321
339
|
description: Union[Unset, str] = UNSET,
|
|
340
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
341
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
322
342
|
keyword: Union[Unset, str] = UNSET,
|
|
323
343
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
324
344
|
name: Union[Unset, str] = UNSET,
|
|
@@ -336,6 +356,7 @@ def sync(
|
|
|
336
356
|
shared: Union[Unset, bool] = UNSET,
|
|
337
357
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]] = UNSET,
|
|
338
358
|
type_: Union[Unset, list[str]] = UNSET,
|
|
359
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
339
360
|
uuid_list: Union[Unset, str] = UNSET,
|
|
340
361
|
) -> list["OfferingGroups"]:
|
|
341
362
|
"""
|
|
@@ -350,6 +371,8 @@ def sync(
|
|
|
350
371
|
customer (Union[Unset, str]):
|
|
351
372
|
customer_uuid (Union[Unset, UUID]):
|
|
352
373
|
description (Union[Unset, str]):
|
|
374
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
375
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
353
376
|
keyword (Union[Unset, str]):
|
|
354
377
|
modified (Union[Unset, datetime.datetime]):
|
|
355
378
|
name (Union[Unset, str]):
|
|
@@ -367,6 +390,7 @@ def sync(
|
|
|
367
390
|
shared (Union[Unset, bool]):
|
|
368
391
|
state (Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]]):
|
|
369
392
|
type_ (Union[Unset, list[str]]):
|
|
393
|
+
user_has_consent (Union[Unset, bool]):
|
|
370
394
|
uuid_list (Union[Unset, str]):
|
|
371
395
|
|
|
372
396
|
Raises:
|
|
@@ -389,6 +413,8 @@ def sync(
|
|
|
389
413
|
customer=customer,
|
|
390
414
|
customer_uuid=customer_uuid,
|
|
391
415
|
description=description,
|
|
416
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
417
|
+
has_terms_of_service=has_terms_of_service,
|
|
392
418
|
keyword=keyword,
|
|
393
419
|
modified=modified,
|
|
394
420
|
name=name,
|
|
@@ -406,6 +432,7 @@ def sync(
|
|
|
406
432
|
shared=shared,
|
|
407
433
|
state=state,
|
|
408
434
|
type_=type_,
|
|
435
|
+
user_has_consent=user_has_consent,
|
|
409
436
|
uuid_list=uuid_list,
|
|
410
437
|
).parsed
|
|
411
438
|
|
|
@@ -423,6 +450,8 @@ async def asyncio_detailed(
|
|
|
423
450
|
customer: Union[Unset, str] = UNSET,
|
|
424
451
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
425
452
|
description: Union[Unset, str] = UNSET,
|
|
453
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
454
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
426
455
|
keyword: Union[Unset, str] = UNSET,
|
|
427
456
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
428
457
|
name: Union[Unset, str] = UNSET,
|
|
@@ -440,6 +469,7 @@ async def asyncio_detailed(
|
|
|
440
469
|
shared: Union[Unset, bool] = UNSET,
|
|
441
470
|
state: Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]] = UNSET,
|
|
442
471
|
type_: Union[Unset, list[str]] = UNSET,
|
|
472
|
+
user_has_consent: Union[Unset, bool] = UNSET,
|
|
443
473
|
uuid_list: Union[Unset, str] = UNSET,
|
|
444
474
|
) -> Response[list["OfferingGroups"]]:
|
|
445
475
|
"""
|
|
@@ -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[MarketplaceProviderOfferingsGroupsListStateItem]]):
|
|
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[MarketplaceProviderOfferingsGroupsListStateItem]] = 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
|
) -> list["OfferingGroups"]:
|
|
552
591
|
"""
|
|
@@ -561,6 +600,8 @@ async def asyncio(
|
|
|
561
600
|
customer (Union[Unset, str]):
|
|
562
601
|
customer_uuid (Union[Unset, UUID]):
|
|
563
602
|
description (Union[Unset, str]):
|
|
603
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
604
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
564
605
|
keyword (Union[Unset, str]):
|
|
565
606
|
modified (Union[Unset, datetime.datetime]):
|
|
566
607
|
name (Union[Unset, str]):
|
|
@@ -578,6 +619,7 @@ async def asyncio(
|
|
|
578
619
|
shared (Union[Unset, bool]):
|
|
579
620
|
state (Union[Unset, list[MarketplaceProviderOfferingsGroupsListStateItem]]):
|
|
580
621
|
type_ (Union[Unset, list[str]]):
|
|
622
|
+
user_has_consent (Union[Unset, bool]):
|
|
581
623
|
uuid_list (Union[Unset, str]):
|
|
582
624
|
|
|
583
625
|
Raises:
|
|
@@ -601,6 +643,8 @@ async def asyncio(
|
|
|
601
643
|
customer=customer,
|
|
602
644
|
customer_uuid=customer_uuid,
|
|
603
645
|
description=description,
|
|
646
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
647
|
+
has_terms_of_service=has_terms_of_service,
|
|
604
648
|
keyword=keyword,
|
|
605
649
|
modified=modified,
|
|
606
650
|
name=name,
|
|
@@ -618,6 +662,7 @@ async def asyncio(
|
|
|
618
662
|
shared=shared,
|
|
619
663
|
state=state,
|
|
620
664
|
type_=type_,
|
|
665
|
+
user_has_consent=user_has_consent,
|
|
621
666
|
uuid_list=uuid_list,
|
|
622
667
|
)
|
|
623
668
|
).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[MarketplaceProviderOfferingsListFieldItem]] = 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[MarketplaceProviderOfferingsListStateItem]] = 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[MarketplaceProviderOfferingsListFieldItem]] = 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[MarketplaceProviderOfferingsListStateItem]] = 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["ProviderOfferingDetails"]]:
|
|
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[MarketplaceProviderOfferingsListFieldItem]]):
|
|
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[MarketplaceProviderOfferingsListStateItem]]):
|
|
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[MarketplaceProviderOfferingsListFieldItem]] = 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[MarketplaceProviderOfferingsListStateItem]] = 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["ProviderOfferingDetails"]:
|
|
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[MarketplaceProviderOfferingsListFieldItem]]):
|
|
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[MarketplaceProviderOfferingsListStateItem]]):
|
|
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[MarketplaceProviderOfferingsListFieldItem]] = 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[MarketplaceProviderOfferingsListStateItem]] = 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["ProviderOfferingDetails"]]:
|
|
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[MarketplaceProviderOfferingsListFieldItem]]):
|
|
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[MarketplaceProviderOfferingsListStateItem]]):
|
|
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[MarketplaceProviderOfferingsListFieldItem]] = 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[MarketplaceProviderOfferingsListStateItem]] = 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["ProviderOfferingDetails"]:
|
|
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[MarketplaceProviderOfferingsListFieldItem]]):
|
|
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[MarketplaceProviderOfferingsListStateItem]]):
|
|
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
|