ApiRepository

Bases: Protocol[DomainModel]

Repository contract for remote API resources.

Source code in src/alpha/interfaces/api_repository.py
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
@runtime_checkable
class ApiRepository(Protocol[DomainModel]):
    """Repository contract for remote API resources."""

    @overload
    def add(
        self,
        obj: DomainModel,
        return_obj: Literal[True],
        serialize: bool | None,
        use_factory: Literal[True, None],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> DomainModel: ...

    @overload
    def add(
        self,
        obj: DomainModel,
        return_obj: Literal[True],
        serialize: bool | None,
        use_factory: Literal[False],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> dict[str, Any]: ...

    @overload
    def add(
        self,
        obj: DomainModel,
        return_obj: Literal[False],
        serialize: bool | None,
        use_factory: bool | None,
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> None: ...

    def add(
        self,
        obj: DomainModel,
        return_obj: bool = True,
        serialize: bool | None = None,
        use_factory: bool | None = None,
        endpoint: str | None = None,
        parent_endpoint: str | None = None,
        parent_param: str | int | UUID | None = None,
        model: DomainModel | None = None,
        additional_request_params: dict[str, Any] | None = None,
        **params: Any,
    ) -> DomainModel | dict[str, Any] | None:
        """Add a new resource.

        Parameters
        ----------
        obj
            The object to add.
        return_obj
            Whether to return the added object or not.
        serialize
            Whether to serialize the object before sending it in the API
            request.
        use_factory
            Whether to use the model factory method for creating models from
            response data.
        endpoint
            The API endpoint to which the object should be added.
        parent_endpoint
            The parent API endpoint, if the resource is nested under a parent
            resource.
        parent_param
            The parameter to identify the parent resource, if applicable. This
            could be an ID or a unique identifier. The parameter will be
            appended to the parent endpoint to form the full URL for the API
            request.
        model
            The model to use for serialization/deserialization.
        additional_request_params
            Additional parameters to include in the function call which handles
            the API request. This allows for flexibility in specifying
            parameters such as headers, authentication tokens, or other request
            options that may be needed for the API call.
        **params
            Additional query parameters to include in the API request.

        Returns
        -------
        DomainModel | dict[str, Any] | None
            The added object if `return_obj` is `True`, otherwise `None`.
        """
        ...

    @overload
    def add_all(
        self,
        objs: list[DomainModel],
        return_objs: Literal[True],
        serialize: bool | None,
        use_factory: Literal[True, None],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        one_by_one: bool,
        **params: Any,
    ) -> list[DomainModel]: ...

    @overload
    def add_all(
        self,
        objs: list[DomainModel],
        return_objs: Literal[True],
        serialize: bool | None,
        use_factory: Literal[False],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        one_by_one: bool,
        **params: Any,
    ) -> list[dict[str, Any]]: ...

    @overload
    def add_all(
        self,
        objs: list[DomainModel],
        return_objs: Literal[False],
        serialize: bool | None,
        use_factory: bool | None,
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        one_by_one: bool,
        **params: Any,
    ) -> None: ...

    def add_all(
        self,
        objs: list[DomainModel],
        return_objs: bool = True,
        serialize: bool | None = None,
        use_factory: bool | None = None,
        endpoint: str | None = None,
        parent_endpoint: str | None = None,
        parent_param: str | int | UUID | None = None,
        model: DomainModel | None = None,
        additional_request_params: dict[str, Any] | None = None,
        one_by_one: bool = False,
        **params: Any,
    ) -> list[DomainModel] | list[dict[str, Any]] | None:
        """Add multiple new resources.

        Parameters
        ----------
        objs
            The objects to add.
        return_objs
            Whether to return the added objects or not.
        serialize
            Whether to serialize the objects before sending them in the API
            request.
        use_factory
            Whether to use the model factory method for creating models from
            response data.
        endpoint
            The API endpoint to which the objects should be added.
        parent_endpoint
            The parent API endpoint, if the resources are nested under a parent
            resource.
        parent_param
            The parameter to identify the parent resource, if applicable. This
            could be an ID or a unique identifier. The parameter will be
            appended to the parent endpoint to form the full URL for the API
            request.
        model
            The model to use for serialization/deserialization.
        additional_request_params
            Additional parameters to include in the function call which handles
            the API request. This allows for flexibility in specifying
            parameters such as headers, authentication tokens, or other request
            options that may be needed for the API call.
        one_by_one
            Whether to add the objects one by one (i.e. make a separate API
            call for each object).
        **params
            Additional query parameters to include in the API request.

        Returns
        -------
        list[DomainModel] | list[dict[str, Any]] | None
            The added objects if `return_obj` is `True`, otherwise `None`.
        """
        ...

    @overload
    def get(
        self,
        use_factory: Literal[True, None],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> DomainModel: ...

    @overload
    def get(
        self,
        use_factory: Literal[False],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> dict[str, Any]: ...

    def get(
        self,
        use_factory: bool | None = None,
        endpoint: str | None = None,
        parent_endpoint: str | None = None,
        parent_param: str | int | UUID | None = None,
        param: str | int | UUID | None = None,
        model: DomainModel | None = None,
        additional_request_params: dict[str, Any] | None = None,
        **params: Any,
    ) -> DomainModel | dict[str, Any]:
        """Retrieve a single resource.

        Parameters
        ----------
        endpoint
            The API endpoint from which to retrieve the resource.
        use_factory
            Whether to use the model factory method for creating models from
            response data.
        endpoint
            The API endpoint to which the object should be added.
        parent_endpoint
            The parent API endpoint, if the resource is nested under a parent
            resource.
        parent_param
            The parameter to identify the parent resource, if applicable. This
            could be an ID or a unique identifier. The parameter will be
            appended to the parent endpoint to form the full URL for the API
            request.
        param
            The parameter to identify the specific resource. This could be an
            ID or a unique identifier. The parameter will be appended to the
            endpoint to form the full URL for the GET request.
        model
            The model to use for serialization/deserialization.
        additional_request_params
            Additional parameters to include in the function call which handles
            the API request. This allows for flexibility in specifying
            parameters such as headers, authentication tokens, or other request
            options that may be needed for the API call.
        **params
            Additional query parameters to include in the API request.

        Returns
        -------
        DomainModel | dict[str, Any]
            The retrieved object.
        """
        ...

    @overload
    def get_all(
        self,
        use_factory: Literal[True, None],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> list[DomainModel]: ...

    @overload
    def get_all(
        self,
        use_factory: Literal[False],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> list[dict[str, Any]]: ...

    def get_all(
        self,
        use_factory: bool | None = None,
        endpoint: str | None = None,
        parent_endpoint: str | None = None,
        parent_param: str | int | UUID | None = None,
        param: str | int | UUID | None = None,
        model: DomainModel | None = None,
        additional_request_params: dict[str, Any] | None = None,
        **params: Any,
    ) -> list[DomainModel] | list[dict[str, Any]]:
        """Retrieve multiple resources.

        Parameters
        ----------
        endpoint
            The API endpoint from which to retrieve the resource.
        use_factory
            Whether to use the model factory method for creating models from
            response data.
        endpoint
            The API endpoint to which the object should be added.
        parent_endpoint
            The parent API endpoint, if the resource is nested under a parent
            resource.
        parent_param
            The parameter to identify the parent resource, if applicable. This
            could be an ID or a unique identifier. The parameter will be
            appended to the parent endpoint to form the full URL for the API
            request.
        param
            The parameter to identify the specific resource. This could be an
            ID or a unique identifier. The parameter will be appended to the
            endpoint to form the full URL for the GET request.
        model
            The model to use for serialization/deserialization.
        additional_request_params
            Additional parameters to include in the function call which handles
            the API request. This allows for flexibility in specifying
            parameters such as headers, authentication tokens, or other request
            options that may be needed for the API call.
        **params
            Additional query parameters to include in the API request.

        Returns
        -------
        list[DomainModel] | list[dict[str, Any]]
            The retrieved objects.
        """
        ...

    @overload
    def patch(
        self,
        patch: JsonPatch,
        return_obj: Literal[True],
        use_factory: Literal[True, None],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> DomainModel: ...

    @overload
    def patch(
        self,
        patch: JsonPatch,
        return_obj: Literal[True],
        use_factory: Literal[False],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> dict[str, Any]: ...

    @overload
    def patch(
        self,
        patch: JsonPatch,
        return_obj: Literal[False],
        use_factory: bool | None,
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> None: ...

    def patch(
        self,
        patch: JsonPatch,
        return_obj: bool = True,
        use_factory: bool | None = None,
        endpoint: str | None = None,
        parent_endpoint: str | None = None,
        parent_param: str | int | UUID | None = None,
        param: str | int | UUID | None = None,
        model: DomainModel | None = None,
        additional_request_params: dict[str, Any] | None = None,
        **params: Any,
    ) -> DomainModel | dict[str, Any] | None:
        """Update a resource.

        Parameters
        ----------
        patch
            The JSON Patch object containing the changes to be applied to the
            resource.
        return_obj
            Whether to return the updated object or not.
        use_factory
            Whether to use the model factory method for creating models from
            response data.
        endpoint
            The API endpoint to which the object should be added.
        parent_endpoint
            The parent API endpoint, if the resource is nested under a parent
            resource.
        parent_param
            The parameter to identify the parent resource, if applicable. This
            could be an ID or a unique identifier. The parameter will be
            appended to the parent endpoint to form the full URL for the API
            request.
        param
            The parameter to identify the specific resource. This could be an
            ID or a unique identifier. The parameter will be appended to the
            endpoint to form the full URL for the GET request.
        model
            The model to use for serialization/deserialization.
        additional_request_params
            Additional parameters to include in the function call which handles
            the API request. This allows for flexibility in specifying
            parameters such as headers, authentication tokens, or other request
            options that may be needed for the API call.
        **params
            Additional query parameters to include in the API request.

        Returns
        -------
        DomainModel | dict[str, Any] | None
            The updated object if `return_obj` is `True`, otherwise `None`.
        """
        ...

    def remove(
        self,
        endpoint: str | None = None,
        parent_endpoint: str | None = None,
        parent_param: str | int | UUID | None = None,
        param: str | int | UUID | None = None,
        additional_request_params: dict[str, Any] | None = None,
        **params: Any,
    ) -> None:
        """Remove a resource.

        Parameters
        ----------
        endpoint
            The API endpoint to which the object should be added.
        parent_endpoint
            The parent API endpoint, if the resource is nested under a parent
            resource.
        parent_param
            The parameter to identify the parent resource, if applicable. This
            could be an ID or a unique identifier. The parameter will be
            appended to the parent endpoint to form the full URL for the API
            request.
        param
            The parameter to identify the specific resource. This could be an
            ID or a unique identifier. The parameter will be appended to the
            endpoint to form the full URL for the GET request.
        additional_request_params
            Additional parameters to include in the function call which handles
            the API request. This allows for flexibility in specifying
            parameters such as headers, authentication tokens, or other request
            options that may be needed for the API call.
        **params
            Additional query parameters to include in the API request.
        """
        ...

    @overload
    def update(
        self,
        obj: DomainModel,
        return_obj: Literal[True],
        serialize: bool | None,
        use_factory: Literal[True, None],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> DomainModel: ...

    @overload
    def update(
        self,
        obj: DomainModel,
        return_obj: Literal[True],
        serialize: bool | None,
        use_factory: Literal[False],
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> dict[str, Any]: ...

    @overload
    def update(
        self,
        obj: DomainModel,
        return_obj: Literal[False],
        serialize: bool | None,
        use_factory: bool | None,
        endpoint: str | None,
        parent_endpoint: str | None,
        parent_param: str | int | UUID | None,
        param: str | int | UUID | None,
        model: DomainModel | None,
        additional_request_params: dict[str, Any] | None,
        **params: Any,
    ) -> None: ...

    def update(
        self,
        obj: DomainModel,
        return_obj: bool = True,
        serialize: bool | None = None,
        use_factory: bool | None = None,
        endpoint: str | None = None,
        parent_endpoint: str | None = None,
        parent_param: str | int | UUID | None = None,
        param: str | int | UUID | None = None,
        model: DomainModel | None = None,
        additional_request_params: dict[str, Any] | None = None,
        **params: Any,
    ) -> DomainModel | dict[str, Any] | None:
        """Update a resource.

        Parameters
        ----------
        obj
            The object to add.
        return_obj
            Whether to return the added object or not.
        serialize
            Whether to serialize the object before sending it in the API
            request.
        use_factory
            Whether to use the model factory method for creating models from
            response data.
        endpoint
            The API endpoint to which the object should be added.
        parent_endpoint
            The parent API endpoint, if the resource is nested under a parent
            resource.
        parent_param
            The parameter to identify the parent resource, if applicable. This
            could be an ID or a unique identifier. The parameter will be
            appended to the parent endpoint to form the full URL for the API
            request.
        param
            The parameter to identify the specific resource. This could be an
            ID or a unique identifier. The parameter will be appended to the
            endpoint to form the full URL for the GET request.
        model
            The model to use for serialization/deserialization.
        additional_request_params
            Additional parameters to include in the function call which handles
            the API request. This allows for flexibility in specifying
            parameters such as headers, authentication tokens, or other request
            options that may be needed for the API call.
        **params
            Additional query parameters to include in the API request.

        Returns
        -------
        DomainModel | dict[str, Any] | None
            The updated object if `return_obj` is `True`, otherwise `None`.
        """
        ...

Methods:

add

add(obj: DomainModel, return_obj: Literal[True], serialize: bool | None, use_factory: Literal[True, None], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> DomainModel
add(obj: DomainModel, return_obj: Literal[True], serialize: bool | None, use_factory: Literal[False], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> dict[str, Any]
add(obj: DomainModel, return_obj: Literal[False], serialize: bool | None, use_factory: bool | None, endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> None
add(obj, return_obj=True, serialize=None, use_factory=None, endpoint=None, parent_endpoint=None, parent_param=None, model=None, additional_request_params=None, **params)

Add a new resource.

Parameters:
  • obj (DomainModel) –

    The object to add.

  • return_obj (bool, default: True ) –

    Whether to return the added object or not.

  • serialize (bool | None, default: None ) –

    Whether to serialize the object before sending it in the API request.

  • use_factory (bool | None, default: None ) –

    Whether to use the model factory method for creating models from response data.

  • endpoint (str | None, default: None ) –

    The API endpoint to which the object should be added.

  • parent_endpoint (str | None, default: None ) –

    The parent API endpoint, if the resource is nested under a parent resource.

  • parent_param (str | int | UUID | None, default: None ) –

    The parameter to identify the parent resource, if applicable. This could be an ID or a unique identifier. The parameter will be appended to the parent endpoint to form the full URL for the API request.

  • model (DomainModel | None, default: None ) –

    The model to use for serialization/deserialization.

  • additional_request_params (dict[str, Any] | None, default: None ) –

    Additional parameters to include in the function call which handles the API request. This allows for flexibility in specifying parameters such as headers, authentication tokens, or other request options that may be needed for the API call.

  • **params (Any, default: {} ) –

    Additional query parameters to include in the API request.

Returns:
  • DomainModel | dict[str, Any] | None

    The added object if return_obj is True, otherwise None.

Source code in src/alpha/interfaces/api_repository.py
def add(
    self,
    obj: DomainModel,
    return_obj: bool = True,
    serialize: bool | None = None,
    use_factory: bool | None = None,
    endpoint: str | None = None,
    parent_endpoint: str | None = None,
    parent_param: str | int | UUID | None = None,
    model: DomainModel | None = None,
    additional_request_params: dict[str, Any] | None = None,
    **params: Any,
) -> DomainModel | dict[str, Any] | None:
    """Add a new resource.

    Parameters
    ----------
    obj
        The object to add.
    return_obj
        Whether to return the added object or not.
    serialize
        Whether to serialize the object before sending it in the API
        request.
    use_factory
        Whether to use the model factory method for creating models from
        response data.
    endpoint
        The API endpoint to which the object should be added.
    parent_endpoint
        The parent API endpoint, if the resource is nested under a parent
        resource.
    parent_param
        The parameter to identify the parent resource, if applicable. This
        could be an ID or a unique identifier. The parameter will be
        appended to the parent endpoint to form the full URL for the API
        request.
    model
        The model to use for serialization/deserialization.
    additional_request_params
        Additional parameters to include in the function call which handles
        the API request. This allows for flexibility in specifying
        parameters such as headers, authentication tokens, or other request
        options that may be needed for the API call.
    **params
        Additional query parameters to include in the API request.

    Returns
    -------
    DomainModel | dict[str, Any] | None
        The added object if `return_obj` is `True`, otherwise `None`.
    """
    ...

add_all

add_all(objs: list[DomainModel], return_objs: Literal[True], serialize: bool | None, use_factory: Literal[True, None], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, one_by_one: bool, **params: Any) -> list[DomainModel]
add_all(objs: list[DomainModel], return_objs: Literal[True], serialize: bool | None, use_factory: Literal[False], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, one_by_one: bool, **params: Any) -> list[dict[str, Any]]
add_all(objs: list[DomainModel], return_objs: Literal[False], serialize: bool | None, use_factory: bool | None, endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, one_by_one: bool, **params: Any) -> None
add_all(objs, return_objs=True, serialize=None, use_factory=None, endpoint=None, parent_endpoint=None, parent_param=None, model=None, additional_request_params=None, one_by_one=False, **params)

Add multiple new resources.

Parameters:
  • objs (list[DomainModel]) –

    The objects to add.

  • return_objs (bool, default: True ) –

    Whether to return the added objects or not.

  • serialize (bool | None, default: None ) –

    Whether to serialize the objects before sending them in the API request.

  • use_factory (bool | None, default: None ) –

    Whether to use the model factory method for creating models from response data.

  • endpoint (str | None, default: None ) –

    The API endpoint to which the objects should be added.

  • parent_endpoint (str | None, default: None ) –

    The parent API endpoint, if the resources are nested under a parent resource.

  • parent_param (str | int | UUID | None, default: None ) –

    The parameter to identify the parent resource, if applicable. This could be an ID or a unique identifier. The parameter will be appended to the parent endpoint to form the full URL for the API request.

  • model (DomainModel | None, default: None ) –

    The model to use for serialization/deserialization.

  • additional_request_params (dict[str, Any] | None, default: None ) –

    Additional parameters to include in the function call which handles the API request. This allows for flexibility in specifying parameters such as headers, authentication tokens, or other request options that may be needed for the API call.

  • one_by_one (bool, default: False ) –

    Whether to add the objects one by one (i.e. make a separate API call for each object).

  • **params (Any, default: {} ) –

    Additional query parameters to include in the API request.

Returns:
  • list[DomainModel] | list[dict[str, Any]] | None

    The added objects if return_obj is True, otherwise None.

Source code in src/alpha/interfaces/api_repository.py
def add_all(
    self,
    objs: list[DomainModel],
    return_objs: bool = True,
    serialize: bool | None = None,
    use_factory: bool | None = None,
    endpoint: str | None = None,
    parent_endpoint: str | None = None,
    parent_param: str | int | UUID | None = None,
    model: DomainModel | None = None,
    additional_request_params: dict[str, Any] | None = None,
    one_by_one: bool = False,
    **params: Any,
) -> list[DomainModel] | list[dict[str, Any]] | None:
    """Add multiple new resources.

    Parameters
    ----------
    objs
        The objects to add.
    return_objs
        Whether to return the added objects or not.
    serialize
        Whether to serialize the objects before sending them in the API
        request.
    use_factory
        Whether to use the model factory method for creating models from
        response data.
    endpoint
        The API endpoint to which the objects should be added.
    parent_endpoint
        The parent API endpoint, if the resources are nested under a parent
        resource.
    parent_param
        The parameter to identify the parent resource, if applicable. This
        could be an ID or a unique identifier. The parameter will be
        appended to the parent endpoint to form the full URL for the API
        request.
    model
        The model to use for serialization/deserialization.
    additional_request_params
        Additional parameters to include in the function call which handles
        the API request. This allows for flexibility in specifying
        parameters such as headers, authentication tokens, or other request
        options that may be needed for the API call.
    one_by_one
        Whether to add the objects one by one (i.e. make a separate API
        call for each object).
    **params
        Additional query parameters to include in the API request.

    Returns
    -------
    list[DomainModel] | list[dict[str, Any]] | None
        The added objects if `return_obj` is `True`, otherwise `None`.
    """
    ...

get

get(use_factory: Literal[True, None], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> DomainModel
get(use_factory: Literal[False], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> dict[str, Any]
get(use_factory=None, endpoint=None, parent_endpoint=None, parent_param=None, param=None, model=None, additional_request_params=None, **params)

Retrieve a single resource.

Parameters:
  • endpoint (str | None, default: None ) –

    The API endpoint from which to retrieve the resource.

  • use_factory (bool | None, default: None ) –

    Whether to use the model factory method for creating models from response data.

  • endpoint (str | None, default: None ) –

    The API endpoint to which the object should be added.

  • parent_endpoint (str | None, default: None ) –

    The parent API endpoint, if the resource is nested under a parent resource.

  • parent_param (str | int | UUID | None, default: None ) –

    The parameter to identify the parent resource, if applicable. This could be an ID or a unique identifier. The parameter will be appended to the parent endpoint to form the full URL for the API request.

  • param (str | int | UUID | None, default: None ) –

    The parameter to identify the specific resource. This could be an ID or a unique identifier. The parameter will be appended to the endpoint to form the full URL for the GET request.

  • model (DomainModel | None, default: None ) –

    The model to use for serialization/deserialization.

  • additional_request_params (dict[str, Any] | None, default: None ) –

    Additional parameters to include in the function call which handles the API request. This allows for flexibility in specifying parameters such as headers, authentication tokens, or other request options that may be needed for the API call.

  • **params (Any, default: {} ) –

    Additional query parameters to include in the API request.

Returns:
  • DomainModel | dict[str, Any]

    The retrieved object.

Source code in src/alpha/interfaces/api_repository.py
def get(
    self,
    use_factory: bool | None = None,
    endpoint: str | None = None,
    parent_endpoint: str | None = None,
    parent_param: str | int | UUID | None = None,
    param: str | int | UUID | None = None,
    model: DomainModel | None = None,
    additional_request_params: dict[str, Any] | None = None,
    **params: Any,
) -> DomainModel | dict[str, Any]:
    """Retrieve a single resource.

    Parameters
    ----------
    endpoint
        The API endpoint from which to retrieve the resource.
    use_factory
        Whether to use the model factory method for creating models from
        response data.
    endpoint
        The API endpoint to which the object should be added.
    parent_endpoint
        The parent API endpoint, if the resource is nested under a parent
        resource.
    parent_param
        The parameter to identify the parent resource, if applicable. This
        could be an ID or a unique identifier. The parameter will be
        appended to the parent endpoint to form the full URL for the API
        request.
    param
        The parameter to identify the specific resource. This could be an
        ID or a unique identifier. The parameter will be appended to the
        endpoint to form the full URL for the GET request.
    model
        The model to use for serialization/deserialization.
    additional_request_params
        Additional parameters to include in the function call which handles
        the API request. This allows for flexibility in specifying
        parameters such as headers, authentication tokens, or other request
        options that may be needed for the API call.
    **params
        Additional query parameters to include in the API request.

    Returns
    -------
    DomainModel | dict[str, Any]
        The retrieved object.
    """
    ...

get_all

get_all(use_factory: Literal[True, None], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> list[DomainModel]
get_all(use_factory: Literal[False], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> list[dict[str, Any]]
get_all(use_factory=None, endpoint=None, parent_endpoint=None, parent_param=None, param=None, model=None, additional_request_params=None, **params)

Retrieve multiple resources.

Parameters:
  • endpoint (str | None, default: None ) –

    The API endpoint from which to retrieve the resource.

  • use_factory (bool | None, default: None ) –

    Whether to use the model factory method for creating models from response data.

  • endpoint (str | None, default: None ) –

    The API endpoint to which the object should be added.

  • parent_endpoint (str | None, default: None ) –

    The parent API endpoint, if the resource is nested under a parent resource.

  • parent_param (str | int | UUID | None, default: None ) –

    The parameter to identify the parent resource, if applicable. This could be an ID or a unique identifier. The parameter will be appended to the parent endpoint to form the full URL for the API request.

  • param (str | int | UUID | None, default: None ) –

    The parameter to identify the specific resource. This could be an ID or a unique identifier. The parameter will be appended to the endpoint to form the full URL for the GET request.

  • model (DomainModel | None, default: None ) –

    The model to use for serialization/deserialization.

  • additional_request_params (dict[str, Any] | None, default: None ) –

    Additional parameters to include in the function call which handles the API request. This allows for flexibility in specifying parameters such as headers, authentication tokens, or other request options that may be needed for the API call.

  • **params (Any, default: {} ) –

    Additional query parameters to include in the API request.

Returns:
  • list[DomainModel] | list[dict[str, Any]]

    The retrieved objects.

Source code in src/alpha/interfaces/api_repository.py
def get_all(
    self,
    use_factory: bool | None = None,
    endpoint: str | None = None,
    parent_endpoint: str | None = None,
    parent_param: str | int | UUID | None = None,
    param: str | int | UUID | None = None,
    model: DomainModel | None = None,
    additional_request_params: dict[str, Any] | None = None,
    **params: Any,
) -> list[DomainModel] | list[dict[str, Any]]:
    """Retrieve multiple resources.

    Parameters
    ----------
    endpoint
        The API endpoint from which to retrieve the resource.
    use_factory
        Whether to use the model factory method for creating models from
        response data.
    endpoint
        The API endpoint to which the object should be added.
    parent_endpoint
        The parent API endpoint, if the resource is nested under a parent
        resource.
    parent_param
        The parameter to identify the parent resource, if applicable. This
        could be an ID or a unique identifier. The parameter will be
        appended to the parent endpoint to form the full URL for the API
        request.
    param
        The parameter to identify the specific resource. This could be an
        ID or a unique identifier. The parameter will be appended to the
        endpoint to form the full URL for the GET request.
    model
        The model to use for serialization/deserialization.
    additional_request_params
        Additional parameters to include in the function call which handles
        the API request. This allows for flexibility in specifying
        parameters such as headers, authentication tokens, or other request
        options that may be needed for the API call.
    **params
        Additional query parameters to include in the API request.

    Returns
    -------
    list[DomainModel] | list[dict[str, Any]]
        The retrieved objects.
    """
    ...

patch

patch(patch: JsonPatch, return_obj: Literal[True], use_factory: Literal[True, None], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> DomainModel
patch(patch: JsonPatch, return_obj: Literal[True], use_factory: Literal[False], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> dict[str, Any]
patch(patch: JsonPatch, return_obj: Literal[False], use_factory: bool | None, endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> None
patch(patch, return_obj=True, use_factory=None, endpoint=None, parent_endpoint=None, parent_param=None, param=None, model=None, additional_request_params=None, **params)

Update a resource.

Parameters:
  • patch (JsonPatch) –

    The JSON Patch object containing the changes to be applied to the resource.

  • return_obj (bool, default: True ) –

    Whether to return the updated object or not.

  • use_factory (bool | None, default: None ) –

    Whether to use the model factory method for creating models from response data.

  • endpoint (str | None, default: None ) –

    The API endpoint to which the object should be added.

  • parent_endpoint (str | None, default: None ) –

    The parent API endpoint, if the resource is nested under a parent resource.

  • parent_param (str | int | UUID | None, default: None ) –

    The parameter to identify the parent resource, if applicable. This could be an ID or a unique identifier. The parameter will be appended to the parent endpoint to form the full URL for the API request.

  • param (str | int | UUID | None, default: None ) –

    The parameter to identify the specific resource. This could be an ID or a unique identifier. The parameter will be appended to the endpoint to form the full URL for the GET request.

  • model (DomainModel | None, default: None ) –

    The model to use for serialization/deserialization.

  • additional_request_params (dict[str, Any] | None, default: None ) –

    Additional parameters to include in the function call which handles the API request. This allows for flexibility in specifying parameters such as headers, authentication tokens, or other request options that may be needed for the API call.

  • **params (Any, default: {} ) –

    Additional query parameters to include in the API request.

Returns:
  • DomainModel | dict[str, Any] | None

    The updated object if return_obj is True, otherwise None.

Source code in src/alpha/interfaces/api_repository.py
def patch(
    self,
    patch: JsonPatch,
    return_obj: bool = True,
    use_factory: bool | None = None,
    endpoint: str | None = None,
    parent_endpoint: str | None = None,
    parent_param: str | int | UUID | None = None,
    param: str | int | UUID | None = None,
    model: DomainModel | None = None,
    additional_request_params: dict[str, Any] | None = None,
    **params: Any,
) -> DomainModel | dict[str, Any] | None:
    """Update a resource.

    Parameters
    ----------
    patch
        The JSON Patch object containing the changes to be applied to the
        resource.
    return_obj
        Whether to return the updated object or not.
    use_factory
        Whether to use the model factory method for creating models from
        response data.
    endpoint
        The API endpoint to which the object should be added.
    parent_endpoint
        The parent API endpoint, if the resource is nested under a parent
        resource.
    parent_param
        The parameter to identify the parent resource, if applicable. This
        could be an ID or a unique identifier. The parameter will be
        appended to the parent endpoint to form the full URL for the API
        request.
    param
        The parameter to identify the specific resource. This could be an
        ID or a unique identifier. The parameter will be appended to the
        endpoint to form the full URL for the GET request.
    model
        The model to use for serialization/deserialization.
    additional_request_params
        Additional parameters to include in the function call which handles
        the API request. This allows for flexibility in specifying
        parameters such as headers, authentication tokens, or other request
        options that may be needed for the API call.
    **params
        Additional query parameters to include in the API request.

    Returns
    -------
    DomainModel | dict[str, Any] | None
        The updated object if `return_obj` is `True`, otherwise `None`.
    """
    ...

remove

remove(endpoint=None, parent_endpoint=None, parent_param=None, param=None, additional_request_params=None, **params)

Remove a resource.

Parameters:
  • endpoint (str | None, default: None ) –

    The API endpoint to which the object should be added.

  • parent_endpoint (str | None, default: None ) –

    The parent API endpoint, if the resource is nested under a parent resource.

  • parent_param (str | int | UUID | None, default: None ) –

    The parameter to identify the parent resource, if applicable. This could be an ID or a unique identifier. The parameter will be appended to the parent endpoint to form the full URL for the API request.

  • param (str | int | UUID | None, default: None ) –

    The parameter to identify the specific resource. This could be an ID or a unique identifier. The parameter will be appended to the endpoint to form the full URL for the GET request.

  • additional_request_params (dict[str, Any] | None, default: None ) –

    Additional parameters to include in the function call which handles the API request. This allows for flexibility in specifying parameters such as headers, authentication tokens, or other request options that may be needed for the API call.

  • **params (Any, default: {} ) –

    Additional query parameters to include in the API request.

Source code in src/alpha/interfaces/api_repository.py
def remove(
    self,
    endpoint: str | None = None,
    parent_endpoint: str | None = None,
    parent_param: str | int | UUID | None = None,
    param: str | int | UUID | None = None,
    additional_request_params: dict[str, Any] | None = None,
    **params: Any,
) -> None:
    """Remove a resource.

    Parameters
    ----------
    endpoint
        The API endpoint to which the object should be added.
    parent_endpoint
        The parent API endpoint, if the resource is nested under a parent
        resource.
    parent_param
        The parameter to identify the parent resource, if applicable. This
        could be an ID or a unique identifier. The parameter will be
        appended to the parent endpoint to form the full URL for the API
        request.
    param
        The parameter to identify the specific resource. This could be an
        ID or a unique identifier. The parameter will be appended to the
        endpoint to form the full URL for the GET request.
    additional_request_params
        Additional parameters to include in the function call which handles
        the API request. This allows for flexibility in specifying
        parameters such as headers, authentication tokens, or other request
        options that may be needed for the API call.
    **params
        Additional query parameters to include in the API request.
    """
    ...

update

update(obj: DomainModel, return_obj: Literal[True], serialize: bool | None, use_factory: Literal[True, None], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> DomainModel
update(obj: DomainModel, return_obj: Literal[True], serialize: bool | None, use_factory: Literal[False], endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> dict[str, Any]
update(obj: DomainModel, return_obj: Literal[False], serialize: bool | None, use_factory: bool | None, endpoint: str | None, parent_endpoint: str | None, parent_param: str | int | UUID | None, param: str | int | UUID | None, model: DomainModel | None, additional_request_params: dict[str, Any] | None, **params: Any) -> None
update(obj, return_obj=True, serialize=None, use_factory=None, endpoint=None, parent_endpoint=None, parent_param=None, param=None, model=None, additional_request_params=None, **params)

Update a resource.

Parameters:
  • obj (DomainModel) –

    The object to add.

  • return_obj (bool, default: True ) –

    Whether to return the added object or not.

  • serialize (bool | None, default: None ) –

    Whether to serialize the object before sending it in the API request.

  • use_factory (bool | None, default: None ) –

    Whether to use the model factory method for creating models from response data.

  • endpoint (str | None, default: None ) –

    The API endpoint to which the object should be added.

  • parent_endpoint (str | None, default: None ) –

    The parent API endpoint, if the resource is nested under a parent resource.

  • parent_param (str | int | UUID | None, default: None ) –

    The parameter to identify the parent resource, if applicable. This could be an ID or a unique identifier. The parameter will be appended to the parent endpoint to form the full URL for the API request.

  • param (str | int | UUID | None, default: None ) –

    The parameter to identify the specific resource. This could be an ID or a unique identifier. The parameter will be appended to the endpoint to form the full URL for the GET request.

  • model (DomainModel | None, default: None ) –

    The model to use for serialization/deserialization.

  • additional_request_params (dict[str, Any] | None, default: None ) –

    Additional parameters to include in the function call which handles the API request. This allows for flexibility in specifying parameters such as headers, authentication tokens, or other request options that may be needed for the API call.

  • **params (Any, default: {} ) –

    Additional query parameters to include in the API request.

Returns:
  • DomainModel | dict[str, Any] | None

    The updated object if return_obj is True, otherwise None.

Source code in src/alpha/interfaces/api_repository.py
def update(
    self,
    obj: DomainModel,
    return_obj: bool = True,
    serialize: bool | None = None,
    use_factory: bool | None = None,
    endpoint: str | None = None,
    parent_endpoint: str | None = None,
    parent_param: str | int | UUID | None = None,
    param: str | int | UUID | None = None,
    model: DomainModel | None = None,
    additional_request_params: dict[str, Any] | None = None,
    **params: Any,
) -> DomainModel | dict[str, Any] | None:
    """Update a resource.

    Parameters
    ----------
    obj
        The object to add.
    return_obj
        Whether to return the added object or not.
    serialize
        Whether to serialize the object before sending it in the API
        request.
    use_factory
        Whether to use the model factory method for creating models from
        response data.
    endpoint
        The API endpoint to which the object should be added.
    parent_endpoint
        The parent API endpoint, if the resource is nested under a parent
        resource.
    parent_param
        The parameter to identify the parent resource, if applicable. This
        could be an ID or a unique identifier. The parameter will be
        appended to the parent endpoint to form the full URL for the API
        request.
    param
        The parameter to identify the specific resource. This could be an
        ID or a unique identifier. The parameter will be appended to the
        endpoint to form the full URL for the GET request.
    model
        The model to use for serialization/deserialization.
    additional_request_params
        Additional parameters to include in the function call which handles
        the API request. This allows for flexibility in specifying
        parameters such as headers, authentication tokens, or other request
        options that may be needed for the API call.
    **params
        Additional query parameters to include in the API request.

    Returns
    -------
    DomainModel | dict[str, Any] | None
        The updated object if `return_obj` is `True`, otherwise `None`.
    """
    ...