@@ -131,6 +131,7 @@ class Cloudflare(SyncAPIClient):
131131 event_notifications : resources .EventNotificationsResource
132132 ai_gateway : resources .AIGatewayResource
133133 iam : resources .IAMResource
134+ cloud_connector : resources .CloudConnectorResource
134135 with_raw_response : CloudflareWithRawResponse
135136 with_streaming_response : CloudflareWithStreamedResponse
136137
@@ -290,6 +291,7 @@ def __init__(
290291 self .event_notifications = resources .EventNotificationsResource (self )
291292 self .ai_gateway = resources .AIGatewayResource (self )
292293 self .iam = resources .IAMResource (self )
294+ self .cloud_connector = resources .CloudConnectorResource (self )
293295 self .with_raw_response = CloudflareWithRawResponse (self )
294296 self .with_streaming_response = CloudflareWithStreamedResponse (self )
295297
@@ -552,6 +554,7 @@ class AsyncCloudflare(AsyncAPIClient):
552554 event_notifications : resources .AsyncEventNotificationsResource
553555 ai_gateway : resources .AsyncAIGatewayResource
554556 iam : resources .AsyncIAMResource
557+ cloud_connector : resources .AsyncCloudConnectorResource
555558 with_raw_response : AsyncCloudflareWithRawResponse
556559 with_streaming_response : AsyncCloudflareWithStreamedResponse
557560
@@ -711,6 +714,7 @@ def __init__(
711714 self .event_notifications = resources .AsyncEventNotificationsResource (self )
712715 self .ai_gateway = resources .AsyncAIGatewayResource (self )
713716 self .iam = resources .AsyncIAMResource (self )
717+ self .cloud_connector = resources .AsyncCloudConnectorResource (self )
714718 self .with_raw_response = AsyncCloudflareWithRawResponse (self )
715719 self .with_streaming_response = AsyncCloudflareWithStreamedResponse (self )
716720
@@ -984,6 +988,7 @@ def __init__(self, client: Cloudflare) -> None:
984988 self .event_notifications = resources .EventNotificationsResourceWithRawResponse (client .event_notifications )
985989 self .ai_gateway = resources .AIGatewayResourceWithRawResponse (client .ai_gateway )
986990 self .iam = resources .IAMResourceWithRawResponse (client .iam )
991+ self .cloud_connector = resources .CloudConnectorResourceWithRawResponse (client .cloud_connector )
987992
988993
989994class AsyncCloudflareWithRawResponse :
@@ -1086,6 +1091,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
10861091 self .event_notifications = resources .AsyncEventNotificationsResourceWithRawResponse (client .event_notifications )
10871092 self .ai_gateway = resources .AsyncAIGatewayResourceWithRawResponse (client .ai_gateway )
10881093 self .iam = resources .AsyncIAMResourceWithRawResponse (client .iam )
1094+ self .cloud_connector = resources .AsyncCloudConnectorResourceWithRawResponse (client .cloud_connector )
10891095
10901096
10911097class CloudflareWithStreamedResponse :
@@ -1188,6 +1194,7 @@ def __init__(self, client: Cloudflare) -> None:
11881194 self .event_notifications = resources .EventNotificationsResourceWithStreamingResponse (client .event_notifications )
11891195 self .ai_gateway = resources .AIGatewayResourceWithStreamingResponse (client .ai_gateway )
11901196 self .iam = resources .IAMResourceWithStreamingResponse (client .iam )
1197+ self .cloud_connector = resources .CloudConnectorResourceWithStreamingResponse (client .cloud_connector )
11911198
11921199
11931200class AsyncCloudflareWithStreamedResponse :
@@ -1298,6 +1305,7 @@ def __init__(self, client: AsyncCloudflare) -> None:
12981305 )
12991306 self .ai_gateway = resources .AsyncAIGatewayResourceWithStreamingResponse (client .ai_gateway )
13001307 self .iam = resources .AsyncIAMResourceWithStreamingResponse (client .iam )
1308+ self .cloud_connector = resources .AsyncCloudConnectorResourceWithStreamingResponse (client .cloud_connector )
13011309
13021310
13031311Client = Cloudflare
0 commit comments