1111 AsyncSettingsResourceWithStreamingResponse ,
1212)
1313from ..._compat import cached_property
14- from .phishguard import (
15- PhishguardResource ,
16- AsyncPhishguardResource ,
17- PhishguardResourceWithRawResponse ,
18- AsyncPhishguardResourceWithRawResponse ,
19- PhishguardResourceWithStreamingResponse ,
20- AsyncPhishguardResourceWithStreamingResponse ,
21- )
2214from ..._resource import SyncAPIResource , AsyncAPIResource
2315from .investigate import (
2416 InvestigateResource ,
@@ -38,10 +30,6 @@ class EmailSecurityResource(SyncAPIResource):
3830 def investigate (self ) -> InvestigateResource :
3931 return InvestigateResource (self ._client )
4032
41- @cached_property
42- def phishguard (self ) -> PhishguardResource :
43- return PhishguardResource (self ._client )
44-
4533 @cached_property
4634 def settings (self ) -> SettingsResource :
4735 return SettingsResource (self ._client )
@@ -71,10 +59,6 @@ class AsyncEmailSecurityResource(AsyncAPIResource):
7159 def investigate (self ) -> AsyncInvestigateResource :
7260 return AsyncInvestigateResource (self ._client )
7361
74- @cached_property
75- def phishguard (self ) -> AsyncPhishguardResource :
76- return AsyncPhishguardResource (self ._client )
77-
7862 @cached_property
7963 def settings (self ) -> AsyncSettingsResource :
8064 return AsyncSettingsResource (self ._client )
@@ -107,10 +91,6 @@ def __init__(self, email_security: EmailSecurityResource) -> None:
10791 def investigate (self ) -> InvestigateResourceWithRawResponse :
10892 return InvestigateResourceWithRawResponse (self ._email_security .investigate )
10993
110- @cached_property
111- def phishguard (self ) -> PhishguardResourceWithRawResponse :
112- return PhishguardResourceWithRawResponse (self ._email_security .phishguard )
113-
11494 @cached_property
11595 def settings (self ) -> SettingsResourceWithRawResponse :
11696 return SettingsResourceWithRawResponse (self ._email_security .settings )
@@ -124,10 +104,6 @@ def __init__(self, email_security: AsyncEmailSecurityResource) -> None:
124104 def investigate (self ) -> AsyncInvestigateResourceWithRawResponse :
125105 return AsyncInvestigateResourceWithRawResponse (self ._email_security .investigate )
126106
127- @cached_property
128- def phishguard (self ) -> AsyncPhishguardResourceWithRawResponse :
129- return AsyncPhishguardResourceWithRawResponse (self ._email_security .phishguard )
130-
131107 @cached_property
132108 def settings (self ) -> AsyncSettingsResourceWithRawResponse :
133109 return AsyncSettingsResourceWithRawResponse (self ._email_security .settings )
@@ -141,10 +117,6 @@ def __init__(self, email_security: EmailSecurityResource) -> None:
141117 def investigate (self ) -> InvestigateResourceWithStreamingResponse :
142118 return InvestigateResourceWithStreamingResponse (self ._email_security .investigate )
143119
144- @cached_property
145- def phishguard (self ) -> PhishguardResourceWithStreamingResponse :
146- return PhishguardResourceWithStreamingResponse (self ._email_security .phishguard )
147-
148120 @cached_property
149121 def settings (self ) -> SettingsResourceWithStreamingResponse :
150122 return SettingsResourceWithStreamingResponse (self ._email_security .settings )
@@ -158,10 +130,6 @@ def __init__(self, email_security: AsyncEmailSecurityResource) -> None:
158130 def investigate (self ) -> AsyncInvestigateResourceWithStreamingResponse :
159131 return AsyncInvestigateResourceWithStreamingResponse (self ._email_security .investigate )
160132
161- @cached_property
162- def phishguard (self ) -> AsyncPhishguardResourceWithStreamingResponse :
163- return AsyncPhishguardResourceWithStreamingResponse (self ._email_security .phishguard )
164-
165133 @cached_property
166134 def settings (self ) -> AsyncSettingsResourceWithStreamingResponse :
167135 return AsyncSettingsResourceWithStreamingResponse (self ._email_security .settings )
0 commit comments