|
57 | 57 | "ActionMinify",
|
58 | 58 | "ActionPurgeByPageRule",
|
59 | 59 | "ActionResolveOverride",
|
60 |
| - "ActionResolveOverrideValue", |
61 | 60 | "ActionRespectStrongEtag",
|
62 | 61 | ]
|
63 | 62 |
|
@@ -219,6 +218,13 @@ class ActionCacheKeyFields(TypedDict, total=False):
|
219 | 218 |
|
220 | 219 | class ActionCacheOnCookie(TypedDict, total=False):
|
221 | 220 | id: Literal["cache_on_cookie"]
|
| 221 | + """ |
| 222 | + Apply the Cache Everything option (Cache Level setting) based on a regular |
| 223 | + expression match against a cookie name. |
| 224 | + """ |
| 225 | + |
| 226 | + value: str |
| 227 | + """The regular expression to use for matching cookie names in the request.""" |
222 | 228 |
|
223 | 229 |
|
224 | 230 | class ActionCacheTTLByStatus(TypedDict, total=False):
|
@@ -278,6 +284,13 @@ class ActionEdgeCacheTTL(TypedDict, total=False):
|
278 | 284 |
|
279 | 285 | class ActionExplicitCacheControl(TypedDict, total=False):
|
280 | 286 | id: Literal["explicit_cache_control"]
|
| 287 | + """ |
| 288 | + Origin Cache Control is enabled by default for Free, Pro, and Business domains |
| 289 | + and disabled by default for Enterprise domains. |
| 290 | + """ |
| 291 | + |
| 292 | + value: Literal["on", "off"] |
| 293 | + """The status of Origin Cache Control.""" |
281 | 294 |
|
282 | 295 |
|
283 | 296 | class ActionForwardingURLValue(TypedDict, total=False):
|
@@ -321,16 +334,12 @@ class ActionPurgeByPageRule(TypedDict, total=False):
|
321 | 334 | id: Literal["purge_by_page_rule"]
|
322 | 335 |
|
323 | 336 |
|
324 |
| -class ActionResolveOverrideValue(TypedDict, total=False): |
325 |
| - value: str |
326 |
| - """The origin address you want to override with.""" |
327 |
| - |
328 |
| - |
329 | 337 | class ActionResolveOverride(TypedDict, total=False):
|
330 | 338 | id: Literal["resolve_override"]
|
331 | 339 | """Change the origin address to the value specified in this setting."""
|
332 | 340 |
|
333 |
| - value: ActionResolveOverrideValue |
| 341 | + value: str |
| 342 | + """The origin address you want to override with.""" |
334 | 343 |
|
335 | 344 |
|
336 | 345 | class ActionRespectStrongEtag(TypedDict, total=False):
|
|
0 commit comments