11
11
AsyncSettingsResourceWithStreamingResponse ,
12
12
)
13
13
from ..._compat import cached_property
14
- from .phishguard import (
15
- PhishguardResource ,
16
- AsyncPhishguardResource ,
17
- PhishguardResourceWithRawResponse ,
18
- AsyncPhishguardResourceWithRawResponse ,
19
- PhishguardResourceWithStreamingResponse ,
20
- AsyncPhishguardResourceWithStreamingResponse ,
21
- )
22
14
from ..._resource import SyncAPIResource , AsyncAPIResource
23
15
from .investigate import (
24
16
InvestigateResource ,
@@ -38,10 +30,6 @@ class EmailSecurityResource(SyncAPIResource):
38
30
def investigate (self ) -> InvestigateResource :
39
31
return InvestigateResource (self ._client )
40
32
41
- @cached_property
42
- def phishguard (self ) -> PhishguardResource :
43
- return PhishguardResource (self ._client )
44
-
45
33
@cached_property
46
34
def settings (self ) -> SettingsResource :
47
35
return SettingsResource (self ._client )
@@ -71,10 +59,6 @@ class AsyncEmailSecurityResource(AsyncAPIResource):
71
59
def investigate (self ) -> AsyncInvestigateResource :
72
60
return AsyncInvestigateResource (self ._client )
73
61
74
- @cached_property
75
- def phishguard (self ) -> AsyncPhishguardResource :
76
- return AsyncPhishguardResource (self ._client )
77
-
78
62
@cached_property
79
63
def settings (self ) -> AsyncSettingsResource :
80
64
return AsyncSettingsResource (self ._client )
@@ -107,10 +91,6 @@ def __init__(self, email_security: EmailSecurityResource) -> None:
107
91
def investigate (self ) -> InvestigateResourceWithRawResponse :
108
92
return InvestigateResourceWithRawResponse (self ._email_security .investigate )
109
93
110
- @cached_property
111
- def phishguard (self ) -> PhishguardResourceWithRawResponse :
112
- return PhishguardResourceWithRawResponse (self ._email_security .phishguard )
113
-
114
94
@cached_property
115
95
def settings (self ) -> SettingsResourceWithRawResponse :
116
96
return SettingsResourceWithRawResponse (self ._email_security .settings )
@@ -124,10 +104,6 @@ def __init__(self, email_security: AsyncEmailSecurityResource) -> None:
124
104
def investigate (self ) -> AsyncInvestigateResourceWithRawResponse :
125
105
return AsyncInvestigateResourceWithRawResponse (self ._email_security .investigate )
126
106
127
- @cached_property
128
- def phishguard (self ) -> AsyncPhishguardResourceWithRawResponse :
129
- return AsyncPhishguardResourceWithRawResponse (self ._email_security .phishguard )
130
-
131
107
@cached_property
132
108
def settings (self ) -> AsyncSettingsResourceWithRawResponse :
133
109
return AsyncSettingsResourceWithRawResponse (self ._email_security .settings )
@@ -141,10 +117,6 @@ def __init__(self, email_security: EmailSecurityResource) -> None:
141
117
def investigate (self ) -> InvestigateResourceWithStreamingResponse :
142
118
return InvestigateResourceWithStreamingResponse (self ._email_security .investigate )
143
119
144
- @cached_property
145
- def phishguard (self ) -> PhishguardResourceWithStreamingResponse :
146
- return PhishguardResourceWithStreamingResponse (self ._email_security .phishguard )
147
-
148
120
@cached_property
149
121
def settings (self ) -> SettingsResourceWithStreamingResponse :
150
122
return SettingsResourceWithStreamingResponse (self ._email_security .settings )
@@ -158,10 +130,6 @@ def __init__(self, email_security: AsyncEmailSecurityResource) -> None:
158
130
def investigate (self ) -> AsyncInvestigateResourceWithStreamingResponse :
159
131
return AsyncInvestigateResourceWithStreamingResponse (self ._email_security .investigate )
160
132
161
- @cached_property
162
- def phishguard (self ) -> AsyncPhishguardResourceWithStreamingResponse :
163
- return AsyncPhishguardResourceWithStreamingResponse (self ._email_security .phishguard )
164
-
165
133
@cached_property
166
134
def settings (self ) -> AsyncSettingsResourceWithStreamingResponse :
167
135
return AsyncSettingsResourceWithStreamingResponse (self ._email_security .settings )
0 commit comments