|
32 | 32 | ACMWithStreamingResponse,
|
33 | 33 | AsyncACMWithStreamingResponse,
|
34 | 34 | )
|
35 |
| -from .dex import ( |
36 |
| - DEX, |
37 |
| - AsyncDEX, |
38 |
| - DEXWithRawResponse, |
39 |
| - AsyncDEXWithRawResponse, |
40 |
| - DEXWithStreamingResponse, |
41 |
| - AsyncDEXWithStreamingResponse, |
42 |
| -) |
43 |
| -from .dlp import ( |
44 |
| - DLP, |
45 |
| - AsyncDLP, |
46 |
| - DLPWithRawResponse, |
47 |
| - AsyncDLPWithRawResponse, |
48 |
| - DLPWithStreamingResponse, |
49 |
| - AsyncDLPWithStreamingResponse, |
50 |
| -) |
51 | 35 | from .dns import (
|
52 | 36 | DNS,
|
53 | 37 | AsyncDNS,
|
|
96 | 80 | LogsWithStreamingResponse,
|
97 | 81 | AsyncLogsWithStreamingResponse,
|
98 | 82 | )
|
99 |
| -from .mnms import ( |
100 |
| - MNMs, |
101 |
| - AsyncMNMs, |
102 |
| - MNMsWithRawResponse, |
103 |
| - AsyncMNMsWithRawResponse, |
104 |
| - MNMsWithStreamingResponse, |
105 |
| - AsyncMNMsWithStreamingResponse, |
106 |
| -) |
107 | 83 | from .user import (
|
108 | 84 | User,
|
109 | 85 | AsyncUser,
|
|
200 | 176 | ZonesWithStreamingResponse,
|
201 | 177 | AsyncZonesWithStreamingResponse,
|
202 | 178 | )
|
203 |
| -from .access import ( |
204 |
| - Access, |
205 |
| - AsyncAccess, |
206 |
| - AccessWithRawResponse, |
207 |
| - AsyncAccessWithRawResponse, |
208 |
| - AccessWithStreamingResponse, |
209 |
| - AsyncAccessWithStreamingResponse, |
210 |
| -) |
211 | 179 | from .dnssec import (
|
212 | 180 | DNSSEC,
|
213 | 181 | AsyncDNSSEC,
|
|
232 | 200 | ImagesWithStreamingResponse,
|
233 | 201 | AsyncImagesWithStreamingResponse,
|
234 | 202 | )
|
| 203 | +from .queues import ( |
| 204 | + Queues, |
| 205 | + AsyncQueues, |
| 206 | + QueuesWithRawResponse, |
| 207 | + AsyncQueuesWithRawResponse, |
| 208 | + QueuesWithStreamingResponse, |
| 209 | + AsyncQueuesWithStreamingResponse, |
| 210 | +) |
235 | 211 | from .stream import (
|
236 | 212 | Stream,
|
237 | 213 | AsyncStream,
|
|
280 | 256 | StorageWithStreamingResponse,
|
281 | 257 | AsyncStorageWithStreamingResponse,
|
282 | 258 | )
|
283 |
| -from .teamnet import ( |
284 |
| - Teamnet, |
285 |
| - AsyncTeamnet, |
286 |
| - TeamnetWithRawResponse, |
287 |
| - AsyncTeamnetWithRawResponse, |
288 |
| - TeamnetWithStreamingResponse, |
289 |
| - AsyncTeamnetWithStreamingResponse, |
290 |
| -) |
291 |
| -from .tunnels import ( |
292 |
| - Tunnels, |
293 |
| - AsyncTunnels, |
294 |
| - TunnelsWithRawResponse, |
295 |
| - AsyncTunnelsWithRawResponse, |
296 |
| - TunnelsWithStreamingResponse, |
297 |
| - AsyncTunnelsWithStreamingResponse, |
298 |
| -) |
299 | 259 | from .workers import (
|
300 | 260 | Workers,
|
301 | 261 | AsyncWorkers,
|
|
328 | 288 | FirewallWithStreamingResponse,
|
329 | 289 | AsyncFirewallWithStreamingResponse,
|
330 | 290 | )
|
331 |
| -from .gateways import ( |
332 |
| - Gateways, |
333 |
| - AsyncGateways, |
334 |
| - GatewaysWithRawResponse, |
335 |
| - AsyncGatewaysWithRawResponse, |
336 |
| - GatewaysWithStreamingResponse, |
337 |
| - AsyncGatewaysWithStreamingResponse, |
338 |
| -) |
339 | 291 | from .rulesets import (
|
340 | 292 | Rulesets,
|
341 | 293 | AsyncRulesets,
|
|
360 | 312 | SpectrumWithStreamingResponse,
|
361 | 313 | AsyncSpectrumWithStreamingResponse,
|
362 | 314 | )
|
363 |
| -from .addresses import ( |
364 |
| - Addresses, |
365 |
| - AsyncAddresses, |
366 |
| - AddressesWithRawResponse, |
367 |
| - AsyncAddressesWithRawResponse, |
368 |
| - AddressesWithStreamingResponse, |
369 |
| - AsyncAddressesWithStreamingResponse, |
370 |
| -) |
371 | 315 | from .hostnames import (
|
372 | 316 | Hostnames,
|
373 | 317 | AsyncHostnames,
|
|
400 | 344 | VectorizeWithStreamingResponse,
|
401 | 345 | AsyncVectorizeWithStreamingResponse,
|
402 | 346 | )
|
| 347 | +from .addressing import ( |
| 348 | + Addressing, |
| 349 | + AsyncAddressing, |
| 350 | + AddressingWithRawResponse, |
| 351 | + AsyncAddressingWithRawResponse, |
| 352 | + AddressingWithStreamingResponse, |
| 353 | + AsyncAddressingWithStreamingResponse, |
| 354 | +) |
403 | 355 | from .audit_logs import (
|
404 | 356 | AuditLogs,
|
405 | 357 | AsyncAuditLogs,
|
|
440 | 392 | DiagnosticsWithStreamingResponse,
|
441 | 393 | AsyncDiagnosticsWithStreamingResponse,
|
442 | 394 | )
|
443 |
| -from .dispatchers import ( |
444 |
| - Dispatchers, |
445 |
| - AsyncDispatchers, |
446 |
| - DispatchersWithRawResponse, |
447 |
| - AsyncDispatchersWithRawResponse, |
448 |
| - DispatchersWithStreamingResponse, |
449 |
| - AsyncDispatchersWithStreamingResponse, |
450 |
| -) |
451 | 395 | from .memberships import (
|
452 | 396 | Memberships,
|
453 | 397 | AsyncMemberships,
|
|
576 | 520 | AvailablePlansWithStreamingResponse,
|
577 | 521 | AsyncAvailablePlansWithStreamingResponse,
|
578 | 522 | )
|
| 523 | +from .durable_objects import ( |
| 524 | + DurableObjects, |
| 525 | + AsyncDurableObjects, |
| 526 | + DurableObjectsWithRawResponse, |
| 527 | + AsyncDurableObjectsWithRawResponse, |
| 528 | + DurableObjectsWithStreamingResponse, |
| 529 | + AsyncDurableObjectsWithStreamingResponse, |
| 530 | +) |
579 | 531 | from .managed_headers import (
|
580 | 532 | ManagedHeaders,
|
581 | 533 | AsyncManagedHeaders,
|
|
688 | 640 | CertificateAuthoritiesWithStreamingResponse,
|
689 | 641 | AsyncCertificateAuthoritiesWithStreamingResponse,
|
690 | 642 | )
|
| 643 | +from .magic_network_monitoring import ( |
| 644 | + MagicNetworkMonitoring, |
| 645 | + AsyncMagicNetworkMonitoring, |
| 646 | + MagicNetworkMonitoringWithRawResponse, |
| 647 | + AsyncMagicNetworkMonitoringWithRawResponse, |
| 648 | + MagicNetworkMonitoringWithStreamingResponse, |
| 649 | + AsyncMagicNetworkMonitoringWithStreamingResponse, |
| 650 | +) |
691 | 651 | from .origin_post_quantum_encryption import (
|
692 | 652 | OriginPostQuantumEncryption,
|
693 | 653 | AsyncOriginPostQuantumEncryption,
|
|
740 | 700 | "AsyncLoadBalancersWithRawResponse",
|
741 | 701 | "LoadBalancersWithStreamingResponse",
|
742 | 702 | "AsyncLoadBalancersWithStreamingResponse",
|
743 |
| - "Access", |
744 |
| - "AsyncAccess", |
745 |
| - "AccessWithRawResponse", |
746 |
| - "AsyncAccessWithRawResponse", |
747 |
| - "AccessWithStreamingResponse", |
748 |
| - "AsyncAccessWithStreamingResponse", |
749 | 703 | "Cache",
|
750 | 704 | "AsyncCache",
|
751 | 705 | "CacheWithRawResponse",
|
|
920 | 874 | "AsyncKVWithRawResponse",
|
921 | 875 | "KVWithStreamingResponse",
|
922 | 876 | "AsyncKVWithStreamingResponse",
|
| 877 | + "DurableObjects", |
| 878 | + "AsyncDurableObjects", |
| 879 | + "DurableObjectsWithRawResponse", |
| 880 | + "AsyncDurableObjectsWithRawResponse", |
| 881 | + "DurableObjectsWithStreamingResponse", |
| 882 | + "AsyncDurableObjectsWithStreamingResponse", |
| 883 | + "Queues", |
| 884 | + "AsyncQueues", |
| 885 | + "QueuesWithRawResponse", |
| 886 | + "AsyncQueuesWithRawResponse", |
| 887 | + "QueuesWithStreamingResponse", |
| 888 | + "AsyncQueuesWithStreamingResponse", |
923 | 889 | "ManagedHeaders",
|
924 | 890 | "AsyncManagedHeaders",
|
925 | 891 | "ManagedHeadersWithRawResponse",
|
|
950 | 916 | "AsyncSpectrumWithRawResponse",
|
951 | 917 | "SpectrumWithStreamingResponse",
|
952 | 918 | "AsyncSpectrumWithStreamingResponse",
|
953 |
| - "Addresses", |
954 |
| - "AsyncAddresses", |
955 |
| - "AddressesWithRawResponse", |
956 |
| - "AsyncAddressesWithRawResponse", |
957 |
| - "AddressesWithStreamingResponse", |
958 |
| - "AsyncAddressesWithStreamingResponse", |
| 919 | + "Addressing", |
| 920 | + "AsyncAddressing", |
| 921 | + "AddressingWithRawResponse", |
| 922 | + "AsyncAddressingWithRawResponse", |
| 923 | + "AddressingWithStreamingResponse", |
| 924 | + "AsyncAddressingWithStreamingResponse", |
959 | 925 | "AuditLogs",
|
960 | 926 | "AsyncAuditLogs",
|
961 | 927 | "AuditLogsWithRawResponse",
|
|
974 | 940 | "AsyncBrandProtectionWithRawResponse",
|
975 | 941 | "BrandProtectionWithStreamingResponse",
|
976 | 942 | "AsyncBrandProtectionWithStreamingResponse",
|
977 |
| - "Tunnels", |
978 |
| - "AsyncTunnels", |
979 |
| - "TunnelsWithRawResponse", |
980 |
| - "AsyncTunnelsWithRawResponse", |
981 |
| - "TunnelsWithStreamingResponse", |
982 |
| - "AsyncTunnelsWithStreamingResponse", |
983 | 943 | "Diagnostics",
|
984 | 944 | "AsyncDiagnostics",
|
985 | 945 | "DiagnosticsWithRawResponse",
|
986 | 946 | "AsyncDiagnosticsWithRawResponse",
|
987 | 947 | "DiagnosticsWithStreamingResponse",
|
988 | 948 | "AsyncDiagnosticsWithStreamingResponse",
|
989 |
| - "DLP", |
990 |
| - "AsyncDLP", |
991 |
| - "DLPWithRawResponse", |
992 |
| - "AsyncDLPWithRawResponse", |
993 |
| - "DLPWithStreamingResponse", |
994 |
| - "AsyncDLPWithStreamingResponse", |
995 | 949 | "Images",
|
996 | 950 | "AsyncImages",
|
997 | 951 | "ImagesWithRawResponse",
|
|
1010 | 964 | "AsyncMagicTransitWithRawResponse",
|
1011 | 965 | "MagicTransitWithStreamingResponse",
|
1012 | 966 | "AsyncMagicTransitWithStreamingResponse",
|
1013 |
| - "MNMs", |
1014 |
| - "AsyncMNMs", |
1015 |
| - "MNMsWithRawResponse", |
1016 |
| - "AsyncMNMsWithRawResponse", |
1017 |
| - "MNMsWithStreamingResponse", |
1018 |
| - "AsyncMNMsWithStreamingResponse", |
| 967 | + "MagicNetworkMonitoring", |
| 968 | + "AsyncMagicNetworkMonitoring", |
| 969 | + "MagicNetworkMonitoringWithRawResponse", |
| 970 | + "AsyncMagicNetworkMonitoringWithRawResponse", |
| 971 | + "MagicNetworkMonitoringWithStreamingResponse", |
| 972 | + "AsyncMagicNetworkMonitoringWithStreamingResponse", |
1019 | 973 | "MTLSCertificates",
|
1020 | 974 | "AsyncMTLSCertificates",
|
1021 | 975 | "MTLSCertificatesWithRawResponse",
|
|
1070 | 1024 | "AsyncStreamWithRawResponse",
|
1071 | 1025 | "StreamWithStreamingResponse",
|
1072 | 1026 | "AsyncStreamWithStreamingResponse",
|
1073 |
| - "Gateways", |
1074 |
| - "AsyncGateways", |
1075 |
| - "GatewaysWithRawResponse", |
1076 |
| - "AsyncGatewaysWithRawResponse", |
1077 |
| - "GatewaysWithStreamingResponse", |
1078 |
| - "AsyncGatewaysWithStreamingResponse", |
1079 | 1027 | "Alerting",
|
1080 | 1028 | "AsyncAlerting",
|
1081 | 1029 | "AlertingWithRawResponse",
|
|
1094 | 1042 | "AsyncD1WithRawResponse",
|
1095 | 1043 | "D1WithStreamingResponse",
|
1096 | 1044 | "AsyncD1WithStreamingResponse",
|
1097 |
| - "DEX", |
1098 |
| - "AsyncDEX", |
1099 |
| - "DEXWithRawResponse", |
1100 |
| - "AsyncDEXWithRawResponse", |
1101 |
| - "DEXWithStreamingResponse", |
1102 |
| - "AsyncDEXWithStreamingResponse", |
1103 | 1045 | "R2",
|
1104 | 1046 | "AsyncR2",
|
1105 | 1047 | "R2WithRawResponse",
|
1106 | 1048 | "AsyncR2WithRawResponse",
|
1107 | 1049 | "R2WithStreamingResponse",
|
1108 | 1050 | "AsyncR2WithStreamingResponse",
|
1109 |
| - "Teamnet", |
1110 |
| - "AsyncTeamnet", |
1111 |
| - "TeamnetWithRawResponse", |
1112 |
| - "AsyncTeamnetWithRawResponse", |
1113 |
| - "TeamnetWithStreamingResponse", |
1114 |
| - "AsyncTeamnetWithStreamingResponse", |
1115 | 1051 | "WARPConnector",
|
1116 | 1052 | "AsyncWARPConnector",
|
1117 | 1053 | "WARPConnectorWithRawResponse",
|
1118 | 1054 | "AsyncWARPConnectorWithRawResponse",
|
1119 | 1055 | "WARPConnectorWithStreamingResponse",
|
1120 | 1056 | "AsyncWARPConnectorWithStreamingResponse",
|
1121 |
| - "Dispatchers", |
1122 |
| - "AsyncDispatchers", |
1123 |
| - "DispatchersWithRawResponse", |
1124 |
| - "AsyncDispatchersWithRawResponse", |
1125 |
| - "DispatchersWithStreamingResponse", |
1126 |
| - "AsyncDispatchersWithStreamingResponse", |
1127 | 1057 | "WorkersForPlatforms",
|
1128 | 1058 | "AsyncWorkersForPlatforms",
|
1129 | 1059 | "WorkersForPlatformsWithRawResponse",
|
|
0 commit comments