@@ -128,6 +128,7 @@ class Cloudflare(SyncAPIClient):
128128 calls : resources .CallsResource
129129 cloudforce_one : resources .CloudforceOneResource
130130 event_notifications : resources .EventNotificationsResource
131+ ai_gateway : resources .AIGatewayResource
131132 with_raw_response : CloudflareWithRawResponse
132133 with_streaming_response : CloudflareWithStreamedResponse
133134
@@ -284,6 +285,7 @@ def __init__(
284285 self .calls = resources .CallsResource (self )
285286 self .cloudforce_one = resources .CloudforceOneResource (self )
286287 self .event_notifications = resources .EventNotificationsResource (self )
288+ self .ai_gateway = resources .AIGatewayResource (self )
287289 self .with_raw_response = CloudflareWithRawResponse (self )
288290 self .with_streaming_response = CloudflareWithStreamedResponse (self )
289291
@@ -543,6 +545,7 @@ class AsyncCloudflare(AsyncAPIClient):
543545 calls : resources .AsyncCallsResource
544546 cloudforce_one : resources .AsyncCloudforceOneResource
545547 event_notifications : resources .AsyncEventNotificationsResource
548+ ai_gateway : resources .AsyncAIGatewayResource
546549 with_raw_response : AsyncCloudflareWithRawResponse
547550 with_streaming_response : AsyncCloudflareWithStreamedResponse
548551
@@ -699,6 +702,7 @@ def __init__(
699702 self .calls = resources .AsyncCallsResource (self )
700703 self .cloudforce_one = resources .AsyncCloudforceOneResource (self )
701704 self .event_notifications = resources .AsyncEventNotificationsResource (self )
705+ self .ai_gateway = resources .AsyncAIGatewayResource (self )
702706 self .with_raw_response = AsyncCloudflareWithRawResponse (self )
703707 self .with_streaming_response = AsyncCloudflareWithStreamedResponse (self )
704708
@@ -969,6 +973,7 @@ def __init__(self, client: Cloudflare) -> None:
969973 self .calls = resources .CallsResourceWithRawResponse (client .calls )
970974 self .cloudforce_one = resources .CloudforceOneResourceWithRawResponse (client .cloudforce_one )
971975 self .event_notifications = resources .EventNotificationsResourceWithRawResponse (client .event_notifications )
976+ self .ai_gateway = resources .AIGatewayResourceWithRawResponse (client .ai_gateway )
972977
973978
974979class AsyncCloudflareWithRawResponse :
@@ -1068,6 +1073,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
10681073 self .calls = resources .AsyncCallsResourceWithRawResponse (client .calls )
10691074 self .cloudforce_one = resources .AsyncCloudforceOneResourceWithRawResponse (client .cloudforce_one )
10701075 self .event_notifications = resources .AsyncEventNotificationsResourceWithRawResponse (client .event_notifications )
1076+ self .ai_gateway = resources .AsyncAIGatewayResourceWithRawResponse (client .ai_gateway )
10711077
10721078
10731079class CloudflareWithStreamedResponse :
@@ -1167,6 +1173,7 @@ def __init__(self, client: Cloudflare) -> None:
11671173 self .calls = resources .CallsResourceWithStreamingResponse (client .calls )
11681174 self .cloudforce_one = resources .CloudforceOneResourceWithStreamingResponse (client .cloudforce_one )
11691175 self .event_notifications = resources .EventNotificationsResourceWithStreamingResponse (client .event_notifications )
1176+ self .ai_gateway = resources .AIGatewayResourceWithStreamingResponse (client .ai_gateway )
11701177
11711178
11721179class AsyncCloudflareWithStreamedResponse :
@@ -1274,6 +1281,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
12741281 self .event_notifications = resources .AsyncEventNotificationsResourceWithStreamingResponse (
12751282 client .event_notifications
12761283 )
1284+ self .ai_gateway = resources .AsyncAIGatewayResourceWithStreamingResponse (client .ai_gateway )
12771285
12781286
12791287Client = Cloudflare
0 commit comments