@@ -50,7 +50,7 @@ class Cloudflare(SyncAPIClient):
50
50
certificates : resources .Certificates
51
51
ips : resources .IPs
52
52
memberships : resources .Memberships
53
- user : resources .User
53
+ user : resources .UserResource
54
54
zones : resources .Zones
55
55
load_balancers : resources .LoadBalancers
56
56
cache : resources .Cache
@@ -67,7 +67,7 @@ class Cloudflare(SyncAPIClient):
67
67
custom_nameservers : resources .CustomNameservers
68
68
dns : resources .DNS
69
69
dnssec : resources .DNSSEC
70
- emails : resources .Emails
70
+ email_routing : resources .EmailRouting
71
71
filters : resources .Filters
72
72
firewall : resources .Firewall
73
73
healthchecks : resources .Healthchecks
@@ -107,7 +107,6 @@ class Cloudflare(SyncAPIClient):
107
107
storage : resources .Storage
108
108
stream : resources .Stream
109
109
alerting : resources .Alerting
110
- devices : resources .Devices
111
110
d1 : resources .D1
112
111
r2 : resources .R2
113
112
warp_connector : resources .WARPConnector
@@ -220,7 +219,7 @@ def __init__(
220
219
self .certificates = resources .Certificates (self )
221
220
self .ips = resources .IPs (self )
222
221
self .memberships = resources .Memberships (self )
223
- self .user = resources .User (self )
222
+ self .user = resources .UserResource (self )
224
223
self .zones = resources .Zones (self )
225
224
self .load_balancers = resources .LoadBalancers (self )
226
225
self .cache = resources .Cache (self )
@@ -237,7 +236,7 @@ def __init__(
237
236
self .custom_nameservers = resources .CustomNameservers (self )
238
237
self .dns = resources .DNS (self )
239
238
self .dnssec = resources .DNSSEC (self )
240
- self .emails = resources .Emails (self )
239
+ self .email_routing = resources .EmailRouting (self )
241
240
self .filters = resources .Filters (self )
242
241
self .firewall = resources .Firewall (self )
243
242
self .healthchecks = resources .Healthchecks (self )
@@ -277,7 +276,6 @@ def __init__(
277
276
self .storage = resources .Storage (self )
278
277
self .stream = resources .Stream (self )
279
278
self .alerting = resources .Alerting (self )
280
- self .devices = resources .Devices (self )
281
279
self .d1 = resources .D1 (self )
282
280
self .r2 = resources .R2 (self )
283
281
self .warp_connector = resources .WARPConnector (self )
@@ -444,7 +442,7 @@ class AsyncCloudflare(AsyncAPIClient):
444
442
certificates : resources .AsyncCertificates
445
443
ips : resources .AsyncIPs
446
444
memberships : resources .AsyncMemberships
447
- user : resources .AsyncUser
445
+ user : resources .AsyncUserResource
448
446
zones : resources .AsyncZones
449
447
load_balancers : resources .AsyncLoadBalancers
450
448
cache : resources .AsyncCache
@@ -461,7 +459,7 @@ class AsyncCloudflare(AsyncAPIClient):
461
459
custom_nameservers : resources .AsyncCustomNameservers
462
460
dns : resources .AsyncDNS
463
461
dnssec : resources .AsyncDNSSEC
464
- emails : resources .AsyncEmails
462
+ email_routing : resources .AsyncEmailRouting
465
463
filters : resources .AsyncFilters
466
464
firewall : resources .AsyncFirewall
467
465
healthchecks : resources .AsyncHealthchecks
@@ -501,7 +499,6 @@ class AsyncCloudflare(AsyncAPIClient):
501
499
storage : resources .AsyncStorage
502
500
stream : resources .AsyncStream
503
501
alerting : resources .AsyncAlerting
504
- devices : resources .AsyncDevices
505
502
d1 : resources .AsyncD1
506
503
r2 : resources .AsyncR2
507
504
warp_connector : resources .AsyncWARPConnector
@@ -614,7 +611,7 @@ def __init__(
614
611
self .certificates = resources .AsyncCertificates (self )
615
612
self .ips = resources .AsyncIPs (self )
616
613
self .memberships = resources .AsyncMemberships (self )
617
- self .user = resources .AsyncUser (self )
614
+ self .user = resources .AsyncUserResource (self )
618
615
self .zones = resources .AsyncZones (self )
619
616
self .load_balancers = resources .AsyncLoadBalancers (self )
620
617
self .cache = resources .AsyncCache (self )
@@ -631,7 +628,7 @@ def __init__(
631
628
self .custom_nameservers = resources .AsyncCustomNameservers (self )
632
629
self .dns = resources .AsyncDNS (self )
633
630
self .dnssec = resources .AsyncDNSSEC (self )
634
- self .emails = resources .AsyncEmails (self )
631
+ self .email_routing = resources .AsyncEmailRouting (self )
635
632
self .filters = resources .AsyncFilters (self )
636
633
self .firewall = resources .AsyncFirewall (self )
637
634
self .healthchecks = resources .AsyncHealthchecks (self )
@@ -671,7 +668,6 @@ def __init__(
671
668
self .storage = resources .AsyncStorage (self )
672
669
self .stream = resources .AsyncStream (self )
673
670
self .alerting = resources .AsyncAlerting (self )
674
- self .devices = resources .AsyncDevices (self )
675
671
self .d1 = resources .AsyncD1 (self )
676
672
self .r2 = resources .AsyncR2 (self )
677
673
self .warp_connector = resources .AsyncWARPConnector (self )
@@ -839,7 +835,7 @@ def __init__(self, client: Cloudflare) -> None:
839
835
self .certificates = resources .CertificatesWithRawResponse (client .certificates )
840
836
self .ips = resources .IPsWithRawResponse (client .ips )
841
837
self .memberships = resources .MembershipsWithRawResponse (client .memberships )
842
- self .user = resources .UserWithRawResponse (client .user )
838
+ self .user = resources .UserResourceWithRawResponse (client .user )
843
839
self .zones = resources .ZonesWithRawResponse (client .zones )
844
840
self .load_balancers = resources .LoadBalancersWithRawResponse (client .load_balancers )
845
841
self .cache = resources .CacheWithRawResponse (client .cache )
@@ -856,7 +852,7 @@ def __init__(self, client: Cloudflare) -> None:
856
852
self .custom_nameservers = resources .CustomNameserversWithRawResponse (client .custom_nameservers )
857
853
self .dns = resources .DNSWithRawResponse (client .dns )
858
854
self .dnssec = resources .DNSSECWithRawResponse (client .dnssec )
859
- self .emails = resources .EmailsWithRawResponse (client .emails )
855
+ self .email_routing = resources .EmailRoutingWithRawResponse (client .email_routing )
860
856
self .filters = resources .FiltersWithRawResponse (client .filters )
861
857
self .firewall = resources .FirewallWithRawResponse (client .firewall )
862
858
self .healthchecks = resources .HealthchecksWithRawResponse (client .healthchecks )
@@ -896,7 +892,6 @@ def __init__(self, client: Cloudflare) -> None:
896
892
self .storage = resources .StorageWithRawResponse (client .storage )
897
893
self .stream = resources .StreamWithRawResponse (client .stream )
898
894
self .alerting = resources .AlertingWithRawResponse (client .alerting )
899
- self .devices = resources .DevicesWithRawResponse (client .devices )
900
895
self .d1 = resources .D1WithRawResponse (client .d1 )
901
896
self .r2 = resources .R2WithRawResponse (client .r2 )
902
897
self .warp_connector = resources .WARPConnectorWithRawResponse (client .warp_connector )
@@ -926,7 +921,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
926
921
self .certificates = resources .AsyncCertificatesWithRawResponse (client .certificates )
927
922
self .ips = resources .AsyncIPsWithRawResponse (client .ips )
928
923
self .memberships = resources .AsyncMembershipsWithRawResponse (client .memberships )
929
- self .user = resources .AsyncUserWithRawResponse (client .user )
924
+ self .user = resources .AsyncUserResourceWithRawResponse (client .user )
930
925
self .zones = resources .AsyncZonesWithRawResponse (client .zones )
931
926
self .load_balancers = resources .AsyncLoadBalancersWithRawResponse (client .load_balancers )
932
927
self .cache = resources .AsyncCacheWithRawResponse (client .cache )
@@ -945,7 +940,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
945
940
self .custom_nameservers = resources .AsyncCustomNameserversWithRawResponse (client .custom_nameservers )
946
941
self .dns = resources .AsyncDNSWithRawResponse (client .dns )
947
942
self .dnssec = resources .AsyncDNSSECWithRawResponse (client .dnssec )
948
- self .emails = resources .AsyncEmailsWithRawResponse (client .emails )
943
+ self .email_routing = resources .AsyncEmailRoutingWithRawResponse (client .email_routing )
949
944
self .filters = resources .AsyncFiltersWithRawResponse (client .filters )
950
945
self .firewall = resources .AsyncFirewallWithRawResponse (client .firewall )
951
946
self .healthchecks = resources .AsyncHealthchecksWithRawResponse (client .healthchecks )
@@ -987,7 +982,6 @@ def __init__(self, client: AsyncCloudflare) -> None:
987
982
self .storage = resources .AsyncStorageWithRawResponse (client .storage )
988
983
self .stream = resources .AsyncStreamWithRawResponse (client .stream )
989
984
self .alerting = resources .AsyncAlertingWithRawResponse (client .alerting )
990
- self .devices = resources .AsyncDevicesWithRawResponse (client .devices )
991
985
self .d1 = resources .AsyncD1WithRawResponse (client .d1 )
992
986
self .r2 = resources .AsyncR2WithRawResponse (client .r2 )
993
987
self .warp_connector = resources .AsyncWARPConnectorWithRawResponse (client .warp_connector )
@@ -1017,7 +1011,7 @@ def __init__(self, client: Cloudflare) -> None:
1017
1011
self .certificates = resources .CertificatesWithStreamingResponse (client .certificates )
1018
1012
self .ips = resources .IPsWithStreamingResponse (client .ips )
1019
1013
self .memberships = resources .MembershipsWithStreamingResponse (client .memberships )
1020
- self .user = resources .UserWithStreamingResponse (client .user )
1014
+ self .user = resources .UserResourceWithStreamingResponse (client .user )
1021
1015
self .zones = resources .ZonesWithStreamingResponse (client .zones )
1022
1016
self .load_balancers = resources .LoadBalancersWithStreamingResponse (client .load_balancers )
1023
1017
self .cache = resources .CacheWithStreamingResponse (client .cache )
@@ -1036,7 +1030,7 @@ def __init__(self, client: Cloudflare) -> None:
1036
1030
self .custom_nameservers = resources .CustomNameserversWithStreamingResponse (client .custom_nameservers )
1037
1031
self .dns = resources .DNSWithStreamingResponse (client .dns )
1038
1032
self .dnssec = resources .DNSSECWithStreamingResponse (client .dnssec )
1039
- self .emails = resources .EmailsWithStreamingResponse (client .emails )
1033
+ self .email_routing = resources .EmailRoutingWithStreamingResponse (client .email_routing )
1040
1034
self .filters = resources .FiltersWithStreamingResponse (client .filters )
1041
1035
self .firewall = resources .FirewallWithStreamingResponse (client .firewall )
1042
1036
self .healthchecks = resources .HealthchecksWithStreamingResponse (client .healthchecks )
@@ -1078,7 +1072,6 @@ def __init__(self, client: Cloudflare) -> None:
1078
1072
self .storage = resources .StorageWithStreamingResponse (client .storage )
1079
1073
self .stream = resources .StreamWithStreamingResponse (client .stream )
1080
1074
self .alerting = resources .AlertingWithStreamingResponse (client .alerting )
1081
- self .devices = resources .DevicesWithStreamingResponse (client .devices )
1082
1075
self .d1 = resources .D1WithStreamingResponse (client .d1 )
1083
1076
self .r2 = resources .R2WithStreamingResponse (client .r2 )
1084
1077
self .warp_connector = resources .WARPConnectorWithStreamingResponse (client .warp_connector )
@@ -1108,7 +1101,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
1108
1101
self .certificates = resources .AsyncCertificatesWithStreamingResponse (client .certificates )
1109
1102
self .ips = resources .AsyncIPsWithStreamingResponse (client .ips )
1110
1103
self .memberships = resources .AsyncMembershipsWithStreamingResponse (client .memberships )
1111
- self .user = resources .AsyncUserWithStreamingResponse (client .user )
1104
+ self .user = resources .AsyncUserResourceWithStreamingResponse (client .user )
1112
1105
self .zones = resources .AsyncZonesWithStreamingResponse (client .zones )
1113
1106
self .load_balancers = resources .AsyncLoadBalancersWithStreamingResponse (client .load_balancers )
1114
1107
self .cache = resources .AsyncCacheWithStreamingResponse (client .cache )
@@ -1127,7 +1120,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
1127
1120
self .custom_nameservers = resources .AsyncCustomNameserversWithStreamingResponse (client .custom_nameservers )
1128
1121
self .dns = resources .AsyncDNSWithStreamingResponse (client .dns )
1129
1122
self .dnssec = resources .AsyncDNSSECWithStreamingResponse (client .dnssec )
1130
- self .emails = resources .AsyncEmailsWithStreamingResponse (client .emails )
1123
+ self .email_routing = resources .AsyncEmailRoutingWithStreamingResponse (client .email_routing )
1131
1124
self .filters = resources .AsyncFiltersWithStreamingResponse (client .filters )
1132
1125
self .firewall = resources .AsyncFirewallWithStreamingResponse (client .firewall )
1133
1126
self .healthchecks = resources .AsyncHealthchecksWithStreamingResponse (client .healthchecks )
@@ -1171,7 +1164,6 @@ def __init__(self, client: AsyncCloudflare) -> None:
1171
1164
self .storage = resources .AsyncStorageWithStreamingResponse (client .storage )
1172
1165
self .stream = resources .AsyncStreamWithStreamingResponse (client .stream )
1173
1166
self .alerting = resources .AsyncAlertingWithStreamingResponse (client .alerting )
1174
- self .devices = resources .AsyncDevicesWithStreamingResponse (client .devices )
1175
1167
self .d1 = resources .AsyncD1WithStreamingResponse (client .d1 )
1176
1168
self .r2 = resources .AsyncR2WithStreamingResponse (client .r2 )
1177
1169
self .warp_connector = resources .AsyncWARPConnectorWithStreamingResponse (client .warp_connector )
0 commit comments