You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/cloudflare/types/zones/setting_edit_response.py
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,7 @@
63
63
"ZonesSchemasResponseBuffering",
64
64
"ZonesSchemasRocketLoader",
65
65
"ZonesSchemasAutomaticPlatformOptimization",
66
+
"ZonesSearchForAgents",
66
67
"ZonesSchemasSecurityLevel",
67
68
"ZonesSha1Support",
68
69
"ZonesSchemasSortQueryStringForCache",
@@ -616,6 +617,30 @@ class ZonesSchemasAutomaticPlatformOptimization(BaseModel):
616
617
"""last time this setting was modified."""
617
618
618
619
620
+
classZonesSearchForAgents(BaseModel):
621
+
"""
622
+
When enabled, Cloudflare provisions an AI Search instance for the zone
623
+
and exposes a /.well-known/ai-search endpoint that AI agents can query.
624
+
Markdown responses also receive an agent: YAML capability block advertising
625
+
the search endpoint.
626
+
"""
627
+
628
+
id: Literal["search_for_agents"]
629
+
"""ID of the zone setting."""
630
+
631
+
value: Literal["off", "on"]
632
+
"""Current value of the zone setting."""
633
+
634
+
editable: Optional[Literal[True, False]] =None
635
+
"""
636
+
Whether or not this setting can be modified for this zone (based on your
637
+
Cloudflare plan level).
638
+
"""
639
+
640
+
modified_on: Optional[datetime] =None
641
+
"""last time this setting was modified."""
642
+
643
+
619
644
classZonesSchemasSecurityLevel(BaseModel):
620
645
"""
621
646
Choose the appropriate security profile for your website, which will automatically adjust each of the security settings. If you choose to customize an individual security setting, the profile will become Custom. (https://support.cloudflare.com/hc/en-us/articles/200170056).
@@ -855,6 +880,7 @@ class ZonesSchemasWAF(BaseModel):
Copy file name to clipboardExpand all lines: src/cloudflare/types/zones/setting_get_response.py
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,7 @@
63
63
"ZonesSchemasResponseBuffering",
64
64
"ZonesSchemasRocketLoader",
65
65
"ZonesSchemasAutomaticPlatformOptimization",
66
+
"ZonesSearchForAgents",
66
67
"ZonesSchemasSecurityLevel",
67
68
"ZonesSha1Support",
68
69
"ZonesSchemasSortQueryStringForCache",
@@ -616,6 +617,30 @@ class ZonesSchemasAutomaticPlatformOptimization(BaseModel):
616
617
"""last time this setting was modified."""
617
618
618
619
620
+
classZonesSearchForAgents(BaseModel):
621
+
"""
622
+
When enabled, Cloudflare provisions an AI Search instance for the zone
623
+
and exposes a /.well-known/ai-search endpoint that AI agents can query.
624
+
Markdown responses also receive an agent: YAML capability block advertising
625
+
the search endpoint.
626
+
"""
627
+
628
+
id: Literal["search_for_agents"]
629
+
"""ID of the zone setting."""
630
+
631
+
value: Literal["off", "on"]
632
+
"""Current value of the zone setting."""
633
+
634
+
editable: Optional[Literal[True, False]] =None
635
+
"""
636
+
Whether or not this setting can be modified for this zone (based on your
637
+
Cloudflare plan level).
638
+
"""
639
+
640
+
modified_on: Optional[datetime] =None
641
+
"""last time this setting was modified."""
642
+
643
+
619
644
classZonesSchemasSecurityLevel(BaseModel):
620
645
"""
621
646
Choose the appropriate security profile for your website, which will automatically adjust each of the security settings. If you choose to customize an individual security setting, the profile will become Custom. (https://support.cloudflare.com/hc/en-us/articles/200170056).
@@ -855,6 +880,7 @@ class ZonesSchemasWAF(BaseModel):
0 commit comments