@@ -127,6 +127,7 @@ class Cloudflare(SyncAPIClient):
127
127
snippets : resources .Snippets
128
128
calls : resources .Calls
129
129
cloudforce_one : resources .CloudforceOne
130
+ event_notifications : resources .EventNotifications
130
131
with_raw_response : CloudflareWithRawResponse
131
132
with_streaming_response : CloudflareWithStreamedResponse
132
133
@@ -282,6 +283,7 @@ def __init__(
282
283
self .snippets = resources .Snippets (self )
283
284
self .calls = resources .Calls (self )
284
285
self .cloudforce_one = resources .CloudforceOne (self )
286
+ self .event_notifications = resources .EventNotifications (self )
285
287
self .with_raw_response = CloudflareWithRawResponse (self )
286
288
self .with_streaming_response = CloudflareWithStreamedResponse (self )
287
289
@@ -540,6 +542,7 @@ class AsyncCloudflare(AsyncAPIClient):
540
542
snippets : resources .AsyncSnippets
541
543
calls : resources .AsyncCalls
542
544
cloudforce_one : resources .AsyncCloudforceOne
545
+ event_notifications : resources .AsyncEventNotifications
543
546
with_raw_response : AsyncCloudflareWithRawResponse
544
547
with_streaming_response : AsyncCloudflareWithStreamedResponse
545
548
@@ -695,6 +698,7 @@ def __init__(
695
698
self .snippets = resources .AsyncSnippets (self )
696
699
self .calls = resources .AsyncCalls (self )
697
700
self .cloudforce_one = resources .AsyncCloudforceOne (self )
701
+ self .event_notifications = resources .AsyncEventNotifications (self )
698
702
self .with_raw_response = AsyncCloudflareWithRawResponse (self )
699
703
self .with_streaming_response = AsyncCloudflareWithStreamedResponse (self )
700
704
@@ -956,6 +960,7 @@ def __init__(self, client: Cloudflare) -> None:
956
960
self .snippets = resources .SnippetsWithRawResponse (client .snippets )
957
961
self .calls = resources .CallsWithRawResponse (client .calls )
958
962
self .cloudforce_one = resources .CloudforceOneWithRawResponse (client .cloudforce_one )
963
+ self .event_notifications = resources .EventNotificationsWithRawResponse (client .event_notifications )
959
964
960
965
961
966
class AsyncCloudflareWithRawResponse :
@@ -1046,6 +1051,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
1046
1051
self .snippets = resources .AsyncSnippetsWithRawResponse (client .snippets )
1047
1052
self .calls = resources .AsyncCallsWithRawResponse (client .calls )
1048
1053
self .cloudforce_one = resources .AsyncCloudforceOneWithRawResponse (client .cloudforce_one )
1054
+ self .event_notifications = resources .AsyncEventNotificationsWithRawResponse (client .event_notifications )
1049
1055
1050
1056
1051
1057
class CloudflareWithStreamedResponse :
@@ -1136,6 +1142,7 @@ def __init__(self, client: Cloudflare) -> None:
1136
1142
self .snippets = resources .SnippetsWithStreamingResponse (client .snippets )
1137
1143
self .calls = resources .CallsWithStreamingResponse (client .calls )
1138
1144
self .cloudforce_one = resources .CloudforceOneWithStreamingResponse (client .cloudforce_one )
1145
+ self .event_notifications = resources .EventNotificationsWithStreamingResponse (client .event_notifications )
1139
1146
1140
1147
1141
1148
class AsyncCloudflareWithStreamedResponse :
@@ -1232,6 +1239,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
1232
1239
self .snippets = resources .AsyncSnippetsWithStreamingResponse (client .snippets )
1233
1240
self .calls = resources .AsyncCallsWithStreamingResponse (client .calls )
1234
1241
self .cloudforce_one = resources .AsyncCloudforceOneWithStreamingResponse (client .cloudforce_one )
1242
+ self .event_notifications = resources .AsyncEventNotificationsWithStreamingResponse (client .event_notifications )
1235
1243
1236
1244
1237
1245
Client = Cloudflare
0 commit comments