waldur-api-client 7.7.8__py3-none-any.whl → 7.7.9__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_provider_offerings/marketplace_provider_offerings_component_stats_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_costs_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_count.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_customers_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_count.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_groups_list.py +30 -0
- waldur_api_client/api/marketplace_provider_offerings/marketplace_provider_offerings_list.py +30 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_count.py +30 -0
- waldur_api_client/api/marketplace_public_offerings/marketplace_public_offerings_list.py +30 -0
- waldur_api_client/api/marketplace_service_providers/marketplace_service_providers_offerings_list.py +30 -0
- waldur_api_client/models/__init__.py +2 -0
- waldur_api_client/models/constance_settings.py +9 -0
- waldur_api_client/models/constance_settings_request.py +9 -0
- waldur_api_client/models/course_account.py +14 -15
- waldur_api_client/models/course_account_request.py +0 -9
- 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-7.7.8.dist-info → waldur_api_client-7.7.9.dist-info}/METADATA +1 -1
- {waldur_api_client-7.7.8.dist-info → waldur_api_client-7.7.9.dist-info}/RECORD +22 -21
- {waldur_api_client-7.7.8.dist-info → waldur_api_client-7.7.9.dist-info}/LICENSE +0 -0
- {waldur_api_client-7.7.8.dist-info → waldur_api_client-7.7.9.dist-info}/WHEEL +0 -0
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,
|
|
@@ -83,6 +85,10 @@ def _get_kwargs(
|
|
|
83
85
|
|
|
84
86
|
params["description"] = description
|
|
85
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
|
+
|
|
86
92
|
params["keyword"] = keyword
|
|
87
93
|
|
|
88
94
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -210,6 +216,8 @@ def sync_detailed(
|
|
|
210
216
|
customer: Union[Unset, str] = UNSET,
|
|
211
217
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
212
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,
|
|
213
221
|
keyword: Union[Unset, str] = UNSET,
|
|
214
222
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
215
223
|
name: Union[Unset, str] = UNSET,
|
|
@@ -241,6 +249,8 @@ def sync_detailed(
|
|
|
241
249
|
customer (Union[Unset, str]):
|
|
242
250
|
customer_uuid (Union[Unset, UUID]):
|
|
243
251
|
description (Union[Unset, str]):
|
|
252
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
253
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
244
254
|
keyword (Union[Unset, str]):
|
|
245
255
|
modified (Union[Unset, datetime.datetime]):
|
|
246
256
|
name (Union[Unset, str]):
|
|
@@ -279,6 +289,8 @@ def sync_detailed(
|
|
|
279
289
|
customer=customer,
|
|
280
290
|
customer_uuid=customer_uuid,
|
|
281
291
|
description=description,
|
|
292
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
293
|
+
has_terms_of_service=has_terms_of_service,
|
|
282
294
|
keyword=keyword,
|
|
283
295
|
modified=modified,
|
|
284
296
|
name=name,
|
|
@@ -319,6 +331,8 @@ def sync(
|
|
|
319
331
|
customer: Union[Unset, str] = UNSET,
|
|
320
332
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
321
333
|
description: Union[Unset, str] = UNSET,
|
|
334
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
335
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
322
336
|
keyword: Union[Unset, str] = UNSET,
|
|
323
337
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
324
338
|
name: Union[Unset, str] = UNSET,
|
|
@@ -350,6 +364,8 @@ def sync(
|
|
|
350
364
|
customer (Union[Unset, str]):
|
|
351
365
|
customer_uuid (Union[Unset, UUID]):
|
|
352
366
|
description (Union[Unset, str]):
|
|
367
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
368
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
353
369
|
keyword (Union[Unset, str]):
|
|
354
370
|
modified (Union[Unset, datetime.datetime]):
|
|
355
371
|
name (Union[Unset, str]):
|
|
@@ -389,6 +405,8 @@ def sync(
|
|
|
389
405
|
customer=customer,
|
|
390
406
|
customer_uuid=customer_uuid,
|
|
391
407
|
description=description,
|
|
408
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
409
|
+
has_terms_of_service=has_terms_of_service,
|
|
392
410
|
keyword=keyword,
|
|
393
411
|
modified=modified,
|
|
394
412
|
name=name,
|
|
@@ -423,6 +441,8 @@ async def asyncio_detailed(
|
|
|
423
441
|
customer: Union[Unset, str] = UNSET,
|
|
424
442
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
425
443
|
description: Union[Unset, str] = UNSET,
|
|
444
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
445
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
426
446
|
keyword: Union[Unset, str] = UNSET,
|
|
427
447
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
428
448
|
name: Union[Unset, str] = UNSET,
|
|
@@ -454,6 +474,8 @@ async def asyncio_detailed(
|
|
|
454
474
|
customer (Union[Unset, str]):
|
|
455
475
|
customer_uuid (Union[Unset, UUID]):
|
|
456
476
|
description (Union[Unset, str]):
|
|
477
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
478
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
457
479
|
keyword (Union[Unset, str]):
|
|
458
480
|
modified (Union[Unset, datetime.datetime]):
|
|
459
481
|
name (Union[Unset, str]):
|
|
@@ -492,6 +514,8 @@ async def asyncio_detailed(
|
|
|
492
514
|
customer=customer,
|
|
493
515
|
customer_uuid=customer_uuid,
|
|
494
516
|
description=description,
|
|
517
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
518
|
+
has_terms_of_service=has_terms_of_service,
|
|
495
519
|
keyword=keyword,
|
|
496
520
|
modified=modified,
|
|
497
521
|
name=name,
|
|
@@ -530,6 +554,8 @@ async def asyncio(
|
|
|
530
554
|
customer: Union[Unset, str] = UNSET,
|
|
531
555
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
532
556
|
description: Union[Unset, str] = UNSET,
|
|
557
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
558
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
533
559
|
keyword: Union[Unset, str] = UNSET,
|
|
534
560
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
535
561
|
name: Union[Unset, str] = UNSET,
|
|
@@ -561,6 +587,8 @@ async def asyncio(
|
|
|
561
587
|
customer (Union[Unset, str]):
|
|
562
588
|
customer_uuid (Union[Unset, UUID]):
|
|
563
589
|
description (Union[Unset, str]):
|
|
590
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
591
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
564
592
|
keyword (Union[Unset, str]):
|
|
565
593
|
modified (Union[Unset, datetime.datetime]):
|
|
566
594
|
name (Union[Unset, str]):
|
|
@@ -601,6 +629,8 @@ async def asyncio(
|
|
|
601
629
|
customer=customer,
|
|
602
630
|
customer_uuid=customer_uuid,
|
|
603
631
|
description=description,
|
|
632
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
633
|
+
has_terms_of_service=has_terms_of_service,
|
|
604
634
|
keyword=keyword,
|
|
605
635
|
modified=modified,
|
|
606
636
|
name=name,
|
|
@@ -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,
|
|
@@ -92,6 +94,10 @@ def _get_kwargs(
|
|
|
92
94
|
|
|
93
95
|
params["field"] = json_field
|
|
94
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
|
+
|
|
95
101
|
params["keyword"] = keyword
|
|
96
102
|
|
|
97
103
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -222,6 +228,8 @@ def sync_detailed(
|
|
|
222
228
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
223
229
|
description: Union[Unset, str] = UNSET,
|
|
224
230
|
field: Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]] = UNSET,
|
|
231
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
232
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
225
233
|
keyword: Union[Unset, str] = UNSET,
|
|
226
234
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
227
235
|
name: Union[Unset, str] = UNSET,
|
|
@@ -255,6 +263,8 @@ def sync_detailed(
|
|
|
255
263
|
customer_uuid (Union[Unset, UUID]):
|
|
256
264
|
description (Union[Unset, str]):
|
|
257
265
|
field (Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]]):
|
|
266
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
267
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
258
268
|
keyword (Union[Unset, str]):
|
|
259
269
|
modified (Union[Unset, datetime.datetime]):
|
|
260
270
|
name (Union[Unset, str]):
|
|
@@ -294,6 +304,8 @@ def sync_detailed(
|
|
|
294
304
|
customer_uuid=customer_uuid,
|
|
295
305
|
description=description,
|
|
296
306
|
field=field,
|
|
307
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
308
|
+
has_terms_of_service=has_terms_of_service,
|
|
297
309
|
keyword=keyword,
|
|
298
310
|
modified=modified,
|
|
299
311
|
name=name,
|
|
@@ -335,6 +347,8 @@ def sync(
|
|
|
335
347
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
336
348
|
description: Union[Unset, str] = UNSET,
|
|
337
349
|
field: Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]] = UNSET,
|
|
350
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
351
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
338
352
|
keyword: Union[Unset, str] = UNSET,
|
|
339
353
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
340
354
|
name: Union[Unset, str] = UNSET,
|
|
@@ -368,6 +382,8 @@ def sync(
|
|
|
368
382
|
customer_uuid (Union[Unset, UUID]):
|
|
369
383
|
description (Union[Unset, str]):
|
|
370
384
|
field (Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]]):
|
|
385
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
386
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
371
387
|
keyword (Union[Unset, str]):
|
|
372
388
|
modified (Union[Unset, datetime.datetime]):
|
|
373
389
|
name (Union[Unset, str]):
|
|
@@ -408,6 +424,8 @@ def sync(
|
|
|
408
424
|
customer_uuid=customer_uuid,
|
|
409
425
|
description=description,
|
|
410
426
|
field=field,
|
|
427
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
428
|
+
has_terms_of_service=has_terms_of_service,
|
|
411
429
|
keyword=keyword,
|
|
412
430
|
modified=modified,
|
|
413
431
|
name=name,
|
|
@@ -443,6 +461,8 @@ async def asyncio_detailed(
|
|
|
443
461
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
444
462
|
description: Union[Unset, str] = UNSET,
|
|
445
463
|
field: Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]] = UNSET,
|
|
464
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
465
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
446
466
|
keyword: Union[Unset, str] = UNSET,
|
|
447
467
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
448
468
|
name: Union[Unset, str] = UNSET,
|
|
@@ -476,6 +496,8 @@ async def asyncio_detailed(
|
|
|
476
496
|
customer_uuid (Union[Unset, UUID]):
|
|
477
497
|
description (Union[Unset, str]):
|
|
478
498
|
field (Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]]):
|
|
499
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
500
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
479
501
|
keyword (Union[Unset, str]):
|
|
480
502
|
modified (Union[Unset, datetime.datetime]):
|
|
481
503
|
name (Union[Unset, str]):
|
|
@@ -515,6 +537,8 @@ async def asyncio_detailed(
|
|
|
515
537
|
customer_uuid=customer_uuid,
|
|
516
538
|
description=description,
|
|
517
539
|
field=field,
|
|
540
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
541
|
+
has_terms_of_service=has_terms_of_service,
|
|
518
542
|
keyword=keyword,
|
|
519
543
|
modified=modified,
|
|
520
544
|
name=name,
|
|
@@ -554,6 +578,8 @@ async def asyncio(
|
|
|
554
578
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
555
579
|
description: Union[Unset, str] = UNSET,
|
|
556
580
|
field: Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]] = UNSET,
|
|
581
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
582
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
557
583
|
keyword: Union[Unset, str] = UNSET,
|
|
558
584
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
559
585
|
name: Union[Unset, str] = UNSET,
|
|
@@ -587,6 +613,8 @@ async def asyncio(
|
|
|
587
613
|
customer_uuid (Union[Unset, UUID]):
|
|
588
614
|
description (Union[Unset, str]):
|
|
589
615
|
field (Union[Unset, list[MarketplaceProviderOfferingsListFieldItem]]):
|
|
616
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
617
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
590
618
|
keyword (Union[Unset, str]):
|
|
591
619
|
modified (Union[Unset, datetime.datetime]):
|
|
592
620
|
name (Union[Unset, str]):
|
|
@@ -628,6 +656,8 @@ async def asyncio(
|
|
|
628
656
|
customer_uuid=customer_uuid,
|
|
629
657
|
description=description,
|
|
630
658
|
field=field,
|
|
659
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
660
|
+
has_terms_of_service=has_terms_of_service,
|
|
631
661
|
keyword=keyword,
|
|
632
662
|
modified=modified,
|
|
633
663
|
name=name,
|
|
@@ -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,
|
|
@@ -80,6 +82,10 @@ def _get_kwargs(
|
|
|
80
82
|
|
|
81
83
|
params["description"] = description
|
|
82
84
|
|
|
85
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
86
|
+
|
|
87
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
88
|
+
|
|
83
89
|
params["keyword"] = keyword
|
|
84
90
|
|
|
85
91
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -207,6 +213,8 @@ def sync_detailed(
|
|
|
207
213
|
customer: Union[Unset, str] = UNSET,
|
|
208
214
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
209
215
|
description: Union[Unset, str] = UNSET,
|
|
216
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
217
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
210
218
|
keyword: Union[Unset, str] = UNSET,
|
|
211
219
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
212
220
|
name: Union[Unset, str] = UNSET,
|
|
@@ -239,6 +247,8 @@ def sync_detailed(
|
|
|
239
247
|
customer (Union[Unset, str]):
|
|
240
248
|
customer_uuid (Union[Unset, UUID]):
|
|
241
249
|
description (Union[Unset, str]):
|
|
250
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
251
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
242
252
|
keyword (Union[Unset, str]):
|
|
243
253
|
modified (Union[Unset, datetime.datetime]):
|
|
244
254
|
name (Union[Unset, str]):
|
|
@@ -277,6 +287,8 @@ def sync_detailed(
|
|
|
277
287
|
customer=customer,
|
|
278
288
|
customer_uuid=customer_uuid,
|
|
279
289
|
description=description,
|
|
290
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
291
|
+
has_terms_of_service=has_terms_of_service,
|
|
280
292
|
keyword=keyword,
|
|
281
293
|
modified=modified,
|
|
282
294
|
name=name,
|
|
@@ -317,6 +329,8 @@ def sync(
|
|
|
317
329
|
customer: Union[Unset, str] = UNSET,
|
|
318
330
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
319
331
|
description: Union[Unset, str] = UNSET,
|
|
332
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
333
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
320
334
|
keyword: Union[Unset, str] = UNSET,
|
|
321
335
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
322
336
|
name: Union[Unset, str] = UNSET,
|
|
@@ -349,6 +363,8 @@ def sync(
|
|
|
349
363
|
customer (Union[Unset, str]):
|
|
350
364
|
customer_uuid (Union[Unset, UUID]):
|
|
351
365
|
description (Union[Unset, str]):
|
|
366
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
367
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
352
368
|
keyword (Union[Unset, str]):
|
|
353
369
|
modified (Union[Unset, datetime.datetime]):
|
|
354
370
|
name (Union[Unset, str]):
|
|
@@ -388,6 +404,8 @@ def sync(
|
|
|
388
404
|
customer=customer,
|
|
389
405
|
customer_uuid=customer_uuid,
|
|
390
406
|
description=description,
|
|
407
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
408
|
+
has_terms_of_service=has_terms_of_service,
|
|
391
409
|
keyword=keyword,
|
|
392
410
|
modified=modified,
|
|
393
411
|
name=name,
|
|
@@ -422,6 +440,8 @@ async def asyncio_detailed(
|
|
|
422
440
|
customer: Union[Unset, str] = UNSET,
|
|
423
441
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
424
442
|
description: Union[Unset, str] = UNSET,
|
|
443
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
444
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
425
445
|
keyword: Union[Unset, str] = UNSET,
|
|
426
446
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
427
447
|
name: Union[Unset, str] = UNSET,
|
|
@@ -454,6 +474,8 @@ async def asyncio_detailed(
|
|
|
454
474
|
customer (Union[Unset, str]):
|
|
455
475
|
customer_uuid (Union[Unset, UUID]):
|
|
456
476
|
description (Union[Unset, str]):
|
|
477
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
478
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
457
479
|
keyword (Union[Unset, str]):
|
|
458
480
|
modified (Union[Unset, datetime.datetime]):
|
|
459
481
|
name (Union[Unset, str]):
|
|
@@ -492,6 +514,8 @@ async def asyncio_detailed(
|
|
|
492
514
|
customer=customer,
|
|
493
515
|
customer_uuid=customer_uuid,
|
|
494
516
|
description=description,
|
|
517
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
518
|
+
has_terms_of_service=has_terms_of_service,
|
|
495
519
|
keyword=keyword,
|
|
496
520
|
modified=modified,
|
|
497
521
|
name=name,
|
|
@@ -530,6 +554,8 @@ async def asyncio(
|
|
|
530
554
|
customer: Union[Unset, str] = UNSET,
|
|
531
555
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
532
556
|
description: Union[Unset, str] = UNSET,
|
|
557
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
558
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
533
559
|
keyword: Union[Unset, str] = UNSET,
|
|
534
560
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
535
561
|
name: Union[Unset, str] = UNSET,
|
|
@@ -562,6 +588,8 @@ async def asyncio(
|
|
|
562
588
|
customer (Union[Unset, str]):
|
|
563
589
|
customer_uuid (Union[Unset, UUID]):
|
|
564
590
|
description (Union[Unset, str]):
|
|
591
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
592
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
565
593
|
keyword (Union[Unset, str]):
|
|
566
594
|
modified (Union[Unset, datetime.datetime]):
|
|
567
595
|
name (Union[Unset, str]):
|
|
@@ -602,6 +630,8 @@ async def asyncio(
|
|
|
602
630
|
customer=customer,
|
|
603
631
|
customer_uuid=customer_uuid,
|
|
604
632
|
description=description,
|
|
633
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
634
|
+
has_terms_of_service=has_terms_of_service,
|
|
605
635
|
keyword=keyword,
|
|
606
636
|
modified=modified,
|
|
607
637
|
name=name,
|
|
@@ -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,
|
|
@@ -92,6 +94,10 @@ def _get_kwargs(
|
|
|
92
94
|
|
|
93
95
|
params["field"] = json_field
|
|
94
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
|
+
|
|
95
101
|
params["keyword"] = keyword
|
|
96
102
|
|
|
97
103
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -222,6 +228,8 @@ def sync_detailed(
|
|
|
222
228
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
223
229
|
description: Union[Unset, str] = UNSET,
|
|
224
230
|
field: Union[Unset, list[MarketplacePublicOfferingsListFieldItem]] = UNSET,
|
|
231
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
232
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
225
233
|
keyword: Union[Unset, str] = UNSET,
|
|
226
234
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
227
235
|
name: Union[Unset, str] = UNSET,
|
|
@@ -255,6 +263,8 @@ def sync_detailed(
|
|
|
255
263
|
customer_uuid (Union[Unset, UUID]):
|
|
256
264
|
description (Union[Unset, str]):
|
|
257
265
|
field (Union[Unset, list[MarketplacePublicOfferingsListFieldItem]]):
|
|
266
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
267
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
258
268
|
keyword (Union[Unset, str]):
|
|
259
269
|
modified (Union[Unset, datetime.datetime]):
|
|
260
270
|
name (Union[Unset, str]):
|
|
@@ -294,6 +304,8 @@ def sync_detailed(
|
|
|
294
304
|
customer_uuid=customer_uuid,
|
|
295
305
|
description=description,
|
|
296
306
|
field=field,
|
|
307
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
308
|
+
has_terms_of_service=has_terms_of_service,
|
|
297
309
|
keyword=keyword,
|
|
298
310
|
modified=modified,
|
|
299
311
|
name=name,
|
|
@@ -335,6 +347,8 @@ def sync(
|
|
|
335
347
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
336
348
|
description: Union[Unset, str] = UNSET,
|
|
337
349
|
field: Union[Unset, list[MarketplacePublicOfferingsListFieldItem]] = UNSET,
|
|
350
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
351
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
338
352
|
keyword: Union[Unset, str] = UNSET,
|
|
339
353
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
340
354
|
name: Union[Unset, str] = UNSET,
|
|
@@ -368,6 +382,8 @@ def sync(
|
|
|
368
382
|
customer_uuid (Union[Unset, UUID]):
|
|
369
383
|
description (Union[Unset, str]):
|
|
370
384
|
field (Union[Unset, list[MarketplacePublicOfferingsListFieldItem]]):
|
|
385
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
386
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
371
387
|
keyword (Union[Unset, str]):
|
|
372
388
|
modified (Union[Unset, datetime.datetime]):
|
|
373
389
|
name (Union[Unset, str]):
|
|
@@ -408,6 +424,8 @@ def sync(
|
|
|
408
424
|
customer_uuid=customer_uuid,
|
|
409
425
|
description=description,
|
|
410
426
|
field=field,
|
|
427
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
428
|
+
has_terms_of_service=has_terms_of_service,
|
|
411
429
|
keyword=keyword,
|
|
412
430
|
modified=modified,
|
|
413
431
|
name=name,
|
|
@@ -443,6 +461,8 @@ async def asyncio_detailed(
|
|
|
443
461
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
444
462
|
description: Union[Unset, str] = UNSET,
|
|
445
463
|
field: Union[Unset, list[MarketplacePublicOfferingsListFieldItem]] = UNSET,
|
|
464
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
465
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
446
466
|
keyword: Union[Unset, str] = UNSET,
|
|
447
467
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
448
468
|
name: Union[Unset, str] = UNSET,
|
|
@@ -476,6 +496,8 @@ async def asyncio_detailed(
|
|
|
476
496
|
customer_uuid (Union[Unset, UUID]):
|
|
477
497
|
description (Union[Unset, str]):
|
|
478
498
|
field (Union[Unset, list[MarketplacePublicOfferingsListFieldItem]]):
|
|
499
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
500
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
479
501
|
keyword (Union[Unset, str]):
|
|
480
502
|
modified (Union[Unset, datetime.datetime]):
|
|
481
503
|
name (Union[Unset, str]):
|
|
@@ -515,6 +537,8 @@ async def asyncio_detailed(
|
|
|
515
537
|
customer_uuid=customer_uuid,
|
|
516
538
|
description=description,
|
|
517
539
|
field=field,
|
|
540
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
541
|
+
has_terms_of_service=has_terms_of_service,
|
|
518
542
|
keyword=keyword,
|
|
519
543
|
modified=modified,
|
|
520
544
|
name=name,
|
|
@@ -554,6 +578,8 @@ async def asyncio(
|
|
|
554
578
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
555
579
|
description: Union[Unset, str] = UNSET,
|
|
556
580
|
field: Union[Unset, list[MarketplacePublicOfferingsListFieldItem]] = UNSET,
|
|
581
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
582
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
557
583
|
keyword: Union[Unset, str] = UNSET,
|
|
558
584
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
559
585
|
name: Union[Unset, str] = UNSET,
|
|
@@ -587,6 +613,8 @@ async def asyncio(
|
|
|
587
613
|
customer_uuid (Union[Unset, UUID]):
|
|
588
614
|
description (Union[Unset, str]):
|
|
589
615
|
field (Union[Unset, list[MarketplacePublicOfferingsListFieldItem]]):
|
|
616
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
617
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
590
618
|
keyword (Union[Unset, str]):
|
|
591
619
|
modified (Union[Unset, datetime.datetime]):
|
|
592
620
|
name (Union[Unset, str]):
|
|
@@ -628,6 +656,8 @@ async def asyncio(
|
|
|
628
656
|
customer_uuid=customer_uuid,
|
|
629
657
|
description=description,
|
|
630
658
|
field=field,
|
|
659
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
660
|
+
has_terms_of_service=has_terms_of_service,
|
|
631
661
|
keyword=keyword,
|
|
632
662
|
modified=modified,
|
|
633
663
|
name=name,
|
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,
|
|
@@ -97,6 +99,10 @@ def _get_kwargs(
|
|
|
97
99
|
|
|
98
100
|
params["field"] = json_field
|
|
99
101
|
|
|
102
|
+
params["has_active_terms_of_service"] = has_active_terms_of_service
|
|
103
|
+
|
|
104
|
+
params["has_terms_of_service"] = has_terms_of_service
|
|
105
|
+
|
|
100
106
|
params["keyword"] = keyword
|
|
101
107
|
|
|
102
108
|
json_modified: Union[Unset, str] = UNSET
|
|
@@ -228,6 +234,8 @@ def sync_detailed(
|
|
|
228
234
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
229
235
|
description: Union[Unset, str] = UNSET,
|
|
230
236
|
field: Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]] = UNSET,
|
|
237
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
238
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
231
239
|
keyword: Union[Unset, str] = UNSET,
|
|
232
240
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
233
241
|
name: Union[Unset, str] = UNSET,
|
|
@@ -262,6 +270,8 @@ def sync_detailed(
|
|
|
262
270
|
customer_uuid (Union[Unset, UUID]):
|
|
263
271
|
description (Union[Unset, str]):
|
|
264
272
|
field (Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]]):
|
|
273
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
274
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
265
275
|
keyword (Union[Unset, str]):
|
|
266
276
|
modified (Union[Unset, datetime.datetime]):
|
|
267
277
|
name (Union[Unset, str]):
|
|
@@ -302,6 +312,8 @@ def sync_detailed(
|
|
|
302
312
|
customer_uuid=customer_uuid,
|
|
303
313
|
description=description,
|
|
304
314
|
field=field,
|
|
315
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
316
|
+
has_terms_of_service=has_terms_of_service,
|
|
305
317
|
keyword=keyword,
|
|
306
318
|
modified=modified,
|
|
307
319
|
name=name,
|
|
@@ -344,6 +356,8 @@ def sync(
|
|
|
344
356
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
345
357
|
description: Union[Unset, str] = UNSET,
|
|
346
358
|
field: Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]] = UNSET,
|
|
359
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
360
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
347
361
|
keyword: Union[Unset, str] = UNSET,
|
|
348
362
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
349
363
|
name: Union[Unset, str] = UNSET,
|
|
@@ -378,6 +392,8 @@ def sync(
|
|
|
378
392
|
customer_uuid (Union[Unset, UUID]):
|
|
379
393
|
description (Union[Unset, str]):
|
|
380
394
|
field (Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]]):
|
|
395
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
396
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
381
397
|
keyword (Union[Unset, str]):
|
|
382
398
|
modified (Union[Unset, datetime.datetime]):
|
|
383
399
|
name (Union[Unset, str]):
|
|
@@ -419,6 +435,8 @@ def sync(
|
|
|
419
435
|
customer_uuid=customer_uuid,
|
|
420
436
|
description=description,
|
|
421
437
|
field=field,
|
|
438
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
439
|
+
has_terms_of_service=has_terms_of_service,
|
|
422
440
|
keyword=keyword,
|
|
423
441
|
modified=modified,
|
|
424
442
|
name=name,
|
|
@@ -455,6 +473,8 @@ async def asyncio_detailed(
|
|
|
455
473
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
456
474
|
description: Union[Unset, str] = UNSET,
|
|
457
475
|
field: Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]] = UNSET,
|
|
476
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
477
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
458
478
|
keyword: Union[Unset, str] = UNSET,
|
|
459
479
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
460
480
|
name: Union[Unset, str] = UNSET,
|
|
@@ -489,6 +509,8 @@ async def asyncio_detailed(
|
|
|
489
509
|
customer_uuid (Union[Unset, UUID]):
|
|
490
510
|
description (Union[Unset, str]):
|
|
491
511
|
field (Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]]):
|
|
512
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
513
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
492
514
|
keyword (Union[Unset, str]):
|
|
493
515
|
modified (Union[Unset, datetime.datetime]):
|
|
494
516
|
name (Union[Unset, str]):
|
|
@@ -529,6 +551,8 @@ async def asyncio_detailed(
|
|
|
529
551
|
customer_uuid=customer_uuid,
|
|
530
552
|
description=description,
|
|
531
553
|
field=field,
|
|
554
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
555
|
+
has_terms_of_service=has_terms_of_service,
|
|
532
556
|
keyword=keyword,
|
|
533
557
|
modified=modified,
|
|
534
558
|
name=name,
|
|
@@ -569,6 +593,8 @@ async def asyncio(
|
|
|
569
593
|
customer_uuid: Union[Unset, UUID] = UNSET,
|
|
570
594
|
description: Union[Unset, str] = UNSET,
|
|
571
595
|
field: Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]] = UNSET,
|
|
596
|
+
has_active_terms_of_service: Union[Unset, bool] = UNSET,
|
|
597
|
+
has_terms_of_service: Union[Unset, bool] = UNSET,
|
|
572
598
|
keyword: Union[Unset, str] = UNSET,
|
|
573
599
|
modified: Union[Unset, datetime.datetime] = UNSET,
|
|
574
600
|
name: Union[Unset, str] = UNSET,
|
|
@@ -603,6 +629,8 @@ async def asyncio(
|
|
|
603
629
|
customer_uuid (Union[Unset, UUID]):
|
|
604
630
|
description (Union[Unset, str]):
|
|
605
631
|
field (Union[Unset, list[MarketplaceServiceProvidersOfferingsListFieldItem]]):
|
|
632
|
+
has_active_terms_of_service (Union[Unset, bool]):
|
|
633
|
+
has_terms_of_service (Union[Unset, bool]):
|
|
606
634
|
keyword (Union[Unset, str]):
|
|
607
635
|
modified (Union[Unset, datetime.datetime]):
|
|
608
636
|
name (Union[Unset, str]):
|
|
@@ -645,6 +673,8 @@ async def asyncio(
|
|
|
645
673
|
customer_uuid=customer_uuid,
|
|
646
674
|
description=description,
|
|
647
675
|
field=field,
|
|
676
|
+
has_active_terms_of_service=has_active_terms_of_service,
|
|
677
|
+
has_terms_of_service=has_terms_of_service,
|
|
648
678
|
keyword=keyword,
|
|
649
679
|
modified=modified,
|
|
650
680
|
name=name,
|
|
@@ -1379,6 +1379,7 @@ from .robot_account import RobotAccount
|
|
|
1379
1379
|
from .robot_account_details import RobotAccountDetails
|
|
1380
1380
|
from .robot_account_error_request import RobotAccountErrorRequest
|
|
1381
1381
|
from .robot_account_request import RobotAccountRequest
|
|
1382
|
+
from .robot_account_states import RobotAccountStates
|
|
1382
1383
|
from .role_description import RoleDescription
|
|
1383
1384
|
from .role_description_request import RoleDescriptionRequest
|
|
1384
1385
|
from .role_details import RoleDetails
|
|
@@ -2854,6 +2855,7 @@ __all__ = (
|
|
|
2854
2855
|
"RobotAccountDetails",
|
|
2855
2856
|
"RobotAccountErrorRequest",
|
|
2856
2857
|
"RobotAccountRequest",
|
|
2858
|
+
"RobotAccountStates",
|
|
2857
2859
|
"RoleDescription",
|
|
2858
2860
|
"RoleDescriptionRequest",
|
|
2859
2861
|
"RoleDetails",
|
|
@@ -122,6 +122,7 @@ class ConstanceSettings:
|
|
|
122
122
|
smax_requests_offering (Union[Unset, str]):
|
|
123
123
|
smax_verify_ssl (Union[Unset, bool]):
|
|
124
124
|
enable_mock_service_account_backend (Union[Unset, bool]):
|
|
125
|
+
enable_mock_course_account_backend (Union[Unset, bool]):
|
|
125
126
|
proposal_review_duration (Union[Unset, int]):
|
|
126
127
|
user_table_columns (Union[Unset, str]):
|
|
127
128
|
auto_approve_user_tos (Union[Unset, bool]):
|
|
@@ -257,6 +258,7 @@ class ConstanceSettings:
|
|
|
257
258
|
smax_requests_offering: Union[Unset, str] = UNSET
|
|
258
259
|
smax_verify_ssl: Union[Unset, bool] = UNSET
|
|
259
260
|
enable_mock_service_account_backend: Union[Unset, bool] = UNSET
|
|
261
|
+
enable_mock_course_account_backend: Union[Unset, bool] = UNSET
|
|
260
262
|
proposal_review_duration: Union[Unset, int] = UNSET
|
|
261
263
|
user_table_columns: Union[Unset, str] = UNSET
|
|
262
264
|
auto_approve_user_tos: Union[Unset, bool] = UNSET
|
|
@@ -546,6 +548,8 @@ class ConstanceSettings:
|
|
|
546
548
|
|
|
547
549
|
enable_mock_service_account_backend = self.enable_mock_service_account_backend
|
|
548
550
|
|
|
551
|
+
enable_mock_course_account_backend = self.enable_mock_course_account_backend
|
|
552
|
+
|
|
549
553
|
proposal_review_duration = self.proposal_review_duration
|
|
550
554
|
|
|
551
555
|
user_table_columns = self.user_table_columns
|
|
@@ -829,6 +833,8 @@ class ConstanceSettings:
|
|
|
829
833
|
field_dict["SMAX_VERIFY_SSL"] = smax_verify_ssl
|
|
830
834
|
if enable_mock_service_account_backend is not UNSET:
|
|
831
835
|
field_dict["ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND"] = enable_mock_service_account_backend
|
|
836
|
+
if enable_mock_course_account_backend is not UNSET:
|
|
837
|
+
field_dict["ENABLE_MOCK_COURSE_ACCOUNT_BACKEND"] = enable_mock_course_account_backend
|
|
832
838
|
if proposal_review_duration is not UNSET:
|
|
833
839
|
field_dict["PROPOSAL_REVIEW_DURATION"] = proposal_review_duration
|
|
834
840
|
if user_table_columns is not UNSET:
|
|
@@ -1184,6 +1190,8 @@ class ConstanceSettings:
|
|
|
1184
1190
|
|
|
1185
1191
|
enable_mock_service_account_backend = d.pop("ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND", UNSET)
|
|
1186
1192
|
|
|
1193
|
+
enable_mock_course_account_backend = d.pop("ENABLE_MOCK_COURSE_ACCOUNT_BACKEND", UNSET)
|
|
1194
|
+
|
|
1187
1195
|
proposal_review_duration = d.pop("PROPOSAL_REVIEW_DURATION", UNSET)
|
|
1188
1196
|
|
|
1189
1197
|
user_table_columns = d.pop("USER_TABLE_COLUMNS", UNSET)
|
|
@@ -1349,6 +1357,7 @@ class ConstanceSettings:
|
|
|
1349
1357
|
smax_requests_offering=smax_requests_offering,
|
|
1350
1358
|
smax_verify_ssl=smax_verify_ssl,
|
|
1351
1359
|
enable_mock_service_account_backend=enable_mock_service_account_backend,
|
|
1360
|
+
enable_mock_course_account_backend=enable_mock_course_account_backend,
|
|
1352
1361
|
proposal_review_duration=proposal_review_duration,
|
|
1353
1362
|
user_table_columns=user_table_columns,
|
|
1354
1363
|
auto_approve_user_tos=auto_approve_user_tos,
|