MCPcopy
hub / github.com/feast-dev/feast / GetFeatureView

Method GetFeatureView

sdk/python/feast/registry_server.py:316–326  ·  view source on GitHub ↗
(
        self, request: RegistryServer_pb2.GetFeatureViewRequest, context
    )

Source from the content-addressed store, hash-verified

314 return Empty()
315
316 def GetFeatureView(
317 self, request: RegistryServer_pb2.GetFeatureViewRequest, context
318 ):
319 return assert_permissions(
320 self.proxied_registry.get_feature_view(
321 name=request.name,
322 project=request.project,
323 allow_cache=request.allow_cache,
324 ),
325 actions=[AuthzedAction.DESCRIBE],
326 ).to_proto()
327
328 def GetAnyFeatureView(
329 self, request: RegistryServer_pb2.GetAnyFeatureViewRequest, context

Callers

nothing calls this directly

Calls 3

assert_permissionsFunction · 0.90
to_protoMethod · 0.45
get_feature_viewMethod · 0.45

Tested by

no test coverage detected