File tree Expand file tree Collapse file tree
src/kernel/types/organization Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121 "FeaturesManagedProxies" ,
2222 "FeaturesProfiles" ,
2323 "FeaturesProxyBypassHosts" ,
24+ "FeaturesSearch" ,
2425 "FeaturesVaults" ,
2526 "Limits" ,
2627 "Plan" ,
@@ -115,6 +116,15 @@ class FeaturesProxyBypassHosts(BaseModel):
115116 """Whether the organization is entitled to use this feature."""
116117
117118
119+ class FeaturesSearch (BaseModel ):
120+ """
121+ Whether the Search API is enabled for the organization by its rollout feature flag.
122+ """
123+
124+ enabled : bool
125+ """Whether the organization is entitled to use this feature."""
126+
127+
118128class FeaturesVaults (BaseModel ):
119129 """
120130 Whether the organization can access vaults, using the same access check as vault API routes.
@@ -149,6 +159,12 @@ class Features(BaseModel):
149159
150160 proxy_bypass_hosts : FeaturesProxyBypassHosts
151161
162+ search : FeaturesSearch
163+ """
164+ Whether the Search API is enabled for the organization by its rollout feature
165+ flag.
166+ """
167+
152168 vaults : FeaturesVaults
153169 """
154170 Whether the organization can access vaults, using the same access check as vault
You can’t perform that action at this time.
0 commit comments