5
5
from typing import List , Union
6
6
from typing_extensions import Literal , Required , TypedDict
7
7
8
- __all__ = [
9
- "AppUpdateParams" ,
10
- "DNS" ,
11
- "OriginDNS" ,
12
- "EdgeIPs" ,
13
- "EdgeIPsSpectrumEdgeIPEyeballIPs" ,
14
- "EdgeIPsSpectrumEdgeIPCustomerOwnedIPs" ,
15
- ]
8
+ __all__ = ["AppUpdateParams" , "DNS" , "OriginDNS" , "EdgeIPs" , "EdgeIPsEyeballIPs" , "EdgeIPsCustomerOwnedIPs" ]
16
9
17
10
18
11
class AppUpdateParams (TypedDict , total = False ):
@@ -101,7 +94,7 @@ class OriginDNS(TypedDict, total=False):
101
94
"""
102
95
103
96
104
- class EdgeIPsSpectrumEdgeIPEyeballIPs (TypedDict , total = False ):
97
+ class EdgeIPsEyeballIPs (TypedDict , total = False ):
105
98
connectivity : Literal ["all" , "ipv4" , "ipv6" ]
106
99
"""The IP versions supported for inbound connections on Spectrum anycast IPs."""
107
100
@@ -113,7 +106,7 @@ class EdgeIPsSpectrumEdgeIPEyeballIPs(TypedDict, total=False):
113
106
"""
114
107
115
108
116
- class EdgeIPsSpectrumEdgeIPCustomerOwnedIPs (TypedDict , total = False ):
109
+ class EdgeIPsCustomerOwnedIPs (TypedDict , total = False ):
117
110
ips : List [str ]
118
111
"""
119
112
The array of customer owned IPs we broadcast via anycast for this hostname and
@@ -128,4 +121,4 @@ class EdgeIPsSpectrumEdgeIPCustomerOwnedIPs(TypedDict, total=False):
128
121
"""
129
122
130
123
131
- EdgeIPs = Union [EdgeIPsSpectrumEdgeIPEyeballIPs , EdgeIPsSpectrumEdgeIPCustomerOwnedIPs ]
124
+ EdgeIPs = Union [EdgeIPsEyeballIPs , EdgeIPsCustomerOwnedIPs ]
0 commit comments