File tree 7 files changed +12
-12
lines changed
src/cloudflare/types/firewall
7 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -1745,7 +1745,7 @@ from cloudflare.types.firewall import (
1745
1745
Lockdown,
1746
1746
LockdownCIDRConfiguration,
1747
1747
LockdownIPConfiguration,
1748
- URLs ,
1748
+ LockdownURL ,
1749
1749
LockdownDeleteResponse,
1750
1750
)
1751
1751
```
@@ -1830,8 +1830,8 @@ Types:
1830
1830
```python
1831
1831
from cloudflare.types.firewall.waf import (
1832
1832
Override,
1833
+ OverrideURL,
1833
1834
RewriteAction,
1834
- URLs,
1835
1835
WAFRule,
1836
1836
OverrideDeleteResponse,
1837
1837
)
Original file line number Diff line number Diff line change 2
2
3
3
from __future__ import annotations
4
4
5
- from .urls import URLs as URLs
6
5
from .lockdown import Lockdown as Lockdown
7
6
from .products import Products as Products
7
+ from .lockdown_url import LockdownURL as LockdownURL
8
8
from .configuration import Configuration as Configuration
9
9
from .firewall_rule import FirewallRule as FirewallRule
10
10
from .deleted_filter import DeletedFilter as DeletedFilter
Original file line number Diff line number Diff line change 3
3
from typing import List
4
4
from datetime import datetime
5
5
6
- from .urls import URLs
7
6
from ..._models import BaseModel
7
+ from .lockdown_url import LockdownURL
8
8
from .configuration import Configuration
9
9
10
10
__all__ = ["Lockdown" ]
@@ -33,7 +33,7 @@ class Lockdown(BaseModel):
33
33
paused : bool
34
34
"""When true, indicates that the rule is currently paused."""
35
35
36
- urls : List [URLs ]
36
+ urls : List [LockdownURL ]
37
37
"""The URLs to include in the rule definition.
38
38
39
39
You can use wildcards. Each entered URL will be escaped before use, which means
Original file line number Diff line number Diff line change 1
1
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
3
3
4
- __all__ = ["URLs " ]
4
+ __all__ = ["LockdownURL " ]
5
5
6
- URLs = str
6
+ LockdownURL = str
Original file line number Diff line number Diff line change 2
2
3
3
from __future__ import annotations
4
4
5
- from .urls import URLs as URLs
6
5
from .override import Override as Override
7
6
from .waf_rule import WAFRule as WAFRule
7
+ from .override_url import OverrideURL as OverrideURL
8
8
from .rewrite_action import RewriteAction as RewriteAction
9
9
from .package_list_params import PackageListParams as PackageListParams
10
10
from .override_list_params import OverrideListParams as OverrideListParams
Original file line number Diff line number Diff line change 2
2
3
3
from typing import Dict , List , Optional
4
4
5
- from .urls import URLs
6
5
from .waf_rule import WAFRule
7
6
from ...._models import BaseModel
7
+ from .override_url import OverrideURL
8
8
from .rewrite_action import RewriteAction
9
9
10
10
__all__ = ["Override" ]
@@ -51,7 +51,7 @@ class Override(BaseModel):
51
51
override, you must provide a `groups` object or a `rules` object.
52
52
"""
53
53
54
- urls : Optional [List [URLs ]] = None
54
+ urls : Optional [List [OverrideURL ]] = None
55
55
"""The URLs to include in the current WAF override.
56
56
57
57
You can use wildcards. Each entered URL will be escaped before use, which means
Original file line number Diff line number Diff line change 1
1
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
3
3
4
- __all__ = ["URLs " ]
4
+ __all__ = ["OverrideURL " ]
5
5
6
- URLs = str
6
+ OverrideURL = str
You can’t perform that action at this time.
0 commit comments