@@ -128,6 +128,7 @@ class Cloudflare(SyncAPIClient):
128
128
calls : resources .CallsResource
129
129
cloudforce_one : resources .CloudforceOneResource
130
130
event_notifications : resources .EventNotificationsResource
131
+ ai_gateway : resources .AIGatewayResource
131
132
with_raw_response : CloudflareWithRawResponse
132
133
with_streaming_response : CloudflareWithStreamedResponse
133
134
@@ -284,6 +285,7 @@ def __init__(
284
285
self .calls = resources .CallsResource (self )
285
286
self .cloudforce_one = resources .CloudforceOneResource (self )
286
287
self .event_notifications = resources .EventNotificationsResource (self )
288
+ self .ai_gateway = resources .AIGatewayResource (self )
287
289
self .with_raw_response = CloudflareWithRawResponse (self )
288
290
self .with_streaming_response = CloudflareWithStreamedResponse (self )
289
291
@@ -543,6 +545,7 @@ class AsyncCloudflare(AsyncAPIClient):
543
545
calls : resources .AsyncCallsResource
544
546
cloudforce_one : resources .AsyncCloudforceOneResource
545
547
event_notifications : resources .AsyncEventNotificationsResource
548
+ ai_gateway : resources .AsyncAIGatewayResource
546
549
with_raw_response : AsyncCloudflareWithRawResponse
547
550
with_streaming_response : AsyncCloudflareWithStreamedResponse
548
551
@@ -699,6 +702,7 @@ def __init__(
699
702
self .calls = resources .AsyncCallsResource (self )
700
703
self .cloudforce_one = resources .AsyncCloudforceOneResource (self )
701
704
self .event_notifications = resources .AsyncEventNotificationsResource (self )
705
+ self .ai_gateway = resources .AsyncAIGatewayResource (self )
702
706
self .with_raw_response = AsyncCloudflareWithRawResponse (self )
703
707
self .with_streaming_response = AsyncCloudflareWithStreamedResponse (self )
704
708
@@ -969,6 +973,7 @@ def __init__(self, client: Cloudflare) -> None:
969
973
self .calls = resources .CallsResourceWithRawResponse (client .calls )
970
974
self .cloudforce_one = resources .CloudforceOneResourceWithRawResponse (client .cloudforce_one )
971
975
self .event_notifications = resources .EventNotificationsResourceWithRawResponse (client .event_notifications )
976
+ self .ai_gateway = resources .AIGatewayResourceWithRawResponse (client .ai_gateway )
972
977
973
978
974
979
class AsyncCloudflareWithRawResponse :
@@ -1068,6 +1073,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
1068
1073
self .calls = resources .AsyncCallsResourceWithRawResponse (client .calls )
1069
1074
self .cloudforce_one = resources .AsyncCloudforceOneResourceWithRawResponse (client .cloudforce_one )
1070
1075
self .event_notifications = resources .AsyncEventNotificationsResourceWithRawResponse (client .event_notifications )
1076
+ self .ai_gateway = resources .AsyncAIGatewayResourceWithRawResponse (client .ai_gateway )
1071
1077
1072
1078
1073
1079
class CloudflareWithStreamedResponse :
@@ -1167,6 +1173,7 @@ def __init__(self, client: Cloudflare) -> None:
1167
1173
self .calls = resources .CallsResourceWithStreamingResponse (client .calls )
1168
1174
self .cloudforce_one = resources .CloudforceOneResourceWithStreamingResponse (client .cloudforce_one )
1169
1175
self .event_notifications = resources .EventNotificationsResourceWithStreamingResponse (client .event_notifications )
1176
+ self .ai_gateway = resources .AIGatewayResourceWithStreamingResponse (client .ai_gateway )
1170
1177
1171
1178
1172
1179
class AsyncCloudflareWithStreamedResponse :
@@ -1274,6 +1281,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
1274
1281
self .event_notifications = resources .AsyncEventNotificationsResourceWithStreamingResponse (
1275
1282
client .event_notifications
1276
1283
)
1284
+ self .ai_gateway = resources .AsyncAIGatewayResourceWithStreamingResponse (client .ai_gateway )
1277
1285
1278
1286
1279
1287
Client = Cloudflare
0 commit comments