-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_client.py
More file actions
1268 lines (937 loc) · 46.1 KB
/
_client.py
File metadata and controls
1268 lines (937 loc) · 46.1 KB
1
2
3
4
5
6
7
8
9
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
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
import os
from typing import TYPE_CHECKING, Any, Mapping
from typing_extensions import Self, override
import httpx
from . import _exceptions
from ._qs import Querystring
from ._types import (
Omit,
Timeout,
NotGiven,
Transport,
ProxiesTypes,
RequestOptions,
not_given,
)
from ._utils import (
is_given,
is_mapping,
get_async_library,
)
from ._compat import cached_property
from ._version import __version__
from ._streaming import Stream as Stream, AsyncStream as AsyncStream
from ._exceptions import OrbError, APIStatusError
from ._base_client import (
DEFAULT_MAX_RETRIES,
SyncAPIClient,
AsyncAPIClient,
)
if TYPE_CHECKING:
from .resources import (
beta,
items,
plans,
alerts,
events,
prices,
coupons,
metrics,
invoices,
webhooks,
licenses,
customers,
top_level,
credit_notes,
credit_blocks,
license_types,
subscriptions,
invoice_line_items,
subscription_changes,
dimensional_price_groups,
)
from .resources.items import Items, AsyncItems
from .resources.alerts import Alerts, AsyncAlerts
from .resources.metrics import Metrics, AsyncMetrics
from .resources.invoices import Invoices, AsyncInvoices
from .resources.beta.beta import Beta, AsyncBeta
from .resources.top_level import TopLevel, AsyncTopLevel
from .resources.plans.plans import Plans, AsyncPlans
from .resources.credit_notes import CreditNotes, AsyncCreditNotes
from .resources.credit_blocks import CreditBlocks, AsyncCreditBlocks
from .resources.events.events import Events, AsyncEvents
from .resources.license_types import LicenseTypes, AsyncLicenseTypes
from .resources.prices.prices import Prices, AsyncPrices
from .resources.subscriptions import Subscriptions, AsyncSubscriptions
from .resources.coupons.coupons import Coupons, AsyncCoupons
from .resources.licenses.licenses import Licenses, AsyncLicenses
from .resources.invoice_line_items import InvoiceLineItems, AsyncInvoiceLineItems
from .resources.customers.customers import Customers, AsyncCustomers
from .resources.subscription_changes import SubscriptionChanges, AsyncSubscriptionChanges
from .resources.dimensional_price_groups.dimensional_price_groups import (
DimensionalPriceGroups,
AsyncDimensionalPriceGroups,
)
__all__ = ["Timeout", "Transport", "ProxiesTypes", "RequestOptions", "Orb", "AsyncOrb", "Client", "AsyncClient"]
class Orb(SyncAPIClient):
# client options
api_key: str
webhook_secret: str | None
def __init__(
self,
*,
api_key: str | None = None,
webhook_secret: str | None = None,
base_url: str | httpx.URL | None = None,
timeout: float | Timeout | None | NotGiven = not_given,
max_retries: int = DEFAULT_MAX_RETRIES,
default_headers: Mapping[str, str] | None = None,
default_query: Mapping[str, object] | None = None,
# Configure a custom httpx client.
# We provide a `DefaultHttpxClient` class that you can pass to retain the default values we use for `limits`, `timeout` & `follow_redirects`.
# See the [httpx documentation](https://www.python-httpx.org/api/#client) for more details.
http_client: httpx.Client | None = None,
# Enable or disable schema validation for data returned by the API.
# When enabled an error APIResponseValidationError is raised
# if the API responds with invalid data for the expected schema.
#
# This parameter may be removed or changed in the future.
# If you rely on this feature, please open a GitHub issue
# outlining your use-case to help us decide if it should be
# part of our public interface in the future.
_strict_response_validation: bool = False,
) -> None:
"""Construct a new synchronous Orb client instance.
This automatically infers the following arguments from their corresponding environment variables if they are not provided:
- `api_key` from `ORB_API_KEY`
- `webhook_secret` from `ORB_WEBHOOK_SECRET`
"""
if api_key is None:
api_key = os.environ.get("ORB_API_KEY")
if api_key is None:
raise OrbError(
"The api_key client option must be set either by passing api_key to the client or by setting the ORB_API_KEY environment variable"
)
self.api_key = api_key
if webhook_secret is None:
webhook_secret = os.environ.get("ORB_WEBHOOK_SECRET")
self.webhook_secret = webhook_secret
if base_url is None:
base_url = os.environ.get("ORB_BASE_URL")
if base_url is None:
base_url = f"https://api.withorb.com/v1"
super().__init__(
version=__version__,
base_url=base_url,
max_retries=max_retries,
timeout=timeout,
http_client=http_client,
custom_headers=default_headers,
custom_query=default_query,
_strict_response_validation=_strict_response_validation,
)
self._idempotency_header = "Idempotency-Key"
@cached_property
def top_level(self) -> TopLevel:
from .resources.top_level import TopLevel
return TopLevel(self)
@cached_property
def beta(self) -> Beta:
from .resources.beta import Beta
return Beta(self)
@cached_property
def coupons(self) -> Coupons:
from .resources.coupons import Coupons
return Coupons(self)
@cached_property
def credit_notes(self) -> CreditNotes:
from .resources.credit_notes import CreditNotes
return CreditNotes(self)
@cached_property
def customers(self) -> Customers:
from .resources.customers import Customers
return Customers(self)
@cached_property
def events(self) -> Events:
from .resources.events import Events
return Events(self)
@cached_property
def invoice_line_items(self) -> InvoiceLineItems:
from .resources.invoice_line_items import InvoiceLineItems
return InvoiceLineItems(self)
@cached_property
def invoices(self) -> Invoices:
from .resources.invoices import Invoices
return Invoices(self)
@cached_property
def items(self) -> Items:
from .resources.items import Items
return Items(self)
@cached_property
def metrics(self) -> Metrics:
from .resources.metrics import Metrics
return Metrics(self)
@cached_property
def plans(self) -> Plans:
from .resources.plans import Plans
return Plans(self)
@cached_property
def prices(self) -> Prices:
from .resources.prices import Prices
return Prices(self)
@cached_property
def subscriptions(self) -> Subscriptions:
from .resources.subscriptions import Subscriptions
return Subscriptions(self)
@cached_property
def alerts(self) -> Alerts:
from .resources.alerts import Alerts
return Alerts(self)
@cached_property
def dimensional_price_groups(self) -> DimensionalPriceGroups:
from .resources.dimensional_price_groups import DimensionalPriceGroups
return DimensionalPriceGroups(self)
@cached_property
def subscription_changes(self) -> SubscriptionChanges:
from .resources.subscription_changes import SubscriptionChanges
return SubscriptionChanges(self)
@cached_property
def webhooks(self) -> webhooks.Webhooks:
from .resources.webhooks import Webhooks
return Webhooks(self)
@cached_property
def credit_blocks(self) -> CreditBlocks:
from .resources.credit_blocks import CreditBlocks
return CreditBlocks(self)
@cached_property
def license_types(self) -> LicenseTypes:
from .resources.license_types import LicenseTypes
return LicenseTypes(self)
@cached_property
def licenses(self) -> Licenses:
from .resources.licenses import Licenses
return Licenses(self)
@cached_property
def with_raw_response(self) -> OrbWithRawResponse:
return OrbWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> OrbWithStreamedResponse:
return OrbWithStreamedResponse(self)
@property
@override
def qs(self) -> Querystring:
return Querystring(array_format="brackets")
@property
@override
def auth_headers(self) -> dict[str, str]:
api_key = self.api_key
return {"Authorization": f"Bearer {api_key}"}
@property
@override
def default_headers(self) -> dict[str, str | Omit]:
return {
**super().default_headers,
"X-Stainless-Async": "false",
**self._custom_headers,
}
def copy(
self,
*,
api_key: str | None = None,
webhook_secret: str | None = None,
base_url: str | httpx.URL | None = None,
timeout: float | Timeout | None | NotGiven = not_given,
http_client: httpx.Client | None = None,
max_retries: int | NotGiven = not_given,
default_headers: Mapping[str, str] | None = None,
set_default_headers: Mapping[str, str] | None = None,
default_query: Mapping[str, object] | None = None,
set_default_query: Mapping[str, object] | None = None,
_extra_kwargs: Mapping[str, Any] = {},
) -> Self:
"""
Create a new client instance re-using the same options given to the current client with optional overriding.
"""
if default_headers is not None and set_default_headers is not None:
raise ValueError("The `default_headers` and `set_default_headers` arguments are mutually exclusive")
if default_query is not None and set_default_query is not None:
raise ValueError("The `default_query` and `set_default_query` arguments are mutually exclusive")
headers = self._custom_headers
if default_headers is not None:
headers = {**headers, **default_headers}
elif set_default_headers is not None:
headers = set_default_headers
params = self._custom_query
if default_query is not None:
params = {**params, **default_query}
elif set_default_query is not None:
params = set_default_query
http_client = http_client or self._client
return self.__class__(
api_key=api_key or self.api_key,
webhook_secret=webhook_secret or self.webhook_secret,
base_url=base_url or self.base_url,
timeout=self.timeout if isinstance(timeout, NotGiven) else timeout,
http_client=http_client,
max_retries=max_retries if is_given(max_retries) else self.max_retries,
default_headers=headers,
default_query=params,
**_extra_kwargs,
)
# Alias for `copy` for nicer inline usage, e.g.
# client.with_options(timeout=10).foo.create(...)
with_options = copy
@override
def _make_status_error(
self,
err_msg: str,
*,
body: object,
response: httpx.Response,
) -> APIStatusError:
type_ = body.get("type") if is_mapping(body) else None
if type_ == "https://docs.withorb.com/reference/error-responses#400-constraint-violation":
return _exceptions.ConstraintViolation(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#400-duplicate-resource-creation":
return _exceptions.DuplicateResourceCreation(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#404-feature-not-available":
return _exceptions.FeatureNotAvailable(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#400-request-validation-errors":
return _exceptions.RequestValidationError(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#401-authentication-error":
return _exceptions.OrbAuthenticationError(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#404-resource-not-found":
return _exceptions.ResourceNotFound(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#404-url-not-found":
return _exceptions.URLNotFound(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#409-resource-conflict":
return _exceptions.ResourceConflict(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#413-request-too-large":
return _exceptions.RequestTooLarge(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#413-resource-too-large":
return _exceptions.ResourceTooLarge(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#429-too-many-requests":
return _exceptions.TooManyRequests(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#500-internal-server-error":
return _exceptions.OrbInternalServerError(err_msg, response=response, body=body)
if response.status_code >= 500:
return _exceptions.OrbInternalServerError(
err_msg,
response=response,
body={
"status": 500,
"type": "https://docs.withorb.com/reference/error-responses#500-internal-server-error",
"detail": None,
"title": None,
},
)
if response.status_code == 400:
return _exceptions.BadRequestError(err_msg, response=response, body=body)
if response.status_code == 401:
return _exceptions.AuthenticationError(err_msg, response=response, body=body)
if response.status_code == 403:
return _exceptions.PermissionDeniedError(err_msg, response=response, body=body)
if response.status_code == 404:
return _exceptions.NotFoundError(err_msg, response=response, body=body)
if response.status_code == 409:
return _exceptions.ConflictError(err_msg, response=response, body=body)
if response.status_code == 422:
return _exceptions.UnprocessableEntityError(err_msg, response=response, body=body)
if response.status_code == 429:
return _exceptions.RateLimitError(err_msg, response=response, body=body)
if response.status_code >= 500:
return _exceptions.InternalServerError(err_msg, response=response, body=body)
return APIStatusError(err_msg, response=response, body=body)
class AsyncOrb(AsyncAPIClient):
# client options
api_key: str
webhook_secret: str | None
def __init__(
self,
*,
api_key: str | None = None,
webhook_secret: str | None = None,
base_url: str | httpx.URL | None = None,
timeout: float | Timeout | None | NotGiven = not_given,
max_retries: int = DEFAULT_MAX_RETRIES,
default_headers: Mapping[str, str] | None = None,
default_query: Mapping[str, object] | None = None,
# Configure a custom httpx client.
# We provide a `DefaultAsyncHttpxClient` class that you can pass to retain the default values we use for `limits`, `timeout` & `follow_redirects`.
# See the [httpx documentation](https://www.python-httpx.org/api/#asyncclient) for more details.
http_client: httpx.AsyncClient | None = None,
# Enable or disable schema validation for data returned by the API.
# When enabled an error APIResponseValidationError is raised
# if the API responds with invalid data for the expected schema.
#
# This parameter may be removed or changed in the future.
# If you rely on this feature, please open a GitHub issue
# outlining your use-case to help us decide if it should be
# part of our public interface in the future.
_strict_response_validation: bool = False,
) -> None:
"""Construct a new async AsyncOrb client instance.
This automatically infers the following arguments from their corresponding environment variables if they are not provided:
- `api_key` from `ORB_API_KEY`
- `webhook_secret` from `ORB_WEBHOOK_SECRET`
"""
if api_key is None:
api_key = os.environ.get("ORB_API_KEY")
if api_key is None:
raise OrbError(
"The api_key client option must be set either by passing api_key to the client or by setting the ORB_API_KEY environment variable"
)
self.api_key = api_key
if webhook_secret is None:
webhook_secret = os.environ.get("ORB_WEBHOOK_SECRET")
self.webhook_secret = webhook_secret
if base_url is None:
base_url = os.environ.get("ORB_BASE_URL")
if base_url is None:
base_url = f"https://api.withorb.com/v1"
super().__init__(
version=__version__,
base_url=base_url,
max_retries=max_retries,
timeout=timeout,
http_client=http_client,
custom_headers=default_headers,
custom_query=default_query,
_strict_response_validation=_strict_response_validation,
)
self._idempotency_header = "Idempotency-Key"
@cached_property
def top_level(self) -> AsyncTopLevel:
from .resources.top_level import AsyncTopLevel
return AsyncTopLevel(self)
@cached_property
def beta(self) -> AsyncBeta:
from .resources.beta import AsyncBeta
return AsyncBeta(self)
@cached_property
def coupons(self) -> AsyncCoupons:
from .resources.coupons import AsyncCoupons
return AsyncCoupons(self)
@cached_property
def credit_notes(self) -> AsyncCreditNotes:
from .resources.credit_notes import AsyncCreditNotes
return AsyncCreditNotes(self)
@cached_property
def customers(self) -> AsyncCustomers:
from .resources.customers import AsyncCustomers
return AsyncCustomers(self)
@cached_property
def events(self) -> AsyncEvents:
from .resources.events import AsyncEvents
return AsyncEvents(self)
@cached_property
def invoice_line_items(self) -> AsyncInvoiceLineItems:
from .resources.invoice_line_items import AsyncInvoiceLineItems
return AsyncInvoiceLineItems(self)
@cached_property
def invoices(self) -> AsyncInvoices:
from .resources.invoices import AsyncInvoices
return AsyncInvoices(self)
@cached_property
def items(self) -> AsyncItems:
from .resources.items import AsyncItems
return AsyncItems(self)
@cached_property
def metrics(self) -> AsyncMetrics:
from .resources.metrics import AsyncMetrics
return AsyncMetrics(self)
@cached_property
def plans(self) -> AsyncPlans:
from .resources.plans import AsyncPlans
return AsyncPlans(self)
@cached_property
def prices(self) -> AsyncPrices:
from .resources.prices import AsyncPrices
return AsyncPrices(self)
@cached_property
def subscriptions(self) -> AsyncSubscriptions:
from .resources.subscriptions import AsyncSubscriptions
return AsyncSubscriptions(self)
@cached_property
def alerts(self) -> AsyncAlerts:
from .resources.alerts import AsyncAlerts
return AsyncAlerts(self)
@cached_property
def dimensional_price_groups(self) -> AsyncDimensionalPriceGroups:
from .resources.dimensional_price_groups import AsyncDimensionalPriceGroups
return AsyncDimensionalPriceGroups(self)
@cached_property
def subscription_changes(self) -> AsyncSubscriptionChanges:
from .resources.subscription_changes import AsyncSubscriptionChanges
return AsyncSubscriptionChanges(self)
@cached_property
def webhooks(self) -> webhooks.AsyncWebhooks:
from .resources.webhooks import AsyncWebhooks
return AsyncWebhooks(self)
@cached_property
def credit_blocks(self) -> AsyncCreditBlocks:
from .resources.credit_blocks import AsyncCreditBlocks
return AsyncCreditBlocks(self)
@cached_property
def license_types(self) -> AsyncLicenseTypes:
from .resources.license_types import AsyncLicenseTypes
return AsyncLicenseTypes(self)
@cached_property
def licenses(self) -> AsyncLicenses:
from .resources.licenses import AsyncLicenses
return AsyncLicenses(self)
@cached_property
def with_raw_response(self) -> AsyncOrbWithRawResponse:
return AsyncOrbWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> AsyncOrbWithStreamedResponse:
return AsyncOrbWithStreamedResponse(self)
@property
@override
def qs(self) -> Querystring:
return Querystring(array_format="brackets")
@property
@override
def auth_headers(self) -> dict[str, str]:
api_key = self.api_key
return {"Authorization": f"Bearer {api_key}"}
@property
@override
def default_headers(self) -> dict[str, str | Omit]:
return {
**super().default_headers,
"X-Stainless-Async": f"async:{get_async_library()}",
**self._custom_headers,
}
def copy(
self,
*,
api_key: str | None = None,
webhook_secret: str | None = None,
base_url: str | httpx.URL | None = None,
timeout: float | Timeout | None | NotGiven = not_given,
http_client: httpx.AsyncClient | None = None,
max_retries: int | NotGiven = not_given,
default_headers: Mapping[str, str] | None = None,
set_default_headers: Mapping[str, str] | None = None,
default_query: Mapping[str, object] | None = None,
set_default_query: Mapping[str, object] | None = None,
_extra_kwargs: Mapping[str, Any] = {},
) -> Self:
"""
Create a new client instance re-using the same options given to the current client with optional overriding.
"""
if default_headers is not None and set_default_headers is not None:
raise ValueError("The `default_headers` and `set_default_headers` arguments are mutually exclusive")
if default_query is not None and set_default_query is not None:
raise ValueError("The `default_query` and `set_default_query` arguments are mutually exclusive")
headers = self._custom_headers
if default_headers is not None:
headers = {**headers, **default_headers}
elif set_default_headers is not None:
headers = set_default_headers
params = self._custom_query
if default_query is not None:
params = {**params, **default_query}
elif set_default_query is not None:
params = set_default_query
http_client = http_client or self._client
return self.__class__(
api_key=api_key or self.api_key,
webhook_secret=webhook_secret or self.webhook_secret,
base_url=base_url or self.base_url,
timeout=self.timeout if isinstance(timeout, NotGiven) else timeout,
http_client=http_client,
max_retries=max_retries if is_given(max_retries) else self.max_retries,
default_headers=headers,
default_query=params,
**_extra_kwargs,
)
# Alias for `copy` for nicer inline usage, e.g.
# client.with_options(timeout=10).foo.create(...)
with_options = copy
@override
def _make_status_error(
self,
err_msg: str,
*,
body: object,
response: httpx.Response,
) -> APIStatusError:
type_ = body.get("type") if is_mapping(body) else None
if type_ == "https://docs.withorb.com/reference/error-responses#400-constraint-violation":
return _exceptions.ConstraintViolation(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#400-duplicate-resource-creation":
return _exceptions.DuplicateResourceCreation(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#404-feature-not-available":
return _exceptions.FeatureNotAvailable(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#400-request-validation-errors":
return _exceptions.RequestValidationError(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#401-authentication-error":
return _exceptions.OrbAuthenticationError(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#404-resource-not-found":
return _exceptions.ResourceNotFound(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#404-url-not-found":
return _exceptions.URLNotFound(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#409-resource-conflict":
return _exceptions.ResourceConflict(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#413-request-too-large":
return _exceptions.RequestTooLarge(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#413-resource-too-large":
return _exceptions.ResourceTooLarge(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#429-too-many-requests":
return _exceptions.TooManyRequests(err_msg, response=response, body=body)
if type_ == "https://docs.withorb.com/reference/error-responses#500-internal-server-error":
return _exceptions.OrbInternalServerError(err_msg, response=response, body=body)
if response.status_code >= 500:
return _exceptions.OrbInternalServerError(
err_msg,
response=response,
body={
"status": 500,
"type": "https://docs.withorb.com/reference/error-responses#500-internal-server-error",
"detail": None,
"title": None,
},
)
if response.status_code == 400:
return _exceptions.BadRequestError(err_msg, response=response, body=body)
if response.status_code == 401:
return _exceptions.AuthenticationError(err_msg, response=response, body=body)
if response.status_code == 403:
return _exceptions.PermissionDeniedError(err_msg, response=response, body=body)
if response.status_code == 404:
return _exceptions.NotFoundError(err_msg, response=response, body=body)
if response.status_code == 409:
return _exceptions.ConflictError(err_msg, response=response, body=body)
if response.status_code == 422:
return _exceptions.UnprocessableEntityError(err_msg, response=response, body=body)
if response.status_code == 429:
return _exceptions.RateLimitError(err_msg, response=response, body=body)
if response.status_code >= 500:
return _exceptions.InternalServerError(err_msg, response=response, body=body)
return APIStatusError(err_msg, response=response, body=body)
class OrbWithRawResponse:
_client: Orb
def __init__(self, client: Orb) -> None:
self._client = client
@cached_property
def top_level(self) -> top_level.TopLevelWithRawResponse:
from .resources.top_level import TopLevelWithRawResponse
return TopLevelWithRawResponse(self._client.top_level)
@cached_property
def beta(self) -> beta.BetaWithRawResponse:
from .resources.beta import BetaWithRawResponse
return BetaWithRawResponse(self._client.beta)
@cached_property
def coupons(self) -> coupons.CouponsWithRawResponse:
from .resources.coupons import CouponsWithRawResponse
return CouponsWithRawResponse(self._client.coupons)
@cached_property
def credit_notes(self) -> credit_notes.CreditNotesWithRawResponse:
from .resources.credit_notes import CreditNotesWithRawResponse
return CreditNotesWithRawResponse(self._client.credit_notes)
@cached_property
def customers(self) -> customers.CustomersWithRawResponse:
from .resources.customers import CustomersWithRawResponse
return CustomersWithRawResponse(self._client.customers)
@cached_property
def events(self) -> events.EventsWithRawResponse:
from .resources.events import EventsWithRawResponse
return EventsWithRawResponse(self._client.events)
@cached_property
def invoice_line_items(self) -> invoice_line_items.InvoiceLineItemsWithRawResponse:
from .resources.invoice_line_items import InvoiceLineItemsWithRawResponse
return InvoiceLineItemsWithRawResponse(self._client.invoice_line_items)
@cached_property
def invoices(self) -> invoices.InvoicesWithRawResponse:
from .resources.invoices import InvoicesWithRawResponse
return InvoicesWithRawResponse(self._client.invoices)
@cached_property
def items(self) -> items.ItemsWithRawResponse:
from .resources.items import ItemsWithRawResponse
return ItemsWithRawResponse(self._client.items)
@cached_property
def metrics(self) -> metrics.MetricsWithRawResponse:
from .resources.metrics import MetricsWithRawResponse
return MetricsWithRawResponse(self._client.metrics)
@cached_property
def plans(self) -> plans.PlansWithRawResponse:
from .resources.plans import PlansWithRawResponse
return PlansWithRawResponse(self._client.plans)
@cached_property
def prices(self) -> prices.PricesWithRawResponse:
from .resources.prices import PricesWithRawResponse
return PricesWithRawResponse(self._client.prices)
@cached_property
def subscriptions(self) -> subscriptions.SubscriptionsWithRawResponse:
from .resources.subscriptions import SubscriptionsWithRawResponse
return SubscriptionsWithRawResponse(self._client.subscriptions)
@cached_property
def alerts(self) -> alerts.AlertsWithRawResponse:
from .resources.alerts import AlertsWithRawResponse
return AlertsWithRawResponse(self._client.alerts)
@cached_property
def dimensional_price_groups(self) -> dimensional_price_groups.DimensionalPriceGroupsWithRawResponse:
from .resources.dimensional_price_groups import DimensionalPriceGroupsWithRawResponse
return DimensionalPriceGroupsWithRawResponse(self._client.dimensional_price_groups)
@cached_property
def subscription_changes(self) -> subscription_changes.SubscriptionChangesWithRawResponse:
from .resources.subscription_changes import SubscriptionChangesWithRawResponse
return SubscriptionChangesWithRawResponse(self._client.subscription_changes)
@cached_property
def credit_blocks(self) -> credit_blocks.CreditBlocksWithRawResponse:
from .resources.credit_blocks import CreditBlocksWithRawResponse
return CreditBlocksWithRawResponse(self._client.credit_blocks)
@cached_property
def license_types(self) -> license_types.LicenseTypesWithRawResponse:
from .resources.license_types import LicenseTypesWithRawResponse
return LicenseTypesWithRawResponse(self._client.license_types)
@cached_property
def licenses(self) -> licenses.LicensesWithRawResponse:
from .resources.licenses import LicensesWithRawResponse
return LicensesWithRawResponse(self._client.licenses)
class AsyncOrbWithRawResponse:
_client: AsyncOrb
def __init__(self, client: AsyncOrb) -> None:
self._client = client
@cached_property
def top_level(self) -> top_level.AsyncTopLevelWithRawResponse:
from .resources.top_level import AsyncTopLevelWithRawResponse
return AsyncTopLevelWithRawResponse(self._client.top_level)
@cached_property
def beta(self) -> beta.AsyncBetaWithRawResponse:
from .resources.beta import AsyncBetaWithRawResponse
return AsyncBetaWithRawResponse(self._client.beta)
@cached_property
def coupons(self) -> coupons.AsyncCouponsWithRawResponse:
from .resources.coupons import AsyncCouponsWithRawResponse
return AsyncCouponsWithRawResponse(self._client.coupons)
@cached_property
def credit_notes(self) -> credit_notes.AsyncCreditNotesWithRawResponse:
from .resources.credit_notes import AsyncCreditNotesWithRawResponse
return AsyncCreditNotesWithRawResponse(self._client.credit_notes)
@cached_property
def customers(self) -> customers.AsyncCustomersWithRawResponse:
from .resources.customers import AsyncCustomersWithRawResponse
return AsyncCustomersWithRawResponse(self._client.customers)
@cached_property
def events(self) -> events.AsyncEventsWithRawResponse:
from .resources.events import AsyncEventsWithRawResponse
return AsyncEventsWithRawResponse(self._client.events)
@cached_property
def invoice_line_items(self) -> invoice_line_items.AsyncInvoiceLineItemsWithRawResponse:
from .resources.invoice_line_items import AsyncInvoiceLineItemsWithRawResponse
return AsyncInvoiceLineItemsWithRawResponse(self._client.invoice_line_items)
@cached_property
def invoices(self) -> invoices.AsyncInvoicesWithRawResponse:
from .resources.invoices import AsyncInvoicesWithRawResponse
return AsyncInvoicesWithRawResponse(self._client.invoices)
@cached_property
def items(self) -> items.AsyncItemsWithRawResponse:
from .resources.items import AsyncItemsWithRawResponse
return AsyncItemsWithRawResponse(self._client.items)
@cached_property
def metrics(self) -> metrics.AsyncMetricsWithRawResponse:
from .resources.metrics import AsyncMetricsWithRawResponse
return AsyncMetricsWithRawResponse(self._client.metrics)
@cached_property
def plans(self) -> plans.AsyncPlansWithRawResponse:
from .resources.plans import AsyncPlansWithRawResponse
return AsyncPlansWithRawResponse(self._client.plans)
@cached_property
def prices(self) -> prices.AsyncPricesWithRawResponse:
from .resources.prices import AsyncPricesWithRawResponse
return AsyncPricesWithRawResponse(self._client.prices)
@cached_property
def subscriptions(self) -> subscriptions.AsyncSubscriptionsWithRawResponse:
from .resources.subscriptions import AsyncSubscriptionsWithRawResponse
return AsyncSubscriptionsWithRawResponse(self._client.subscriptions)
@cached_property
def alerts(self) -> alerts.AsyncAlertsWithRawResponse:
from .resources.alerts import AsyncAlertsWithRawResponse
return AsyncAlertsWithRawResponse(self._client.alerts)
@cached_property
def dimensional_price_groups(self) -> dimensional_price_groups.AsyncDimensionalPriceGroupsWithRawResponse:
from .resources.dimensional_price_groups import AsyncDimensionalPriceGroupsWithRawResponse
return AsyncDimensionalPriceGroupsWithRawResponse(self._client.dimensional_price_groups)
@cached_property
def subscription_changes(self) -> subscription_changes.AsyncSubscriptionChangesWithRawResponse: