|
88 | 88 | ai_security, |
89 | 89 | api_gateway, |
90 | 90 | botnet_feed, |
| 91 | + custom_csrs, |
91 | 92 | diagnostics, |
92 | 93 | memberships, |
93 | 94 | page_shield, |
|
198 | 199 | from .resources.ai_security.ai_security import AISecurityResource, AsyncAISecurityResource |
199 | 200 | from .resources.api_gateway.api_gateway import APIGatewayResource, AsyncAPIGatewayResource |
200 | 201 | from .resources.botnet_feed.botnet_feed import BotnetFeedResource, AsyncBotnetFeedResource |
| 202 | + from .resources.custom_csrs.custom_csrs import CustomCsrsResource, AsyncCustomCsrsResource |
201 | 203 | from .resources.diagnostics.diagnostics import DiagnosticsResource, AsyncDiagnosticsResource |
202 | 204 | from .resources.memberships.memberships import MembershipsResource, AsyncMembershipsResource |
203 | 205 | from .resources.page_shield.page_shield import PageShieldResource, AsyncPageShieldResource |
@@ -479,6 +481,12 @@ def custom_certificates(self) -> CustomCertificatesResource: |
479 | 481 |
|
480 | 482 | return CustomCertificatesResource(self) |
481 | 483 |
|
| 484 | + @cached_property |
| 485 | + def custom_csrs(self) -> CustomCsrsResource: |
| 486 | + from .resources.custom_csrs import CustomCsrsResource |
| 487 | + |
| 488 | + return CustomCsrsResource(self) |
| 489 | + |
482 | 490 | @cached_property |
483 | 491 | def custom_hostnames(self) -> CustomHostnamesResource: |
484 | 492 | from .resources.custom_hostnames import CustomHostnamesResource |
@@ -1387,6 +1395,12 @@ def custom_certificates(self) -> AsyncCustomCertificatesResource: |
1387 | 1395 |
|
1388 | 1396 | return AsyncCustomCertificatesResource(self) |
1389 | 1397 |
|
| 1398 | + @cached_property |
| 1399 | + def custom_csrs(self) -> AsyncCustomCsrsResource: |
| 1400 | + from .resources.custom_csrs import AsyncCustomCsrsResource |
| 1401 | + |
| 1402 | + return AsyncCustomCsrsResource(self) |
| 1403 | + |
1390 | 1404 | @cached_property |
1391 | 1405 | def custom_hostnames(self) -> AsyncCustomHostnamesResource: |
1392 | 1406 | from .resources.custom_hostnames import AsyncCustomHostnamesResource |
@@ -2223,6 +2237,12 @@ def custom_certificates(self) -> custom_certificates.CustomCertificatesResourceW |
2223 | 2237 |
|
2224 | 2238 | return CustomCertificatesResourceWithRawResponse(self._client.custom_certificates) |
2225 | 2239 |
|
| 2240 | + @cached_property |
| 2241 | + def custom_csrs(self) -> custom_csrs.CustomCsrsResourceWithRawResponse: |
| 2242 | + from .resources.custom_csrs import CustomCsrsResourceWithRawResponse |
| 2243 | + |
| 2244 | + return CustomCsrsResourceWithRawResponse(self._client.custom_csrs) |
| 2245 | + |
2226 | 2246 | @cached_property |
2227 | 2247 | def custom_hostnames(self) -> custom_hostnames.CustomHostnamesResourceWithRawResponse: |
2228 | 2248 | from .resources.custom_hostnames import CustomHostnamesResourceWithRawResponse |
@@ -2886,6 +2906,12 @@ def custom_certificates(self) -> custom_certificates.AsyncCustomCertificatesReso |
2886 | 2906 |
|
2887 | 2907 | return AsyncCustomCertificatesResourceWithRawResponse(self._client.custom_certificates) |
2888 | 2908 |
|
| 2909 | + @cached_property |
| 2910 | + def custom_csrs(self) -> custom_csrs.AsyncCustomCsrsResourceWithRawResponse: |
| 2911 | + from .resources.custom_csrs import AsyncCustomCsrsResourceWithRawResponse |
| 2912 | + |
| 2913 | + return AsyncCustomCsrsResourceWithRawResponse(self._client.custom_csrs) |
| 2914 | + |
2889 | 2915 | @cached_property |
2890 | 2916 | def custom_hostnames(self) -> custom_hostnames.AsyncCustomHostnamesResourceWithRawResponse: |
2891 | 2917 | from .resources.custom_hostnames import AsyncCustomHostnamesResourceWithRawResponse |
@@ -3549,6 +3575,12 @@ def custom_certificates(self) -> custom_certificates.CustomCertificatesResourceW |
3549 | 3575 |
|
3550 | 3576 | return CustomCertificatesResourceWithStreamingResponse(self._client.custom_certificates) |
3551 | 3577 |
|
| 3578 | + @cached_property |
| 3579 | + def custom_csrs(self) -> custom_csrs.CustomCsrsResourceWithStreamingResponse: |
| 3580 | + from .resources.custom_csrs import CustomCsrsResourceWithStreamingResponse |
| 3581 | + |
| 3582 | + return CustomCsrsResourceWithStreamingResponse(self._client.custom_csrs) |
| 3583 | + |
3552 | 3584 | @cached_property |
3553 | 3585 | def custom_hostnames(self) -> custom_hostnames.CustomHostnamesResourceWithStreamingResponse: |
3554 | 3586 | from .resources.custom_hostnames import CustomHostnamesResourceWithStreamingResponse |
@@ -4214,6 +4246,12 @@ def custom_certificates(self) -> custom_certificates.AsyncCustomCertificatesReso |
4214 | 4246 |
|
4215 | 4247 | return AsyncCustomCertificatesResourceWithStreamingResponse(self._client.custom_certificates) |
4216 | 4248 |
|
| 4249 | + @cached_property |
| 4250 | + def custom_csrs(self) -> custom_csrs.AsyncCustomCsrsResourceWithStreamingResponse: |
| 4251 | + from .resources.custom_csrs import AsyncCustomCsrsResourceWithStreamingResponse |
| 4252 | + |
| 4253 | + return AsyncCustomCsrsResourceWithStreamingResponse(self._client.custom_csrs) |
| 4254 | + |
4217 | 4255 | @cached_property |
4218 | 4256 | def custom_hostnames(self) -> custom_hostnames.AsyncCustomHostnamesResourceWithStreamingResponse: |
4219 | 4257 | from .resources.custom_hostnames import AsyncCustomHostnamesResourceWithStreamingResponse |
|
0 commit comments