@@ -495,11 +495,11 @@ def create(
495
495
496
496
:param resource: The resource to create
497
497
If is a :data:`dict`, the resource type will be guessed from the schema.
498
- :param check_request_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_request_payload`.
499
- :param check_response_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_response_payload`.
498
+ :param check_request_payload: If set, overwrites :paramref:` BaseSCIMClient.check_request_payload`.
499
+ :param check_response_payload: If set, overwrites :paramref:` BaseSCIMClient.check_response_payload`.
500
500
:param expected_status_codes: The list of expected status codes form the response.
501
501
If :data:`None` any status code is accepted.
502
- :param raise_scim_errors: If set, overwrites the :attr:`client value< BaseSCIMClient.raise_scim_errors`.
502
+ :param raise_scim_errors: If set, overwrites :paramref:` BaseSCIMClient.raise_scim_errors`.
503
503
:param kwargs: Additional parameters passed to the underlying HTTP request
504
504
library.
505
505
@@ -547,11 +547,11 @@ def query(
547
547
:param resource_model: A :class:`~scim2_models.Resource` subtype or :data:`None`
548
548
:param id: The SCIM id of an object to get, or :data:`None`
549
549
:param search_request: An object detailing the search query parameters.
550
- :param check_request_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_request_payload`.
551
- :param check_response_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_response_payload`.
550
+ :param check_request_payload: If set, overwrites :paramref:` BaseSCIMClient.check_request_payload`.
551
+ :param check_response_payload: If set, overwrites :paramref:` BaseSCIMClient.check_response_payload`.
552
552
:param expected_status_codes: The list of expected status codes form the response.
553
553
If :data:`None` any status code is accepted.
554
- :param raise_scim_errors: If set, overwrites the :attr:`client value< BaseSCIMClient.raise_scim_errors`.
554
+ :param raise_scim_errors: If set, overwrites :paramref:` BaseSCIMClient.raise_scim_errors`.
555
555
:param kwargs: Additional parameters passed to the underlying HTTP request library.
556
556
557
557
:return:
@@ -616,11 +616,11 @@ def search(
616
616
:param resource_models: Resource type or union of types expected
617
617
to be read from the response.
618
618
:param search_request: An object detailing the search query parameters.
619
- :param check_request_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_request_payload`.
620
- :param check_response_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_response_payload`.
619
+ :param check_request_payload: If set, overwrites :paramref:` BaseSCIMClient.check_request_payload`.
620
+ :param check_response_payload: If set, overwrites :paramref:` BaseSCIMClient.check_response_payload`.
621
621
:param expected_status_codes: The list of expected status codes form the response.
622
622
If :data:`None` any status code is accepted.
623
- :param raise_scim_errors: If set, overwrites the :attr:`client value< BaseSCIMClient.raise_scim_errors`.
623
+ :param raise_scim_errors: If set, overwrites :paramref:` BaseSCIMClient.raise_scim_errors`.
624
624
:param kwargs: Additional parameters passed to the underlying
625
625
HTTP request library.
626
626
@@ -663,10 +663,10 @@ def delete(
663
663
664
664
:param resource_model: The type of the resource to delete.
665
665
:param id: The type id the resource to delete.
666
- :param check_response_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_response_payload`.
666
+ :param check_response_payload: If set, overwrites :paramref:` BaseSCIMClient.check_response_payload`.
667
667
:param expected_status_codes: The list of expected status codes form the response.
668
668
If :data:`None` any status code is accepted.
669
- :param raise_scim_errors: If set, overwrites the :attr:`client value< BaseSCIMClient.raise_scim_errors`.
669
+ :param raise_scim_errors: If set, overwrites :paramref:` BaseSCIMClient.raise_scim_errors`.
670
670
:param kwargs: Additional parameters passed to the underlying
671
671
HTTP request library.
672
672
@@ -701,11 +701,11 @@ def replace(
701
701
702
702
:param resource: The new resource to replace.
703
703
If is a :data:`dict`, the resource type will be guessed from the schema.
704
- :param check_request_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_request_payload`.
705
- :param check_response_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_response_payload`.
704
+ :param check_request_payload: If set, overwrites :paramref:` BaseSCIMClient.check_request_payload`.
705
+ :param check_response_payload: If set, overwrites :paramref:` BaseSCIMClient.check_response_payload`.
706
706
:param expected_status_codes: The list of expected status codes form the response.
707
707
If :data:`None` any status code is accepted.
708
- :param raise_scim_errors: If set, overwrites the :attr:`client value< BaseSCIMClient.raise_scim_errors`.
708
+ :param raise_scim_errors: If set, overwrites :paramref:` BaseSCIMClient.raise_scim_errors`.
709
709
:param kwargs: Additional parameters passed to the underlying
710
710
HTTP request library.
711
711
@@ -752,11 +752,11 @@ async def create(
752
752
753
753
:param resource: The resource to create
754
754
If is a :data:`dict`, the resource type will be guessed from the schema.
755
- :param check_request_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_request_payload`.
756
- :param check_response_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_response_payload`.
755
+ :param check_request_payload: If set, overwrites :paramref:` BaseSCIMClient.check_request_payload`.
756
+ :param check_response_payload: If set, overwrites :paramref:` BaseSCIMClient.check_response_payload`.
757
757
:param expected_status_codes: The list of expected status codes form the response.
758
758
If :data:`None` any status code is accepted.
759
- :param raise_scim_errors: If set, overwrites the :attr:`client value< BaseSCIMClient.raise_scim_errors`.
759
+ :param raise_scim_errors: If set, overwrites :paramref:` BaseSCIMClient.raise_scim_errors`.
760
760
:param kwargs: Additional parameters passed to the underlying HTTP request
761
761
library.
762
762
@@ -804,11 +804,11 @@ async def query(
804
804
:param resource_model: A :class:`~scim2_models.Resource` subtype or :data:`None`
805
805
:param id: The SCIM id of an object to get, or :data:`None`
806
806
:param search_request: An object detailing the search query parameters.
807
- :param check_request_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_request_payload`.
808
- :param check_response_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_response_payload`.
807
+ :param check_request_payload: If set, overwrites :paramref:` BaseSCIMClient.check_request_payload`.
808
+ :param check_response_payload: If set, overwrites :paramref:` BaseSCIMClient.check_response_payload`.
809
809
:param expected_status_codes: The list of expected status codes form the response.
810
810
If :data:`None` any status code is accepted.
811
- :param raise_scim_errors: If set, overwrites the :attr:`client value< BaseSCIMClient.raise_scim_errors`.
811
+ :param raise_scim_errors: If set, overwrites :paramref:` BaseSCIMClient.raise_scim_errors`.
812
812
:param kwargs: Additional parameters passed to the underlying HTTP request library.
813
813
814
814
:return:
@@ -873,11 +873,11 @@ async def search(
873
873
:param resource_models: Resource type or union of types expected
874
874
to be read from the response.
875
875
:param search_request: An object detailing the search query parameters.
876
- :param check_request_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_request_payload`.
877
- :param check_response_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_response_payload`.
876
+ :param check_request_payload: If set, overwrites :paramref:` BaseSCIMClient.check_request_payload`.
877
+ :param check_response_payload: If set, overwrites :paramref:` BaseSCIMClient.check_response_payload`.
878
878
:param expected_status_codes: The list of expected status codes form the response.
879
879
If :data:`None` any status code is accepted.
880
- :param raise_scim_errors: If set, overwrites the :attr:`client value< BaseSCIMClient.raise_scim_errors`.
880
+ :param raise_scim_errors: If set, overwrites :paramref:` BaseSCIMClient.raise_scim_errors`.
881
881
:param kwargs: Additional parameters passed to the underlying
882
882
HTTP request library.
883
883
@@ -920,10 +920,10 @@ async def delete(
920
920
921
921
:param resource_model: The type of the resource to delete.
922
922
:param id: The type id the resource to delete.
923
- :param check_response_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_response_payload`.
923
+ :param check_response_payload: If set, overwrites :paramref:` BaseSCIMClient.check_response_payload`.
924
924
:param expected_status_codes: The list of expected status codes form the response.
925
925
If :data:`None` any status code is accepted.
926
- :param raise_scim_errors: If set, overwrites the :attr:`client value< BaseSCIMClient.raise_scim_errors`.
926
+ :param raise_scim_errors: If set, overwrites :paramref:` BaseSCIMClient.raise_scim_errors`.
927
927
:param kwargs: Additional parameters passed to the underlying
928
928
HTTP request library.
929
929
@@ -958,11 +958,11 @@ async def replace(
958
958
959
959
:param resource: The new resource to replace.
960
960
If is a :data:`dict`, the resource type will be guessed from the schema.
961
- :param check_request_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_request_payload`.
962
- :param check_response_payload: If set, overwrites the :attr:`client value< BaseSCIMClient.check_response_payload`.
961
+ :param check_request_payload: If set, overwrites :paramref:` BaseSCIMClient.check_request_payload`.
962
+ :param check_response_payload: If set, overwrites :paramref:` BaseSCIMClient.check_response_payload`.
963
963
:param expected_status_codes: The list of expected status codes form the response.
964
964
If :data:`None` any status code is accepted.
965
- :param raise_scim_errors: If set, overwrites the :attr:`client value< BaseSCIMClient.raise_scim_errors`.
965
+ :param raise_scim_errors: If set, overwrites :paramref:` BaseSCIMClient.raise_scim_errors`.
966
966
:param kwargs: Additional parameters passed to the underlying
967
967
HTTP request library.
968
968
0 commit comments