@@ -91,6 +91,7 @@ class Cloudflare(SyncAPIClient):
91
91
url_normalization : resources .URLNormalization
92
92
spectrum : resources .Spectrum
93
93
addressing : resources .Addressing
94
+ audit_logs : resources .AuditLogs
94
95
billing : resources .Billing
95
96
brand_protection : resources .BrandProtection
96
97
diagnostics : resources .Diagnostics
@@ -243,6 +244,7 @@ def __init__(
243
244
self .url_normalization = resources .URLNormalization (self )
244
245
self .spectrum = resources .Spectrum (self )
245
246
self .addressing = resources .Addressing (self )
247
+ self .audit_logs = resources .AuditLogs (self )
246
248
self .billing = resources .Billing (self )
247
249
self .brand_protection = resources .BrandProtection (self )
248
250
self .diagnostics = resources .Diagnostics (self )
@@ -500,6 +502,7 @@ class AsyncCloudflare(AsyncAPIClient):
500
502
url_normalization : resources .AsyncURLNormalization
501
503
spectrum : resources .AsyncSpectrum
502
504
addressing : resources .AsyncAddressing
505
+ audit_logs : resources .AsyncAuditLogs
503
506
billing : resources .AsyncBilling
504
507
brand_protection : resources .AsyncBrandProtection
505
508
diagnostics : resources .AsyncDiagnostics
@@ -652,6 +655,7 @@ def __init__(
652
655
self .url_normalization = resources .AsyncURLNormalization (self )
653
656
self .spectrum = resources .AsyncSpectrum (self )
654
657
self .addressing = resources .AsyncAddressing (self )
658
+ self .audit_logs = resources .AsyncAuditLogs (self )
655
659
self .billing = resources .AsyncBilling (self )
656
660
self .brand_protection = resources .AsyncBrandProtection (self )
657
661
self .diagnostics = resources .AsyncDiagnostics (self )
@@ -910,6 +914,7 @@ def __init__(self, client: Cloudflare) -> None:
910
914
self .url_normalization = resources .URLNormalizationWithRawResponse (client .url_normalization )
911
915
self .spectrum = resources .SpectrumWithRawResponse (client .spectrum )
912
916
self .addressing = resources .AddressingWithRawResponse (client .addressing )
917
+ self .audit_logs = resources .AuditLogsWithRawResponse (client .audit_logs )
913
918
self .billing = resources .BillingWithRawResponse (client .billing )
914
919
self .brand_protection = resources .BrandProtectionWithRawResponse (client .brand_protection )
915
920
self .diagnostics = resources .DiagnosticsWithRawResponse (client .diagnostics )
@@ -997,6 +1002,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
997
1002
self .url_normalization = resources .AsyncURLNormalizationWithRawResponse (client .url_normalization )
998
1003
self .spectrum = resources .AsyncSpectrumWithRawResponse (client .spectrum )
999
1004
self .addressing = resources .AsyncAddressingWithRawResponse (client .addressing )
1005
+ self .audit_logs = resources .AsyncAuditLogsWithRawResponse (client .audit_logs )
1000
1006
self .billing = resources .AsyncBillingWithRawResponse (client .billing )
1001
1007
self .brand_protection = resources .AsyncBrandProtectionWithRawResponse (client .brand_protection )
1002
1008
self .diagnostics = resources .AsyncDiagnosticsWithRawResponse (client .diagnostics )
@@ -1086,6 +1092,7 @@ def __init__(self, client: Cloudflare) -> None:
1086
1092
self .url_normalization = resources .URLNormalizationWithStreamingResponse (client .url_normalization )
1087
1093
self .spectrum = resources .SpectrumWithStreamingResponse (client .spectrum )
1088
1094
self .addressing = resources .AddressingWithStreamingResponse (client .addressing )
1095
+ self .audit_logs = resources .AuditLogsWithStreamingResponse (client .audit_logs )
1089
1096
self .billing = resources .BillingWithStreamingResponse (client .billing )
1090
1097
self .brand_protection = resources .BrandProtectionWithStreamingResponse (client .brand_protection )
1091
1098
self .diagnostics = resources .DiagnosticsWithStreamingResponse (client .diagnostics )
@@ -1177,6 +1184,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
1177
1184
self .url_normalization = resources .AsyncURLNormalizationWithStreamingResponse (client .url_normalization )
1178
1185
self .spectrum = resources .AsyncSpectrumWithStreamingResponse (client .spectrum )
1179
1186
self .addressing = resources .AsyncAddressingWithStreamingResponse (client .addressing )
1187
+ self .audit_logs = resources .AsyncAuditLogsWithStreamingResponse (client .audit_logs )
1180
1188
self .billing = resources .AsyncBillingWithStreamingResponse (client .billing )
1181
1189
self .brand_protection = resources .AsyncBrandProtectionWithStreamingResponse (client .brand_protection )
1182
1190
self .diagnostics = resources .AsyncDiagnosticsWithStreamingResponse (client .diagnostics )
0 commit comments